/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f8fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

.logo-link {
    display: block;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #4582a0;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover {
    color: #2c5f7a;
}

.nav-link-highlighted {
    color: #ff6b35;
    font-weight: 600;
}

.nav-link-cta {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-link-cta:hover {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Submenu */
.has-submenu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu {
    list-style: none;
}

.submenu li {
    padding: 0;
}

.submenu-link {
    display: block;
    padding: 0.7rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.submenu-link:hover {
    background: #f8f9fa;
    color: #3A6D8C;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.2rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* SECTION 1 : Hero Section */
.hero-section {
    background: linear-gradient(135deg, #3A6D8C 0%, #3A6D8C 100%);
    color: white;
    padding: 5rem 0;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    color: #ff8f42;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-button .price-old {
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: 400;
    margin-right: 0.3rem;
}

.cta-button-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.reassurance {
    margin-top: 2rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.reassurance p {
    margin: 0.4rem 0;
}

/* SECTION 2 : Segmentation */
.segmentation-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

/* Flash Offer Banner */
.flash-offer-banner {
    background: white;
    border: 3px solid #ff8f42;
    padding: 2rem 3rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(58, 109, 140, 0.1);
}

.flash-offer-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff8f42;
    font-family: 'Inter', sans-serif;
}

.flash-offer-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.flash-offer-text strong {
    font-weight: 700;
    color: #3A6D8C;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #ff8f42;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3A6D8C;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #3A6D8C;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
}

.tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    flex: 1;
    min-width: 250px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.tab-btn:hover {
    border-color: #3A6D8C;
    box-shadow: 0 4px 12px rgba(69, 130, 160, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, #3A6D8C, #3A6D8C);
    color: white;
    border-color: #3A6D8C;
}

.tab-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.tab-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.tab-subtitle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.tabs-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.benefits-list {
    list-style: none;
    font-size: 1.1rem;
}

.benefits-list li {
    padding: 0.8rem 0;
    color: #3A6D8C;
    font-weight: 500;
}

/* SECTION 3 : Contenu Dynamique */
.content-section {
    padding: 6rem 0;
}

.content-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.content-intro p {
    margin-bottom: 1rem;
}

.analysis-section {
    margin: 4rem 0;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #3A6D8C;
    text-align: center;
}

.tests-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.test-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.test-card:hover {
    border-color: #3A6D8C;
    box-shadow: 0 4px 12px rgba(69, 130, 160, 0.2);
    transform: translateY(-5px);
}

.test-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.test-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #3A6D8C;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.test-card p {
    color: #555;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
}

/* Expert Section */
.expert-section {
    margin: 4rem 0;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    position: relative;
}

.expert-section::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    font-weight: 700;
    color: #3A6D8C;
    opacity: 0.2;
    line-height: 1;
    font-family: Georgia, serif;
}

.expert-text {
    position: relative;
    z-index: 1;
}

.expert-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.expert-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #3A6D8C;
}

.objectives-list {
    list-style: none;
    counter-reset: objectives;
    padding-left: 0;
}

.objectives-list li {
    counter-increment: objectives;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2.5rem;
}

.objectives-list li::before {
    content: counter(objectives);
    position: absolute;
    left: 0;
    top: 0.8rem;
    background: #3A6D8C;
    color: white;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-section {
    margin: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #e9ecef;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.testimonial-author {
    font-weight: 700;
    color: #3A6D8C;
}

.expert-badge {
    margin-top: 3rem;
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #3A6D8C 0%, #2d5a73 100%);
    color: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(58, 109, 140, 0.3);
    position: relative;
    overflow: hidden;
}

.expert-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff8f42 0%, #ff6b35 100%);
}

.expert-badge p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.expert-badge p:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.rating {
    font-size: 1.3rem;
    color: #ff8f42;
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* SECTION 4 : Process */
.process-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #3A6D8C;
}

.process-card p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

/* SECTION 5 : Guarantee */
.guarantee-section {
    padding: 5rem 0;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.guarantee-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #3A6D8C;
}

.guarantee-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #3A6D8C;
}

.guarantee-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Final CTA */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #3A6D8C 0%, #3A6D8C 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #3A6D8C;
    color: white;
    padding: 3rem 0 1.5rem;
    border-top: 3px solid #ff8f42;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 2rem;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .tabs-nav {
        flex-direction: column;
    }

    .tab-btn {
        min-width: 100%;
    }

    .tests-grid,
    .process-grid,
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        gap: 2rem;
    }

    .guarantee-card {
        min-width: auto;
    }

    .expert-presentation {
        flex-direction: column;
    }

    .expert-photo {
        margin-right: 0;
        margin-bottom: 2rem;
    }
}

