﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --terra: #9B684C;
    --terra-dark: #7a4f38;
    --terra-light: #f5ede7;
    --blue: #4C7F9B;
    --blue-dark: #3a617a;
    --blue-light: #e8f2f7;
    --green: #579B4C;
    --green-dark: #427839;
    --green-light: #eaf5e8;
    --purple: #904C9B;
    --purple-dark: #6e3878;
    --dark: #1e2330;
    --muted: #4a5568;
    --off: #f7f6f3;
    --white: #ffffff;
    
    color-scheme: only light;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background: var(--white);
    font-size: 15px;
    line-height: 1.65;
    background-color: #ffffff !important;
    color: #1e2330 !important;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.bg-section {
    position: relative;
    background-size: cover;
    background-position: center;
}

    .bg-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
    }

    .bg-section > * {
        position: relative;
        z-index: 1;
    }

/* HERO */
.hero {
    background-color: #f4f2ef;
    background-image: url('/images/hero-bg.png');
    background-size: cover;
    background-position: center top;
    padding: 110px 48px 120px;
    text-align: center;
    position: relative;
    border-bottom: 3px solid var(--terra);
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(247,246,243,0.82);
        z-index: 0;
    }

    .hero > * {
        position: relative;
        z-index: 1;
    }

    .hero .eyebrow {
        font-size: 11px;
        letter-spacing: 3.5px;
        text-transform: uppercase;
        color: var(--terra);
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 56px;
        font-weight: 700;
        line-height: 1.15;
        color: var(--dark);
        margin-bottom: 18px;
    }

        .hero h1 em {
            color: var(--terra);
            font-style: normal;
        }

    .hero .sub {
        color: var(--muted);
        font-size: 17px;
        max-width: 560px;
        margin: 0 auto 32px;
        line-height: 1.75;
    }

.blockers-label {
    font-size: 11px;
    color: #999;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blockers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.blocker {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 13px;
    color: var(--muted);
    background: rgba(255,255,255,.75);
    transition: all .25s ease;
    cursor: default;
}

    .blocker:hover {
        transform: scale(1.04);
        border-color: rgba(155,104,76,.45);
        box-shadow: 0 8px 20px rgba(0,0,0,.08), 0 4px 12px rgba(155,104,76,.08);
        background: white;
    }

.blocker {
    position: relative;
    z-index: 1;
}

    .blocker:hover {
        z-index: 10;
    }


.hero-insight {
    max-width: 700px;
    margin: 5px auto 60px auto;
    text-align: center;
}

    .hero-insight h3 {
        margin: 0 0 22px 0;
        font-size: 1.15rem;
        line-height: 1.45;
        font-weight: 600;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-insight p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
        font-size: 20px;
    }

        .hero-insight p strong {
            color: var(--terra);
            font-size: 1.18em;
            font-weight: 700;
        }

.checks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-bottom: 44px;
}

.check {
    font-size: 13px;
    color: var(--dark);
}

    .check::before {
        content: '✓ ';
        color: var(--green);
        font-weight: 500;
    }

.btn {
    display: inline-block;
    background: var(--terra);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 16px 38px;
    border-radius: 3px;
    letter-spacing: 0.3px;
    transition: background 0.2s;
}

    .btn:hover {
        background: var(--terra-dark);
    }

/* SECTION DEFINITION */
.section-definition {
    background-color: var(--white);
    background-image: url('/images/hero-bg.png');
    background-size: cover;
    background-position: center bottom;
    position: relative;
    padding: 72px 48px;
}

    .section-definition::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.70);
        z-index: 0;
    }

    .section-definition > * {
        position: relative;
        z-index: 1;
    }

    .section-definition .inner {
        max-width: 760px;
        margin: 0 auto;
    }

/* SECTION PROBLÈME */
.section-problem {
    background-color: #f0f5f8;
    padding: 72px 48px;
}

    .section-problem .inner {
        max-width: 760px;
        margin: 0 auto;
    }

/* SECTION CAS RÉEL */
.section-case {
    background-color: var(--off);
    padding: 72px 48px;
}

    .section-case .inner {
        max-width: 760px;
        margin: 0 auto;
    }

