@import url('../styles.css');
@import url('features.css');
@import url('llm-section.css');
@import url('testimonials.css');
@import url('pricing.css');
@import url('cta.css');

main{
    padding: 0;
}
main > section{
    padding: 20px;
}
.hero{
    display: flex;
    background: linear-gradient(135deg, var(--color-terciary) 0%, #ffffff 100%);
    min-height: 90vh;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(35, 192, 197, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 216, 117, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero .container:first-child {
    width: 50%;
    z-index: 2;
    position: relative;
}

.hero .container:last-child {
    width: 50%;
    z-index: 1;
    position: relative;
}

.hero-content {
    padding: 60px 40px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-family-title);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--color-4) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 15px rgba(35, 192, 197, 0.3);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(35, 192, 197, 0.4);
    background: linear-gradient(135deg, var(--color-primary) 0%, #1aa8ad 100%);
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero svg {
    width: 50%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.llm-logos {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    z-index: 1;
    overflow: visible;
}

.llm-logos img {
    width: 40px;
    height: 40px;
    opacity: 0.3;
    transition: all 0.3s ease;
    position: absolute;
}

.llm-logos img:nth-child(1) {
    top: 15%;
    left: 20%;
    animation: randomMove1 45s linear infinite;
}

.llm-logos img:nth-child(2) {
    top: 25%;
    left: 70%;
    animation: randomMove2 50s linear infinite;
}

.llm-logos img:nth-child(3) {
    top: 40%;
    left: 30%;
    animation: randomMove3 55s linear infinite;
}

.llm-logos img:nth-child(4) {
    top: 60%;
    left: 60%;
    animation: randomMove4 60s linear infinite;
}

.llm-logos img:nth-child(5) {
    top: 75%;
    left: 25%;
    animation: randomMove5 65s linear infinite;
}

.llm-logos img:nth-child(6) {
    top: 85%;
    left: 45%;
    animation: randomMove6 70s linear infinite;
}

.llm-logos img:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

@keyframes randomMove1 {
    0% { transform: translate(0px, 0px); }
    7% { transform: translate(15px, -12px); }
    18% { transform: translate(-20px, -18px); }
    23% { transform: translate(25px, 15px); }
    41% { transform: translate(-18px, 22px); }
    52% { transform: translate(12px, -15px); }
    63% { transform: translate(-22px, 8px); }
    71% { transform: translate(20px, -18px); }
    84% { transform: translate(-8px, 15px); }
    93% { transform: translate(15px, -8px); }
    100% { transform: translate(0px, 0px); }
}

@keyframes randomMove2 {
    0% { transform: translate(0px, 0px); }
    11% { transform: translate(-18px, 15px); }
    28% { transform: translate(12px, -20px); }
    37% { transform: translate(-15px, 12px); }
    49% { transform: translate(20px, -8px); }
    58% { transform: translate(-8px, 18px); }
    67% { transform: translate(15px, -12px); }
    79% { transform: translate(-18px, 6px); }
    88% { transform: translate(10px, -5px); }
    100% { transform: translate(0px, 0px); }
}

@keyframes randomMove3 {
    0% { transform: translate(0px, 0px); }
    9% { transform: translate(8px, 15px); }
    21% { transform: translate(-18px, -6px); }
    34% { transform: translate(15px, 18px); }
    46% { transform: translate(-8px, -12px); }
    59% { transform: translate(18px, 10px); }
    73% { transform: translate(-6px, -15px); }
    81% { transform: translate(12px, 6px); }
    94% { transform: translate(-15px, -10px); }
    100% { transform: translate(0px, 0px); }
}

@keyframes randomMove4 {
    0% { transform: translate(0px, 0px); }
    8% { transform: translate(-12px, 10px); }
    19% { transform: translate(10px, -6px); }
    31% { transform: translate(-15px, 8px); }
    43% { transform: translate(12px, -10px); }
    56% { transform: translate(-5px, 15px); }
    68% { transform: translate(10px, -6px); }
    77% { transform: translate(-8px, 8px); }
    89% { transform: translate(6px, -10px); }
    100% { transform: translate(0px, 0px); }
}

@keyframes randomMove5 {
    0% { transform: translate(0px, 0px); }
    12% { transform: translate(10px, -8px); }
    24% { transform: translate(-12px, 10px); }
    36% { transform: translate(15px, -12px); }
    48% { transform: translate(-6px, 15px); }
    61% { transform: translate(8px, -8px); }
    73% { transform: translate(-10px, 6px); }
    85% { transform: translate(5px, -12px); }
    96% { transform: translate(-8px, 8px); }
    100% { transform: translate(0px, 0px); }
}

@keyframes randomMove6 {
    0% { transform: translate(0px, 0px); }
    10% { transform: translate(-10px, 6px); }
    22% { transform: translate(12px, -8px); }
    34% { transform: translate(-8px, 12px); }
    46% { transform: translate(10px, -10px); }
    58% { transform: translate(-4px, 8px); }
    70% { transform: translate(8px, -8px); }
    82% { transform: translate(-6px, 4px); }
    94% { transform: translate(5px, -10px); }
    100% { transform: translate(0px, 0px); }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero .container {
        width: 100% !important;
    }
    
    .hero-content {
        padding: 40px 20px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero svg {
        max-height: 400px;
        margin-top: 40px;
    }
    
    .llm-logos {
        position: relative;
        width: 100%;
        height: 150px;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        padding: 0 20px;
        overflow: visible;
    }
    
    .llm-logos img {
        width: 35px;
        height: 35px;
        position: absolute;
    }
    
    .llm-logos img:nth-child(1) {
        animation: randomMove1Mobile 35s linear infinite;
    }
    
    .llm-logos img:nth-child(2) {
        animation: randomMove2Mobile 40s linear infinite;
    }
    
    .llm-logos img:nth-child(3) {
        animation: randomMove3Mobile 45s linear infinite;
    }
    
    .llm-logos img:nth-child(4) {
        animation: randomMove4Mobile 50s linear infinite;
    }
    
    .llm-logos img:nth-child(5) {
        animation: randomMove5Mobile 55s linear infinite;
    }
    
    .llm-logos img:nth-child(6) {
        animation: randomMove6Mobile 60s linear infinite;
    }
    
    @keyframes randomMove1Mobile {
        0% { transform: translate(0px, 0px); }
        13% { transform: translate(8px, -6px); }
        29% { transform: translate(-10px, 8px); }
        47% { transform: translate(6px, -5px); }
        68% { transform: translate(-8px, 7px); }
        82% { transform: translate(5px, -6px); }
        100% { transform: translate(0px, 0px); }
    }
    
    @keyframes randomMove2Mobile {
        0% { transform: translate(0px, 0px); }
        17% { transform: translate(-7px, 6px); }
        31% { transform: translate(8px, -9px); }
        44% { transform: translate(-6px, 7px); }
        61% { transform: translate(9px, -5px); }
        79% { transform: translate(-7px, 4px); }
        100% { transform: translate(0px, 0px); }
    }
    
    @keyframes randomMove3Mobile {
        0% { transform: translate(0px, 0px); }
        19% { transform: translate(5px, 8px); }
        33% { transform: translate(-8px, -4px); }
        51% { transform: translate(7px, 6px); }
        67% { transform: translate(-5px, -7px); }
        85% { transform: translate(6px, 4px); }
        100% { transform: translate(0px, 0px); }
    }
    
    @keyframes randomMove4Mobile {
        0% { transform: translate(0px, 0px); }
        15% { transform: translate(-6px, 5px); }
        28% { transform: translate(7px, -6px); }
        42% { transform: translate(-5px, 6px); }
        58% { transform: translate(6px, -4px); }
        72% { transform: translate(-4px, 5px); }
        86% { transform: translate(5px, -5px); }
        100% { transform: translate(0px, 0px); }
    }
    
    @keyframes randomMove5Mobile {
        0% { transform: translate(0px, 0px); }
        13% { transform: translate(6px, -5px); }
        26% { transform: translate(-7px, 6px); }
        39% { transform: translate(5px, -6px); }
        53% { transform: translate(-6px, 7px); }
        67% { transform: translate(4px, -5px); }
        81% { transform: translate(-5px, 4px); }
        94% { transform: translate(6px, -4px); }
        100% { transform: translate(0px, 0px); }
    }
    
    @keyframes randomMove6Mobile {
        0% { transform: translate(0px, 0px); }
        11% { transform: translate(-5px, 4px); }
        23% { transform: translate(6px, -5px); }
        35% { transform: translate(-4px, 6px); }
        47% { transform: translate(5px, -5px); }
        59% { transform: translate(-3px, 4px); }
        71% { transform: translate(4px, -4px); }
        83% { transform: translate(-3px, 3px); }
        95% { transform: translate(4px, -5px); }
        100% { transform: translate(0px, 0px); }
    }
}

    /* ---- Shared ---- */
    .urgence__label {
    display: inline-block;
    font-family: var(--font-family-title);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 24px;
    }

    /* ---- SECTION 2 : URGENCE ---- */
    .urgence {
    background: var(--color-4);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    }

    .urgence::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(35,192,197,0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(255,216,117,0.08) 0%, transparent 40%);
    pointer-events: none;
    }

    .urgence__inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    }

    .urgence__inner .urgence__label {
    color: var(--color-primary);
    border-color: var(--color-primary);
    }

    .urgence__title {
    font-family: var(--font-family-title);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 24px;
    }

    .urgence__title--accent {
    color: var(--color-primary);
    }

    .urgence__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 680px;
    margin: 0 auto 60px;
    }

    .urgence__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    }

    .urgence__stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    }

    .urgence__stat-number {
    font-family: var(--font-family-title);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    }

    .urgence__stat-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    text-align: center;
    max-width: 180px;
    }

    .urgence__stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
    }

    /* ---- SECTION 3 : PROBLÈME ---- */
    .probleme {
    background: #f8fbff;
    padding: 100px 40px;
    }

    .probleme__inner {
    max-width: 1000px;
    margin: 0 auto;
    }

    .probleme__header {
    text-align: center;
    margin-bottom: 60px;
    }

    .probleme__title {
    font-family: var(--font-family-title);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--color-4);
    line-height: 1.25;
    margin-bottom: 18px;
    }

    .probleme__title--accent {
    color: var(--color-primary);
    }

    .probleme__subtitle {
    font-size: 1.1rem;
    color: rgba(0,5,11,0.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    }

    .probleme__grid {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    }

    .probleme__card {
    flex: 1;
    border-radius: 20px;
    padding: 36px 32px;
    }

    .probleme__card h3 {
    font-family: var(--font-family-title);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    }

    .probleme__card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    }

    .probleme__card ul li {
    font-size: 15px;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
    }

    .probleme__card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    font-size: 12px;
    }

    .probleme__card--bad {
    background: white;
    border: 1.5px solid #e8e8e8;
    color: rgba(0,5,11,0.65);
    }

    .probleme__card--bad h3 { color: var(--color-4); }
    .probleme__card--bad li::before { color: #ccc; }

    .probleme__card--good {
    background: var(--color-4);
    color: rgba(255,255,255,0.8);
    box-shadow: 0 20px 60px rgba(39,55,77,0.25);
    }

    .probleme__card--good h3 { color: var(--color-primary); }
    .probleme__card--good li::before { color: var(--color-primary); }

    .probleme__card-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    }

    .probleme__card-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
    }

    .probleme__conclusion {
    background: white;
    border: 1.5px solid rgba(35,192,197,0.25);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    }

    .probleme__conclusion-icon { flex-shrink: 0; margin-top: 2px; }

    .probleme__conclusion p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    }

    .probleme__conclusion strong { color: var(--color-4); }

    /* ---- SECTION 4 : OUTIL ---- */
    .outil {
    background: white;
    padding: 100px 40px;
    }

    .outil__inner { max-width: 1000px; margin: 0 auto; }

    .outil__header { text-align: center; margin-bottom: 60px; }

    .outil__title {
    font-family: var(--font-family-title);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--color-4);
    line-height: 1.3;
    }

    .outil__title--accent { color: var(--color-primary); }

    .outil__steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 72px;
    background: var(--color-terciary);
    border-radius: 20px;
    padding: 40px 32px;
    }

    .outil__step {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0 24px;
    position: relative;
    }

    .outil__step:first-child { padding-left: 0; }
    .outil__step:last-child .outil__step-arrow { display: none; }

    .outil__step-number {
    font-family: var(--font-family-title);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.5;
    }

    .outil__step-content h3 {
    font-family: var(--font-family-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-4);
    margin-bottom: 8px;
    }

    .outil__step-content p {
    font-size: 14px;
    color: rgba(0,5,11,0.6);
    line-height: 1.6;
    }

    .outil__step-arrow {
    font-size: 1.4rem;
    color: var(--color-primary);
    flex-shrink: 0;
    align-self: center;
    padding: 0 8px;
    }

    .outil__produits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    }

    .outil__produit {
    border-radius: 24px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    }

    .outil__produit--free {
    border: 1.5px solid #e8e8e8;
    background: #fafafa;
    }

    .outil__produit--paid {
    background: var(--color-4);
    box-shadow: 0 24px 60px rgba(39,55,77,0.3);
    }

    .outil__produit-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(35,192,197,0.12);
    color: var(--color-primary);
    width: fit-content;
    }

    .outil__produit-badge--paid {
    background: var(--color-primary);
    color: var(--color-4);
    }

    .outil__produit--free h3 {
    font-family: var(--font-family-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-4);
    }

    .outil__produit--paid h3 {
    font-family: var(--font-family-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    }

    .outil__produit--free p { font-size: 15px; color: rgba(0,5,11,0.6); line-height: 1.6; }
    .outil__produit--paid p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.6; }

    .outil__produit-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    }

    .outil__produit-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    }

    .outil__produit--free .outil__produit-features li { color: var(--color-text); }
    .outil__produit--paid .outil__produit-features li { color: rgba(255,255,255,0.85); }

    .outil__produit-cta {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-family: var(--font-family-title);
    }

    .outil__produit-cta--outline {
    border: 2px solid var(--color-4);
    color: var(--color-4);
    }

    .outil__produit-cta--outline:hover {
    background: var(--color-4);
    color: white;
    }

    .outil__produit-cta--filled {
    background: var(--color-primary);
    color: var(--color-4);
    }

    .outil__produit-cta--filled:hover {
    background: #1aa8ad;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(35,192,197,0.35);
    }

    /* ---- SECTION 5 : PREUVE ---- */
    .preuve {
    background: #f8fbff;
    padding: 100px 40px;
    }

    .preuve__inner { max-width: 1000px; margin: 0 auto; }

    .preuve__header { text-align: center; margin-bottom: 64px; }

    .preuve__title {
    font-family: var(--font-family-title);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-4);
    margin-bottom: 16px;
    }

    .preuve__title--accent { color: var(--color-primary); }

    .preuve__subtitle {
    font-size: 1.05rem;
    color: rgba(0,5,11,0.55);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
    }

    .preuve__avantapres {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 72px;
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }

    .preuve__avant, .preuve__apres {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    }

    .preuve__avantapres-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 14px;
    border-radius: 20px;
    }

    .preuve__avantapres-label--avant {
    background: #fee2e2;
    color: #dc2626;
    }

    .preuve__avantapres-label--apres {
    background: #d1fae5;
    color: #059669;
    }

    .preuve__score {
    display: flex;
    align-items: baseline;
    gap: 4px;
    }

    .preuve__score-number {
    font-family: var(--font-family-title);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    }

    .preuve__score-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(0,5,11,0.35);
    }

    .preuve__score--low .preuve__score-number { color: #dc2626; }
    .preuve__score--high .preuve__score-number { color: #059669; }

    .preuve__avantapres-desc {
    font-size: 14px;
    color: rgba(0,5,11,0.55);
    line-height: 1.6;
    max-width: 220px;
    }

    .preuve__avantapres-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    }

    .preuve__avantapres-arrow span {
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 600;
    white-space: nowrap;
    }

    .preuve__temoignages {
    /* display: grid; */
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
    }

    .preuve__temoignage {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .preuve__temoignage:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }

    .preuve__temoignage-quote {
    font-size: 3rem;
    line-height: 0.5;
    color: var(--color-primary);
    font-family: Georgia, serif;
    opacity: 0.4;
    }

    .preuve__temoignage p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(0,5,11,0.7);
    flex: 1;
    }

    .preuve__temoignage-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    }

    .preuve__temoignage-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    }

    .preuve__temoignage-author strong {
    display: block;
    font-size: 14px;
    color: var(--color-4);
    font-family: var(--font-family-title);
    }

    .preuve__temoignage-author span {
    font-size: 12px;
    color: rgba(0,5,11,0.45);
    }

    .preuve__modeles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    }

    .preuve__modeles-label {
    font-size: 13px;
    color: rgba(0,5,11,0.45);
    font-weight: 500;
    }

    .preuve__modeles-logos { display: flex; gap: 10px; flex-wrap: wrap; }

    .preuve__modele-chip {
    padding: 6px 16px;
    border-radius: 20px;
    background: white;
    border: 1.5px solid #e0e0e0;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-4);
    font-family: var(--font-family-title);
    }

    /* ---- SECTION 6 : FAQ ---- */
    .faq {
    background: white;
    padding: 100px 40px;
    }

    .faq__inner { max-width: 720px; margin: 0 auto; }

    .faq__header { text-align: center; margin-bottom: 56px; }

    .faq__title {
    font-family: var(--font-family-title);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--color-4);
    }

    .faq__list { display: flex; flex-direction: column; gap: 0; }

    .faq__item {
    border-bottom: 1px solid #f0f0f0;
    }

    .faq__item:first-of-type { border-top: 1px solid #f0f0f0; }

    .faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-family-title);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-4);
    transition: color 0.2s;
    }

    .faq__question::-webkit-details-marker { display: none; }
    .faq__question:hover { color: var(--color-primary); }

    .faq__icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
    }

    details[open] .faq__icon {
    transform: rotate(45deg);
    }

    .faq__answer {
    padding: 0 0 24px;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(0,5,11,0.6);
    animation: fadeIn 0.25s ease;
    }

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

    /* ---- SECTION 7 : CTA FINAL ---- */
    .cta-final {
    background: var(--color-4);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
    }

    .cta-final__inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    }

    .cta-final__title {
    font-family: var(--font-family-title);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    }

    .cta-final__title--accent { color: var(--color-primary); }

    .cta-final__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    }

    .cta-final__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    }

    .cta-final__btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-family-title);
    transition: all 0.3s ease;
    }

    .cta-final__btn--primary {
    background: var(--color-primary);
    color: var(--color-4);
    box-shadow: 0 8px 30px rgba(35,192,197,0.35);
    }

    .cta-final__btn--primary:hover {
    background: #1aa8ad;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(35,192,197,0.45);
    }

    .cta-final__btn--ghost {
    color: rgba(255,255,255,0.7);
    border: 1.5px solid rgba(255,255,255,0.2);
    }

    .cta-final__btn--ghost:hover {
    color: white;
    border-color: rgba(255,255,255,0.5);
    }

    .cta-final__reassurance {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    }

    .cta-final__deco-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    }

    .cta-final__deco-circle--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(35,192,197,0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    }

    .cta-final__deco-circle--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,216,117,0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -80px;
    }

    /* ---- RESPONSIVE ---- */
    @media (max-width: 768px) {

    .urgence, .probleme, .outil, .preuve, .faq, .cta-final {
        padding: 72px 24px;
    }

    .urgence__stats {
        flex-direction: column;
        padding: 32px 24px;
        gap: 32px;
    }

    .urgence__stat-divider {
        width: 60px;
        height: 1px;
    }

    .probleme__grid {
        flex-direction: column;
    }

    .probleme__card-arrow {
        flex-direction: row;
        transform: rotate(90deg);
    }

    .outil__steps {
        flex-direction: column;
        gap: 32px;
    }

    .outil__step-arrow { display: none; }

    .outil__produits {
        grid-template-columns: 1fr;
    }

    .preuve__avantapres {
        flex-direction: column;
        gap: 32px;
        padding: 36px 28px;
    }

    .preuve__avantapres-arrow svg {
        transform: rotate(90deg);
    }

    .preuve__temoignages {
        grid-template-columns: 1fr;
    }

    .cta-final__actions {
        flex-direction: column;
        align-items: center;
    }
    }