/* SECTION 6 : Présentation de l'expert */
.expert-presentation-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.expert-presentation {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.expert-presentation::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    font-weight: 700;
    color: #3A6D8C;
    opacity: 0.2;
    line-height: 1;
    font-family: Georgia, serif;
    z-index: 0;
}

.expert-photo {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background: #e9ecef;
    position: relative;
    z-index: 1;
}

.expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-info {
    position: relative;
    z-index: 1;
}

.expert-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #3A6D8C;
}

.expert-info p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.expert-info .rating {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6b35;
    margin-top: 1.5rem;
}

/* SECTION 7 : FAQ */
.faq-section {
    padding: 5rem 0;
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3A6D8C;
    box-shadow: 0 4px 12px rgba(69, 130, 160, 0.2);
}

.faq-item.active {
    border-color: #3A6D8C;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3A6D8C;
    margin-bottom: 1rem;
    position: relative;
    padding-right: 2rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: #3A6D8C;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* WhatsApp et Company Name */
.whatsapp-contact {
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.whatsapp-contact a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.whatsapp-contact a:hover {
    opacity: 0.9;
}

.company-name {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Animations et transitions */
.dynamic-content {
    transition: opacity 0.3s ease;
}

.test-card,
.testimonial-card,
.process-card,
.guarantee-card {
    transition: all 0.3s ease;
}

/* Assurer que Inter est utilisé partout */
body, button, input, select, textarea {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}

/* ===== STYLES POUR PAGE ADULTE EN RÉORIENTATION ===== */

/* SECTION 2 : LE PROBLÈME - Grid de cartes */
.problem-section {
    background: #f7f8fa;
}

.problems-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.problem-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #ff6b35;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* SECTION 3 : L'AGITATION - Section mise en évidence */
.agitation-section {
    background: linear-gradient(135deg, #3A6D8C 0%, #2d5a73 100%);
    color: white;
    padding: 4rem 0 !important;
}

.agitation-content {
    max-width: 800px;
    margin: 0 auto;
}

.agitation-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* SECTION 4 : LA SOLUTION */
.solution-section {
    background: white;
}

.solution-content {
    max-width: 850px;
    margin: 0 auto;
}

.solution-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    color: #555;
}

.solution-content .subsection-title {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* SECTION 5 : LES LIVRABLES - Cartes détaillées */
.deliverables-section {
    background: white;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.deliverable-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.deliverable-card:hover {
    border-color: #3A6D8C;
    box-shadow: 0 8px 24px rgba(58, 109, 140, 0.15);
    transform: translateY(-5px);
}

.deliverable-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.deliverable-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3A6D8C;
    margin-bottom: 0.5rem;
}

.deliverable-subtitle {
    font-size: 0.95rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.deliverable-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.deliverable-benefits {
    list-style: none;
    padding: 1rem 0;
    margin: 1rem 0;
}

.deliverable-benefits li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.deliverable-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.1rem;
}

.deliverable-benefit-concrete {
    background: #f7f8fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #3A6D8C;
    border-left: 3px solid #ff6b35;
}

/* SECTION 6 : TÉMOIGNAGES - Cartes améliorées */
.testimonials-section {
    background: #f7f8fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid #ff6b35;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    font-weight: 700;
    color: #ff6b35;
    opacity: 0.2;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3A6D8C;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* SECTION 7 : L'OFFRE & LA GARANTIE */
.offer-section {
    background: white;
    padding: 6rem 0 !important;
}

.offer-content {
    max-width: 850px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f7f8fa 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.offer-content .subsection-title {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.offer-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.offer-details {
    list-style: none;
    padding: 1.5rem 0;
    margin: 1.5rem 0;
}

.offer-details li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.offer-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.2rem;
}

/* SECTION 8 : FAQ - Accordéon amélioré */
.faq-section {
    background: white;
    padding: 6rem 0 !important;
}

.faq-list {
    max-width: 900px;
    margin: 2.5rem auto 0;
}

.faq-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3A6D8C;
    box-shadow: 0 4px 12px rgba(69, 130, 160, 0.15);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3A6D8C;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f7f8fa;
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: #ff6b35;
    font-weight: 700;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    border-top: 1px solid #e9ecef;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

.faq-list-inner {
    list-style: none;
    padding: 1rem 0;
    margin: 1rem 0;
}

.faq-list-inner li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.faq-list-inner li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.2rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive pour les nouvelles sections */
@media (max-width: 768px) {
    .problems-list,
    .deliverables-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .agitation-content p,
    .solution-content p,
    .offer-content p {
        text-align: left;
    }

    .solution-content .subsection-title {
        text-align: left;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
}