/* ---- SECTION CRÉDIBILITÉ ---- */

.section-credibility {
    background-color: var(--white);
    padding: 72px 48px;
}

.section-credibility {
    background-color: var(--white);
    padding: 40px 48px 30px;
}

.cred-intro {
    max-width: 760px;
    margin: 0 auto 40px;
    color: var(--muted);
    line-height: 1.8;
}

.cred-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-top: 35px;
}

.cred-card {
    background: rgba(255,255,255,0.8);
    border-radius: 8px;
    padding: 28px;
    border-top: 3px solid var(--terra);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.cred-value {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--terra);
    margin-bottom: 12px;
}

.cred-text {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

@media(max-width:768px) {

    .cred-grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION PROCESSUS */
.section-process {
    background-color: var(--white);
    background-image: url('/images/process-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 72px 48px;
}

    .section-process::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.70);
        z-index: 0;
    }

    .section-process > * {
        position: relative;
        z-index: 1;
    }

    .section-process .inner {
        max-width: 760px;
        margin: 0 auto;
    }

/* SECTION COMPARE */
.section-compare {
    background-color: var(--off);
    padding: 72px 48px;
}

    .section-compare .inner {
        max-width: 760px;
        margin: 0 auto;
    }

/* SECTION SÉCURITÉ */
.section-security {
    background-color: var(--white);
    background-image: url('/images/security-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 25px 48px;
}

    .section-security::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.70);
        z-index: 0;
    }

    .section-security > * {
        position: relative;
        z-index: 1;
    }

    .section-security .inner {
        max-width: 760px;
        margin: 0 auto;
    }

/* ---- SECTION ORIGINE ---- */

.section-founder {
    background: var(--off);
    padding: 20px 48px;
}

    .section-founder .inner {
        max-width: 760px;
        margin: 0 auto;
    }

.founder-box {
    background: rgba(255,255,255,0.85);
    border-radius: 8px;
    padding: 30px;
    border-left: 3px solid var(--blue);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

    .founder-box p {
        color: var(--muted);
        line-height: 1.9;
    }

        .founder-box p:first-child {
            margin-bottom: 14px;
        }

    .founder-box strong {
        color: var(--dark);
    }

/* ---- SECTION CONTEXTE ---- */

.section-context {
    padding: 20px 48px;
}

.context-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
    margin-top: 35px;
}

.context-card {
    background: white;
    border-radius: 8px;
    padding: 28px;
    border-top: 3px solid var(--green);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.context-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
}

.context-text {
    color: var(--muted);
    line-height: 1.7;
}

@media(max-width:768px) {

    .context-grid {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.footer {
    background-color: var(--dark);
    background-image: url('/images/footer-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 88px 48px;
    text-align: center;
    border-top: 3px solid var(--terra);
}

    .footer::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(30,35,48,0.92);
        z-index: 0;
    }

    .footer > * {
        position: relative;
        z-index: 1;
    }

/* ---- TYPOGRAPHY LABELS ---- */
.s-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: 'DM Sans', sans-serif;
}

    .s-label.terra {
        color: var(--terra);
    }

    .s-label.blue {
        color: var(--blue);
    }

    .s-label.green {
        color: var(--green-dark);
    }

    .s-label.purple {
        color: var(--purple);
    }

h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

/* ---- SECTION DEFINITION CONTENT ---- */
.section-definition p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 28px;
}

.col-box {
    background: rgba(255,255,255,0.70);
    border-radius: 6px;
    padding: 24px;
    border-top: 3px solid var(--blue);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

    .col-box h4 {
        font-family: 'DM Sans', sans-serif;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 14px;
    }

.pill-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.pill-item {
    font-size: 14px;
    color: var(--muted);
    padding-left: 20px;
    position: relative;
}

    .pill-item::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--green);
        font-weight: 500;
    }

.add-box {
    background: var(--dark);
    border-radius: 6px;
    padding: 22px;
    border-top: 3px solid var(--terra);
    margin-bottom: 12px;
}

    .add-box h4 {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--terra);
        margin-bottom: 10px;
    }

    .add-box p {
        color: #9aabb8;
        font-size: 15px;
        line-height: 1.7;
        margin: 0;
    }

    .add-box strong {
        color: var(--white);
    }

.footnote {
    font-size: 13px;
    color: #999;
    font-style: italic;
    line-height: 1.6;
}

/* ---- SECTION PROBLÈME CONTENT ---- */
.section-problem h2 {
    color: var(--dark);
}

.split-q {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.q-box {
    background: var(--white);
    border-radius: 6px;
    padding: 22px;
    border-left: 3px solid var(--blue);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

    .q-box.accent {
        border-left-color: var(--terra);
    }

    .q-box .q-label {
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #aaa;
        margin-bottom: 8px;
    }

    .q-box .q-text {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: 18px;
        color: var(--dark);
        line-height: 1.35;
    }

.answers {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.answer {
    background: var(--white);
    border-radius: 6px;
    padding: 16px 20px;
    border-left: 3px solid var(--terra);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

    .answer .aq {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: var(--dark);
        font-size: 15px;
        margin-bottom: 4px;
    }

    .answer .aa {
        color: var(--muted);
        font-size: 13px;
        line-height: 1.6;
    }

.transform-bar {
    background: var(--dark);
    border-radius: 6px;
    padding: 20px 24px;
    text-align: center;
}

    .transform-bar p {
        color: rgba(255,255,255,0.55);
        font-size: 14px;
        margin-bottom: 8px;
    }

    .transform-bar strong {
        color: var(--white);
        font-size: 16px;
        font-family: 'Playfair Display', serif;
        font-style: italic;
    }

/* ---- SECTION CAS RÉEL CONTENT ---- */
.case-frame {
    border: 1px solid #e0d8d0;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 28px;
}

.case-top {
    background: var(--dark);
    padding: 32px;
}

    .case-top .ct-label {
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--terra);
        margin-bottom: 8px;
    }

    .case-top h3 {
        font-size: 22px;
        color: var(--white);
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .case-top p {
        color: #9aabb8;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 8px;
    }

    .case-top .question {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: rgba(255,255,255,0.65);
        font-size: 16px;
        border-left: 2px solid var(--terra);
        padding-left: 16px;
        margin-top: 8px;
    }

.case-mid {
    background: var(--white);
    padding: 28px 32px;
}

    .case-mid .cm-label {
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 16px;
    }

.chain {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.chain-item {
    background: var(--blue);
    color: var(--white);
    border-radius: 4px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.chain-arrow {
    color: var(--blue);
    font-size: 22px;
    line-height: 1.2;
    padding: 2px 0;
}

.case-bottom {
    background: var(--terra-light);
    padding: 24px 32px;
    border-top: 3px solid var(--terra);
}

    .case-bottom p {
        color: #6b4030;
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 10px;
    }

    .case-bottom .reveal {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: var(--terra);
        font-size: 16px;
        margin: 4px 0 14px;
    }

.case-result {
    background: var(--green);
    border-radius: 4px;
    padding: 14px 20px;
    font-size: 14px;
    color: var(--white);
    line-height: 1.6;
}

/* ---- SECTION PROCESSUS CONTENT ---- */
.steps {
    display: flex;
    flex-direction: column;
}

.step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid #e8e3dc;
}

    .step:last-child {
        border-bottom: none;
    }

.step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.step.s1 .step-num {
    background: var(--purple);
}

.step.s2 .step-num {
    background: var(--blue);
}

.step.s3 .step-num {
    background: var(--green);
}

.step-body h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 6px;
}

.step-body p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.step-examples {
    background: rgba(247,246,243,0.85);
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 13px;
    color: #888;
    font-style: italic;
    line-height: 1.6;
    border: 1px solid #e8e3dc;
}

    .step-examples strong {
        color: var(--muted);
        font-style: normal;
    }

/* ---- SECTION COMPARE CONTENT ---- */
.compare-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    margin-top: 28px;
}

.col-head {
    padding: 16px 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .col-head.before {
        background: #e8e4dc;
        color: #888;
    }

    .col-head.after {
        background: var(--blue);
        color: var(--white);
    }

.ct-cell {
    padding: 16px 20px;
    font-size: 14px;
    border-top: 1px solid #e0dbd0;
}

    .ct-cell.before {
        background: var(--white);
        color: var(--muted);
        font-style: italic;
    }

    .ct-cell.after {
        background: #eef4f8;
        color: #2d5570;
        font-weight: 500;
        border-left: 3px solid var(--green);
    }

/* ---- SECTION SÉCURITÉ CONTENT ---- */
.section-security .intro {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sec-card {
    background: rgba(234,245,232,0.9);
    border-radius: 6px;
    padding: 22px 24px;
    border-left: 3px solid var(--green);
}

    .sec-card h4 {
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: var(--green-dark);
        margin-bottom: 6px;
    }

    .sec-card p {
        font-size: 13px;
        color: #3d6e34;
        line-height: 1.55;
    }

/* ---- FOOTER CONTENT ---- */
.footer .f-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 18px;
}

.footer h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 8px;
}

.footer .sub1 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
}

.footer .body-text {
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.footer .tagline {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    line-height: 1.8;
    font-style: italic;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 680px) {
    .hero {
        padding: 56px 24px 64px;
    }

        .hero h1 {
            font-size: 30px;
        }

    .two-col, .split-q, .compare-table, .security-grid {
        grid-template-columns: 1fr;
    }

    .section-definition, .section-problem, .section-case,
    .section-process, .section-compare, .section-security, .footer {
        padding: 56px 24px;
    }
}

/* ===== POPUP DEMONSTRATION ===== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30,35,48,0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
    z-index: 9999;
    padding: 30px;
    overflow: auto;
}

    .modal-overlay.open {
        opacity: 1;
        visibility: visible;
    }

.modal-card {
    width: 760px;
    max-width: 90vw;
    max-height: 85vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 10px;
    padding: 42px;
    position: relative;
    border-top: 4px solid var(--terra);
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
}
.modal-card {
    width: 760px;
    max-width: 90vw;
    max-height: 92vh;
    padding: 34px 42px;
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 12px;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

.modal-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--terra);
    margin-bottom: 10px;
}

.modal-intro {
    color: var(--muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.form-title,
.email-label {
    display: block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 500;
}

.radio-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

    .radio-list label {
        font-size: 14px;
        color: var(--dark);
    }

textarea,
input[type=email] {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 14px;
    margin-bottom: 24px;
    font-family: 'DM Sans',sans-serif;
    font-size: 14px;
}

textarea {
    min-height: 90px;
    resize: vertical;
}

.modal-submit {
    width: auto;
    min-width: 320px;
    display: block;
    margin: 0 auto;
}

.modal-note {
    margin-top: 18px;
    text-align: center;
    color: #999;
    font-size: 12px;
}

/* ===== MINI FOOTER ===== */

.mini-footer {
    height: 60px;
    background: #f5f5f5;
    border-top: 1px solid rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    font-size: 12px;
    color: rgba(0,0,0,0.35);
}

    .mini-footer a {
        color: rgba(0,0,0,0.35);
        text-decoration: none;
    }

        .mini-footer a:hover {
            color: var(--terra);
        }

@media(max-width:768px) {

    .mini-footer {
        flex-direction: column;
        gap: 8px;
        height: auto;
        padding: 18px;
    }
}

/* ===== SECTION DEMO ===== */

.section-demo {
    padding: 100px 20px;
    background: #f8fafc;
}

    .section-demo > .inner {
        width: 100%;
        max-width: 1200px !important;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .section-demo h2 {
        max-width: 800px;
        margin: 20px auto 50px;
    }

.demo-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.flow-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: white;
    padding: 24px 34px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.flow-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: #edf4fb;
}

.flow-text {
    text-align: left;
    line-height: 1.4;
}

.flow-arrow {
    font-size: 36px;
    font-weight: 700;
    color: #9B684C;
}

.demo-real {
    margin-bottom: 40px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9B684C;
}

.demo-footer {
    max-width: 700px;
    margin: 35px auto 20px;
    font-size: 22px;
    line-height: 1.7;
    color: #374151;
    font-weight: 500;
}

.section-demo {
    padding: 100px 20px;
    background: #f8fafc;
}
.section-demo {
    padding: 100px 20px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

    .section-demo::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url('/images/hero-bg.png');
        background-size: cover;
        opacity: .18;
        pointer-events: none;
    }

    .section-demo > * {
        position: relative;
        z-index: 1;
    }

/* ===== NOUVELLE SECTION DEMO ===== */

.demo-subtitle {
    max-width: 900px;
    margin: 25px auto 70px;
    font-size: 18px;
    line-height: 1.7;
    color: #5b6472;
}

.demo-two-cols {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 50px;
    align-items: stretch;
}

.impact-map,
.carousel-container {
    height: 100%;
}

/* -------- Colonne gauche -------- */

.impact-map {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

.map-start {
    text-align: center;
    margin-bottom: 30px;
}

    .map-start strong {
        display: block;
        margin-bottom: 12px;
    }

    .map-start span {
        display: inline-block;
        background: #f5f7fa;
        padding: 10px 18px;
        border-radius: 999px;
    }

.map-down {
    text-align: center;
    font-size: 30px;
    margin: 20px 0;
}

.map-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 35px;
}

    .map-split div {
        border-top: 2px solid #d8dce3;
        height: 20px;
    }

        .map-split div:first-child {
            border-left: 2px solid #d8dce3;
        }

        .map-split div:last-child {
            border-right: 2px solid #d8dce3;
        }

.map-branches {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.branch {
    padding: 25px;
    border-radius: 18px;
}

.branch-classic {
    background: #f5f7fa;
}

.branch-trek {
    background: white;
    border: 2px solid #9B684C;
    box-shadow: 0 8px 30px rgba(155,104,76,.12);
}

.branch h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.branch ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.branch li {
    margin-bottom: 12px;
}

.branch p {
    line-height: 1.35;
    margin: 6px 0;
}

.branch-down {
    text-align: center;
    margin: 18px 0;
    font-size: 24px;
}

.branch-result {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    margin-top: 12px;
}

    .branch-result div {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        line-height: 1.25;
    }

.branch h3 {
    margin-bottom: 12px;
}

.branch li {
    margin-bottom: 8px;
}

.muted {
    color: #808a97;
    font-weight: 600;
}

/* -------- Colonne droite -------- */

.demo-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 550px;
}

.carousel-container {
    width: 100%;
    max-width: 700px;
    overflow: hidden;
    position: relative;
    margin: auto;
    border: 1px solid rgba(155,104,76,.45);
    border-radius: 22px;
    background: #fff;
    padding: 18px;
    box-sizing: border-box;
    box-shadow: 0 12px 25px rgba(0,0,0,.08), 0 30px 60px rgba(0,0,0,.12);
}

.carousel-track {
    display: flex;
    transition: transform .8s ease;
    width: 100%;
    overflow: hidden;
}


.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    padding: 0;
    overflow: hidden;
}

    .carousel-slide img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 14px;
        display: block;
        box-shadow: 0 8px 25px rgba(0,0,0,.15);
    }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding-bottom: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d7d7d7;
    transition: .3s;
}

    .dot.active {
        background: #9B684C;
        transform: scale(1.25);
    }

.carousel-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
}

.carousel-pause {
    border: none;
    background: #f4f4f4;
    color: #666;
    padding: 8px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    transition: .25s;
}

    .carousel-pause:hover {
        background: #ececec;
    }

    .carousel-pause.active {
        background: #9B684C;
        color: white;
    }

.waiting-result {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .waiting-result strong {
        font-size: 16px;
        font-weight: 700;
        color: #6d7a90;
    }

.trek-engine {
    line-height: 1.35;
    margin-bottom: 8px;
}

.trek-live {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #9B684C;
    background: rgba(155,104,76,.08);
    border: 1px solid rgba(155,104,76,.25);
}

.demo-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.demo-screen-title {
    margin-top: 35px;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Playfair Display',serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
    color: #1f2430;
    text-align: center;
}

/* ===================================== */
/* Nouvelle section Avant / TREKinsight */
/* ===================================== */

.demo-main-frame {
    max-width: 1100px;
    margin: auto;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 70px;
    align-items: stretch;
}

.before-card,
.after-card {
    background: rgba(255,255,255,.60);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 42px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0,0,0,.03);
}

.before-card {
    border: 1px solid rgba(0,0,0,.05);
}

.after-card {
    border: 1px solid rgba(155,104,76,.40);
    box-shadow: 0 10px 30px rgba(155,104,76,.08);
}


.card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #909090;
    margin-bottom: 30px;
}


.detected-item {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 14px;
    font-weight: 500;
    border-left: 4px solid;
    background: rgba(255,255,255,.55);
    box-shadow: 0 4px 10px rgba(0,0,0,.03);
}


    .detected-item.client {
        border-color: #4C7F9B;
        background: rgba(76,127,155,.06);
        color: #4C7F9B;
    }

    .detected-item.product {
        border-color: #579B4C;
        background: rgba(87,155,76,.06);
        color: #579B4C;
    }

    .detected-item.province {
        border-color: #904C9B;
        background: rgba(144,76,155,.06);
        color: #904C9B;
    }

/* ===================================== */
/* Bloc carrousel */
/* ===================================== */

.demo-carousel-section {
    margin-top: 70px;
}

.demo-screen-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 35px auto;
    color: #2D3748;
}

.carousel-container {
    max-width: 950px;
    margin: auto;
    padding: 30px;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(155,104,76,.35);
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

.compare-item {
    margin-bottom: 22px;
    line-height: 1.8;
    text-align: left;
    padding-left: 10px;
    font-size: 15px;
    color: #444;
}
.demo-story {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.before-card.single {
    max-width: 700px;
    width: 100%;
    padding: 35px;
    min-height: auto;
}

.after-card.single {
    max-width: 850px;
    width: 100%;
    padding: 35px;
}

.story-arrow {
    font-size: 24px;
    font-weight: 600;
    opacity: .5;
    margin: -10px 0;
}

.demo-screen-title {
    margin-top: 35px;
    margin-bottom: 25px;
    font-size: 28px;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    margin-top: 25px;
    overflow: hidden;
    position: relative;
}
}

.before-card .result-separator,
.after-card .result-separator {
    margin: 25px 0;
}

/* Bloc AVANT plus lisible */

.before-card.single {
    background: #fafafa;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: none;
}


/* Liste avant/après */

.compare-item {
    font-size: 16px;
    line-height: 2;
    color: #444;
    padding-left: 25px;
    position: relative;
}


/* Icônes plus visibles */

.compare-item {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* Résultat du bloc AVANT */

.before-card .result-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 12px;
}


.before-card .waiting-pill {
    font-style: italic;
    font-size: 16px;
    color: #7f6957;
    background: #f5f2ef;
    padding: 16px;
    border-radius: 12px;
    line-height: 1.6;
}


/* Séparateur plus marqué */

.before-card .result-separator {
    border-top: 1px solid rgba(0,0,0,.08);
    margin: 30px 0;
}

.carousel-container {
    overflow: hidden !important;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform .8s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 18px;
}

    .carousel-slide img {
        width: 100%;
        display: block;
        border-radius: 14px;
    }

.demo-viewer {
    position: relative;
    max-width: 850px;
    margin: 30px auto 0;
    padding: 25px;
    background: white;
    border: 1px solid rgba(155,104,76,.35);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
    overflow: hidden;
}

.viewer-image {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

    .viewer-image img {
        display: block;
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 16px;
    }

.viewer-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
}

    .viewer-arrow.left {
        left: 15px;
    }

    .viewer-arrow.right {
        right: 15px;
    }

/* Réduction verticale globale */

.demo-subtitle {
    margin-bottom: 45px;
}

.demo-story {
    gap: 18px;
}

.before-card.single,
.after-card.single {
    padding: 28px;
}

.card-label {
    margin-bottom: 20px;
}

.compare-item {
    margin-bottom: 10px;
    line-height: 1.5;
}

.before-card .result-separator,
.after-card .result-separator {
    margin: 18px 0;
}

.before-card .waiting-pill {
    padding: 12px;
}

.demo-screen-title {
    margin-top: 25px;
    margin-bottom: 18px;
    font-size: 32px;
    line-height: 1.25;
}

.detected-item {
    margin-bottom: 10px;
    padding: 11px 16px;
}

.demo-viewer {
    margin-top: 18px;
    padding: 18px;
}

.demo-footer {
    margin-top: 22px;
    line-height: 1.4;
}
/* ===== PROCESS RESULT ===== */

.process-result-preview {
    margin-top: 16px;
    margin-left: 0;
    margin-right: auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
    max-width: 620px;
}

.process-result-title {
    padding: 8px 16px;
    background: #17394d;
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-result-note {
    margin-left: 14px;
    padding-left: 12px;
    border-left: 2px solid rgba(87,155,76,.25);
}

.process-result-table {
    width: 100%;
    border-collapse: collapse;
}

    .process-result-table th {
        text-align: left;
        background: #f8f8f8;
        padding: 10px 16px;
        font-size: 12px;
    }

    .process-result-table td {
        padding: 10px 16px;
        border-top: 1px solid rgba(0,0,0,.05);
        font-size: 13px;
    }

.process-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 600;
}

.process-danger {
    background: rgba(155,104,76,.12);
    color: #9B684C;
}

.process-warning {
    background: rgba(144,76,155,.10);
    color: #904C9B;
}

.process-result-note {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.7;
    color: #5b6472;
}

.process-danger {
    background: #fde8e8;
    color: #b33939;
}

.process-warning {
    background: #fff2df;
    color: #b26a00;
}

.process-result-note {
    padding: 16px 18px;
    line-height: 1.8;
    font-size: 14px;
}

.process-result-subtitle {
    padding: 8px 16px;
    font-size: 12px;
    color: #6b7280;
    font-style: normal;
    opacity: .75;
    background: #f8fafc;
    border-bottom: 1px solid rgba(0,0,0,.05);
}

/* ===== ACCORDEON TREK ===== */

.trek-accordion {
    width: 100%;
    max-width: 680px;
    margin: 0 auto 14px auto;
}

    .trek-accordion:last-child {
        margin-bottom: 0;
    }

    .trek-accordion summary {
        list-style: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        padding: 18px 24px;
        background: #fff;
        border: 1px solid rgba(0,0,0,.06);
        border-radius: 12px;
        font-size: 18px;
        font-weight: 600;
        transition: .25s;
    }

        .trek-accordion summary:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,.05);
        }

        .trek-accordion summary::before {
            content: "+";
            width: 26px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 14px;
            border-radius: 50%;
            background: #579B4C;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
        }

    .trek-accordion[open] summary::before {
        content: "−";
    }

    .trek-accordion small {
        display: block;
        margin-top: 4px;
        font-size: 13px;
        font-weight: 400;
        color: #777;
    }

/* centrage des groupes */

.section-security .inner,
.section-founder .inner,
.section-context .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.final-cta-block {
    margin: 35px 0;
}

.final-cta-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.final-cta-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,.75);
    margin-bottom: 25px;
}

.final-cta-btn {
    min-width: 340px;
}

.hero-btn {
    min-width: 460px;
    margin-top: 18px;
    padding: 18px 38px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(155,104,76,.25), 0 2px 8px rgba(0,0,0,.08);
    transition: all .25s ease;
}

    .hero-btn:hover,
    .method-cta-btn:hover,
    .final-cta-btn:hover {
        background: var(--terra);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 18px 38px rgba(155,104,76,.35), 0 8px 18px rgba(0,0,0,.10);
    }
.hero-btn,
.method-cta-btn {
    position: relative;
}

.method-cta {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 14px;
}

.method-cta-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 600px;
    margin-bottom: 22px;
}

.hero-btn,
.method-cta-btn,
.final-cta-btn {
    position: relative;
    transition: all .25s ease;
}

.hero-reassurance {
    margin-top: 18px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
}

    .hero-reassurance div {
        display: flex;
        align-items: center;
        gap: 6px;
    }

/* TEST INTRO CAS */
.section-case-intro {
    padding: 35px 0 20px;
    text-align: center;
    background: none;
    border: none;
}

    .section-case-intro .inner {
        max-width: 700px;
        margin: 0 auto;
    }

.case-intro-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: #9B684C;
    margin-bottom: 8px;
}

.case-intro-title {
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    max-width: 560px;
    margin: 0 auto;
    color: #6b7280;
}

/* ===== SECTION DEMO REWORK ===== */

.noise-grid,
.proof-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.noise-card {
    background: white;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 12px;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,.03);
}

.impact-section {
    margin-top: 50px;
}

.result-title {
    margin-top: 20px;
    margin-bottom: 25px;
}

.detected-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    min-height: 72px;
    margin: 8px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 500;
    background: white;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 3px 10px rgba(0,0,0,.04);
}

    .detected-item.client {
        border-left: 4px solid #3d77b4;
    }

    .detected-item.product {
        border-left: 4px solid #55a44f;
    }

    .detected-item.province {
        border-left: 4px solid #9447c7;
    }

.proof-title {
    margin-top: 45px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.proof-card {
    width: 31%;
    min-width: 260px;
}

    .proof-card img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 12px;
        border: 1px solid rgba(0,0,0,.08);
        box-shadow: 0 5px 18px rgba(0,0,0,.06);
        display: block;
    }

.proof-label {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.impact-conclusion {
    max-width: 900px;
    margin: 45px auto;
    padding: 25px;
    background: #f7f9fc;
    border-radius: 14px;
    text-align: center;
    line-height: 1.7;
}

.demo-footer {
    text-align: center;
    font-size: 28px;
    line-height: 1.5;
    margin-top: 45px;
}
.case-transition {
    text-align: center;
    padding: 40px 0 30px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.case-transition-label {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 14px;
}

.case-transition h3 {
    font-size: 30px;
    max-width: 700px;
    margin: 0 auto 12px;
    line-height: 1.35;
}

.case-transition p {
    color: #6f7480;
    font-size: 16px;
}

.case-transition {
    text-align: center;
    padding: 30px 0;
    margin: 10px 0 10px;
    font-family: 'Playfair Display',serif;
    font-size: 30px;
    font-style: italic;
    color: #6f7480;
}

.case-transition {
    text-align: center;
    margin: 30px auto 15px;
    padding: 0;
    max-width: 700px;
    font-size: 20px;
    font-style: italic;
    color: #6f7480;
    line-height: 1.5;
}
.case-transition {
    text-align: center;
    margin: 12px auto 0;
    padding: 0;
    max-width: 700px;
    font-size: 18px;
    font-style: italic;
    color: #7c7f88;
    line-height: 1.4;
}

.section-case {
    padding: 20px 48px 80px 48px;
}
/* ===== CTA FINAL OVERRIDE ===== */

.btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: var(--terra) !important;
    color: white !important;
    padding: 18px 42px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    box-shadow: 0 12px 30px rgba(155,104,76,.25), 0 4px 12px rgba(155,104,76,.15);
    transition: transform .25s, background .25s, box-shadow .25s;
}

    .btn:hover {
        background: var(--terra-dark) !important;
        transform: translateY(-2px);
        box-shadow: 0 18px 35px rgba(155,104,76,.35), 0 8px 18px rgba(155,104,76,.18);
    }

/* Hero un peu plus fort */

.hero-btn {
    font-size: 18px !important;
    padding: 22px 52px !important;
}

/* Footer un peu plus grand */

.final-cta-btn {
    margin-top: 20px;
    min-width: 340px;
}

/* ===== CORRECTIONS MOBILE ===== */

/* ===== TABLEAU MOBILE ===== */

@media (max-width:768px) {

    .process-result-preview {
        overflow: hidden;
        padding: 0;
    }

    .process-result-table {
        display: block;
        width: max-content !important;
        min-width: 650px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

        .process-result-table tbody,
        .process-result-table thead {
            display: table;
            width: 100%;
        }

    .hero-btn {
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin: 30px 0 !important;
        padding: 18px 20px !important;
        white-space: normal !important;
        word-break: normal !important;
        justify-content: center;
        align-items: center;
    }

}

.result-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.proof-title {
    font-size: 15px;
    font-weight: 400;
    color: #6b7280;
    margin-top: 40px;
    margin-bottom: 25px;
}