        /* ========== RESET & BASE ========== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            /* Charte leadtonic.fr portée sur Canal Mail (noms de variables conservés, valeurs remappées) */
            --white: #FFFFFF;
            --gray-light: #F7F8FB;   /* leadtonic --bg-2 */
            --gray-100: #EFF3F8;     /* --bg-3 */
            --gray-200: #E6EAF2;     /* --line */
            --gray-400: #9AA7C0;     /* --ink-4 */
            --gray-500: #6B7A98;     /* --ink-3 */
            --gray-600: #3A4A6B;     /* --ink-2 */
            --gray-900: #0F1F46;     /* --ink */
            --dark: #0F1F46;         /* --ink (navy) */
            --text: #0F1F46;         /* --ink */
            --orange: #74C400;       /* ACCENT remappé → vert lime (leadtonic --green-deep) */
            --orange-light: rgba(116, 196, 0, 0.14);
            --blue: #0A91EB;         /* leadtonic --blue-rcs */
            --blue-hover: #0B6FB3;
            --green: #74C400;        /* --green-deep */
            --green-bright: #BFE514; /* --green */
            --green-soft: #F0FBC0;   /* --green-soft */
            --ink: #0F1F46;
            --line-2: #D0D7E2;
            --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-display: 'Bricolage Grotesque', 'Outfit', sans-serif;
            --font-mono: 'JetBrains Mono', ui-monospace, monospace;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font);
            color: var(--text);
            background: var(--white);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

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

        .container--narrow {
            max-width: 780px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== ANIMATIONS ========== */
        .fade-up {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger children */
        .stagger > .fade-up:nth-child(1) { transition-delay: 0s; }
        .stagger > .fade-up:nth-child(2) { transition-delay: 0.1s; }
        .stagger > .fade-up:nth-child(3) { transition-delay: 0.2s; }
        .stagger > .fade-up:nth-child(4) { transition-delay: 0.3s; }

        /* ========== TYPO UTILITIES ========== */
        .accent { color: var(--orange); }

        .underline-decor {
            position: relative;
            display: inline;
        }

        .underline-decor::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 2px;
            width: 100%;
            height: 6px;
            background: var(--orange);
            opacity: 0.25;
            border-radius: 3px;
            z-index: -1;
        }

        .section-label {
            display: inline-block;
            font-size: 0.8125rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--orange);
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 800;
            line-height: 1.2;
            color: var(--text);
            margin-bottom: 20px;
        }

        .section-text {
            font-size: 1.0625rem;
            color: var(--gray-600);
            line-height: 1.75;
            max-width: 680px;
        }

        .text-center { text-align: center; }
        .mx-auto { margin-left: auto; margin-right: auto; }

        /* ========== BUTTONS ========== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font);
            font-weight: 700;
            font-size: 0.9375rem;
            border: none;
            border-radius: 12px;
            padding: 16px 32px;
            cursor: pointer;
            transition: all 0.25s ease;
            text-decoration: none;
        }

        .btn--primary {
            background: var(--blue);
            color: var(--white);
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
        }

        .btn--primary:hover {
            background: var(--blue-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }

        .btn--dark {
            background: var(--dark);
            color: var(--white);
        }

        .btn--dark:hover {
            background: #1F2937;
            transform: translateY(-2px);
        }

        .btn--outline {
            background: transparent;
            color: var(--text);
            border: 2px solid var(--gray-200);
        }

        .btn--outline:hover {
            border-color: var(--blue);
            color: var(--blue);
        }

        .btn--ghost {
            background: transparent;
            color: var(--blue);
            padding: 8px 0;
            font-weight: 700;
        }

        .btn--ghost:hover {
            color: var(--blue-hover);
        }

        .btn--ghost .arrow {
            transition: transform 0.25s ease;
        }

        .btn--ghost:hover .arrow {
            transform: translateX(4px);
        }

        /* ========== NAVBAR ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: box-shadow 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        .navbar.scrolled {
            box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
            border-bottom-color: var(--gray-200);
        }

        .navbar__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .navbar__logo {
            display: flex;
            align-items: center;
            gap: 11px;
            color: var(--text);
            text-decoration: none;
        }

        .navbar__logo-mark {
            height: 38px;
            width: auto;
            flex: 0 0 auto;
        }

        .navbar__logo-lockup {
            display: flex;
            flex-direction: column;
            justify-content: center;
            line-height: 1;
        }

        .navbar__logo-name {
            font-family: var(--font);
            font-weight: 800;
            font-size: 1.35rem;
            letter-spacing: 0.13em;
            color: var(--dark);
        }

        .navbar__logo-tag {
            font-family: var(--font);
            font-weight: 600;
            font-size: 0.58rem;
            letter-spacing: 0.012em;
            color: var(--gray-500);
            margin-top: 4px;
            white-space: nowrap;
        }

        .navbar__links {
            display: flex;
            align-items: center;
            gap: 36px;
        }

        .navbar__links a {
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--gray-600);
            transition: color 0.2s ease;
        }

        .navbar__links a:hover {
            color: var(--text);
        }

        .navbar__cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--dark);
            color: var(--white);
            font-family: var(--font);
            font-weight: 700;
            font-size: 0.875rem;
            padding: 10px 22px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
            text-decoration: none;
        }

        .navbar__cta:hover {
            background: #1F2937;
            transform: translateY(-1px);
        }

        .navbar__toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: var(--text);
        }

        /* Mobile nav */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
            padding: 24px;
            z-index: 999;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .mobile-nav.active {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .mobile-nav a {
            font-size: 1rem;
            font-weight: 600;
            color: var(--gray-600);
            padding: 8px 0;
        }

        .mobile-nav .navbar__cta {
            text-align: center;
            justify-content: center;
            margin-top: 8px;
        }

        /* ========== HERO ========== */
        .hero {
            padding-top: 140px;
            padding-bottom: 80px;
            text-align: center;
            background: var(--white);
        }

        .hero__surtitle {
            font-size: 1rem;
            font-weight: 600;
            color: var(--gray-500);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .hero__surtitle .accent {
            font-weight: 700;
        }

        .hero__title {
            font-size: clamp(2.5rem, 5.5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--text);
            margin-bottom: 28px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            letter-spacing: -0.02em;
        }

        .hero__subtitle {
            font-size: 1.125rem;
            color: var(--gray-600);
            line-height: 1.75;
            max-width: 720px;
            margin: 0 auto 40px;
        }

        .hero__ctas {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 64px;
        }

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

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-600);
            background: var(--gray-light);
            padding: 10px 18px;
            border-radius: 100px;
        }

        .badge__icon {
            width: 20px;
            height: 20px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .badge__icon svg {
            width: 12px;
            height: 12px;
            stroke: var(--white);
            fill: none;
            stroke-width: 3;
        }

        /* ========== PROBLEMATIQUE ========== */
        .problematique {
            padding: 100px 0;
            background: var(--gray-light);
        }

        .problematique__content {
            max-width: 750px;
            margin: 0 auto;
            text-align: center;
        }

        .problematique__content .section-title {
            margin-bottom: 32px;
        }

        .problematique__content p {
            font-size: 1.0625rem;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .problematique__content p:last-of-type {
            font-weight: 700;
            color: var(--text);
            font-size: 1.125rem;
        }

        /* ========== OFFRES ========== */
        .offres {
            padding: 100px 0;
            background: var(--white);
        }

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

        .offres__header .section-text {
            margin: 0 auto;
        }

        .offres__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .offer-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            padding: 40px 32px;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
        }

        .offer-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border-color: transparent;
        }

        .offer-card__number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--gray-100);
            line-height: 1;
            margin-bottom: 16px;
            display: flex;
            align-items: baseline;
            gap: 12px;
        }

        .offer-card__name {
            font-size: 1.5rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--orange);
        }

        .offer-card__label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--orange);
            background: var(--orange-light);
            padding: 6px 14px;
            border-radius: 6px;
            margin-bottom: 16px;
        }

        .offer-card__title {
            font-size: 1.25rem;
            font-weight: 800;
            line-height: 1.3;
            color: var(--text);
            margin-bottom: 14px;
        }

        .offer-card__text {
            font-size: 0.9375rem;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .offer-card__points {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .offer-point {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .offer-point__icon {
            width: 22px;
            height: 22px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .offer-point__icon svg {
            width: 12px;
            height: 12px;
            stroke: var(--white);
            fill: none;
            stroke-width: 3;
        }

        .offer-point__content strong {
            display: block;
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 2px;
        }

        .offer-point__content span {
            font-size: 0.8125rem;
            color: var(--gray-500);
            line-height: 1.6;
        }

        .offer-card__result {
            background: var(--gray-light);
            border-radius: 10px;
            padding: 16px;
            margin-bottom: 24px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text);
            line-height: 1.5;
        }

        .offer-card__result::before {
            content: '→ ';
            color: var(--orange);
            font-weight: 800;
        }

        .offer-card__cta {
            margin-top: auto;
        }

        /* ========== CHIFFRES ========== */
        .chiffres {
            padding: 100px 0;
            background: var(--gray-light);
        }

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

        .chiffres__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .chiffre-item {
            text-align: center;
            padding: 32px 16px;
            display: grid;
            grid-template-rows: 1fr auto 1fr;
            align-items: center;
            justify-items: center;
        }

        .chiffre-item__value {
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 800;
            color: var(--text);
            line-height: 1.2;
            align-self: end;
        }

        .chiffre-item__bar {
            width: 40px;
            height: 4px;
            background: var(--orange);
            border-radius: 2px;
            margin: 14px 0;
            flex-shrink: 0;
        }

        .chiffre-item__label {
            font-size: 0.9375rem;
            color: var(--gray-600);
            line-height: 1.5;
            align-self: start;
        }

        /* ========== POURQUOI NOUS ========== */
        .pourquoi {
            padding: 100px 0;
            background: var(--white);
        }

        .pourquoi__header {
            text-align: center;
            margin-bottom: 24px;
        }

        .pourquoi__intro {
            text-align: center;
            max-width: 780px;
            margin: 0 auto 64px;
            font-size: 1.0625rem;
            color: var(--gray-600);
            line-height: 1.75;
        }

        .pourquoi__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .pourquoi-card {
            padding: 0;
        }

        .pourquoi-card__number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--orange-light);
            color: var(--orange);
            font-weight: 800;
            font-size: 1.125rem;
            margin-bottom: 20px;
        }

        .pourquoi-card__title {
            font-size: 1.125rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 12px;
            line-height: 1.35;
        }

        .pourquoi-card__text {
            font-size: 0.9375rem;
            color: var(--gray-600);
            line-height: 1.75;
        }

        /* ========== PARCOURS ========== */
        .parcours {
            padding: 100px 0;
            background: var(--gray-light);
        }

        .parcours__header {
            text-align: center;
            margin-bottom: 72px;
        }

        .parcours__timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .parcours__timeline::before {
            content: '';
            position: absolute;
            top: 28px;
            left: 12.5%;
            right: 12.5%;
            height: 3px;
            background: var(--gray-200);
            border-radius: 2px;
        }

        .step {
            text-align: center;
            position: relative;
            padding: 0 16px;
        }

        .step__circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--white);
            border: 3px solid var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-weight: 800;
            font-size: 1.125rem;
            color: var(--orange);
            position: relative;
            z-index: 2;
        }

        .step__title {
            font-size: 1rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 10px;
        }

        .step__text {
            font-size: 0.8125rem;
            color: var(--gray-500);
            line-height: 1.7;
        }

        .parcours__cta {
            text-align: center;
            margin-top: 64px;
        }

        /* ========== TEMOIGNAGES ========== */
        .temoignages {
            padding: 100px 0;
            background: var(--white);
        }

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

        .temoignages__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .testimonial-card {
            background: var(--gray-light);
            border-radius: 20px;
            padding: 36px 32px;
            position: relative;
        }

        .testimonial-card__quote-icon {
            font-size: 4rem;
            color: var(--orange);
            opacity: 0.15;
            line-height: 1;
            margin-bottom: -12px;
            font-family: Georgia, serif;
        }

        .testimonial-card__text {
            font-size: 0.9375rem;
            color: var(--text);
            line-height: 1.75;
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-card__author {
            font-size: 0.8125rem;
            color: var(--gray-500);
            font-weight: 600;
        }

        /* ========== BOOKING / DIAGNOSTIC ========== */
        .booking {
            padding: 100px 0;
            background: var(--dark);
            text-align: center;
        }

        .booking__title {
            font-size: clamp(1.75rem, 3.5vw, 2.75rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .booking__text {
            font-size: 1.0625rem;
            color: var(--gray-400);
            margin-bottom: 48px;
            line-height: 1.7;
        }

        .booking__widget {
            max-width: 700px;
            margin: 0 auto;
            border-radius: 16px;
            overflow: hidden;
            background: var(--white);
        }

        .booking__widget .calendly-inline-widget {
            min-width: 320px;
            height: 950px;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: #0B1120;
            padding: 60px 0 32px;
            color: var(--gray-400);
        }

        .footer__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 40px;
        }

        .footer__logo {
            display: inline-flex;
            align-items: center;
            gap: 13px;
            text-decoration: none;
        }

        .footer__logo-mark {
            height: 52px;
            width: auto;
            flex: 0 0 auto;
        }

        .footer__logo-lockup {
            display: flex;
            flex-direction: column;
            justify-content: center;
            line-height: 1;
        }

        .footer__logo-name {
            font-family: var(--font);
            font-weight: 800;
            font-size: 1.68rem;
            letter-spacing: 0.13em;
            color: var(--dark);
        }

        .footer__logo-tag {
            font-family: var(--font);
            font-weight: 600;
            font-size: 0.72rem;
            letter-spacing: 0.012em;
            color: var(--gray-500);
            margin-top: 5px;
            white-space: nowrap;
        }

        .footer__nav {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }

        .footer__nav a {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--gray-400);
            transition: color 0.2s ease;
        }

        .footer__nav a:hover {
            color: var(--white);
        }

        .footer__bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.8125rem;
        }

        .footer__legal {
            display: flex;
            gap: 20px;
        }

        .footer__legal a {
            color: var(--gray-500);
            transition: color 0.2s ease;
        }

        .footer__legal a:hover {
            color: var(--white);
        }


        /* ========== DIFFERENCIATEUR ========== */
        .differenciateur {
            padding: 100px 0;
            background: var(--dark);
            text-align: center;
        }

        .differenciateur__title {
            font-size: clamp(1.75rem, 3.5vw, 2.75rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.2;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }

        .differenciateur__text {
            font-size: 1.0625rem;
            color: var(--gray-400);
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto;
        }

        /* ========== POUR QUI ========== */
        .pour-qui {
            padding: 100px 0;
            background: var(--white);
        }

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

        .pour-qui__grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .pour-qui-card {
            background: var(--gray-light);
            border-radius: 20px;
            padding: 40px 36px;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .pour-qui-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
        }

        .pour-qui-card__title {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 14px;
        }

        .pour-qui-card__text {
            font-size: 0.9375rem;
            color: var(--gray-600);
            line-height: 1.75;
        }

        /* ========== DROPDOWN NAV ========== */
        .dropdown {
            position: relative;
        }

        .dropdown__trigger {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--gray-600);
            transition: color 0.2s ease;
            cursor: pointer;
            background: none;
            border: none;
            font-family: var(--font);
            padding: 0;
        }

        .dropdown__trigger:hover { color: var(--text); }

        .dropdown__chevron {
            width: 16px;
            height: 16px;
            transition: transform 0.25s ease;
        }

        .dropdown:hover .dropdown__chevron {
            transform: rotate(180deg);
        }

        .dropdown__menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            padding-top: 16px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s ease, visibility 0.2s ease;
            z-index: 100;
        }

        .dropdown:hover .dropdown__menu {
            opacity: 1;
            visibility: visible;
        }

        .dropdown__menu-inner {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 8px;
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
            min-width: 240px;
        }

        .dropdown__menu-inner a {
            display: block;
            padding: 10px 16px;
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--gray-600);
            border-radius: 8px;
            transition: all 0.15s ease;
            white-space: nowrap;
        }

        .dropdown__menu-inner a:hover {
            background: var(--gray-light);
            color: var(--text);
        }

        .mobile-nav__label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--gray-400);
            padding: 12px 0 0;
        }

        /* ========== COOKIE BANNER ========== */
        .cookie-consent-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--dark);
            color: var(--white);
            padding: 20px 24px;
            display: none;
            align-items: center;
            justify-content: center;
            gap: 20px;
            z-index: 9999;
            font-size: 0.875rem;
            flex-wrap: wrap;
        }

        .cookie-consent-banner.active {
            display: flex;
        }

        .cookie-consent-banner p {
            margin: 0;
            line-height: 1.5;
        }

        .cookie-consent-banner .cookie-link {
            color: var(--orange);
            text-decoration: underline;
        }

        .cookie-consent-banner .cookie-btn {
            background: var(--blue);
            color: var(--white);
            border: none;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.875rem;
            cursor: pointer;
            font-family: var(--font);
            white-space: nowrap;
        }

        .cookie-consent-banner .cookie-btn:hover {
            background: var(--blue-hover);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .offres__grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .chiffres__grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pourquoi__grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .parcours__timeline {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .parcours__timeline::before {
                top: 0;
                bottom: 0;
                left: 28px;
                right: auto;
                width: 3px;
                height: 100%;
            }

            .step {
                text-align: left;
                padding-left: 80px;
            }

            .step__circle {
                position: absolute;
                left: 0;
                top: 0;
                margin: 0;
            }

            .temoignages__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .pour-qui__grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .navbar__links,
            .navbar__cta-wrapper {
                display: none;
            }

            .navbar__toggle {
                display: block;
            }

            .hero {
                padding-top: 88px;
                padding-bottom: 60px;
            }

            .hero__title {
                font-size: clamp(2rem, 7vw, 2.75rem);
            }

            .hero__badges {
                gap: 12px;
            }

            .badge {
                font-size: 0.8125rem;
                padding: 8px 14px;
            }

            .chiffres__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .footer__inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .footer__bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            section {
                padding: 72px 0;
            }

            .problematique,
            .offres,
            .chiffres,
            .pourquoi,
            .parcours,
            .temoignages,
            .booking,
            .differenciateur,
            .pour-qui {
                padding: 72px 0;
            }
        }

/* ========== RCS FEATURE (section home) ========== */
.rcs-feature { padding: 100px 0; background: var(--white); }
.rcs-feature__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.rcs-feature__media img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
}
.rcs-feature__points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0 32px;
}
@media (max-width: 1024px) {
    .rcs-feature__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ========== LEADTONIC CALLOUT ========== */
.leadtonic-callout {
    margin-top: 40px;
    background: var(--gray-light);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.leadtonic-callout__text { max-width: 680px; }
.leadtonic-callout__text h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}
.leadtonic-callout__text p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}
@media (max-width: 768px) {
    .leadtonic-callout { flex-direction: column; align-items: flex-start; }
}

/* ===== FAQ (accordéon) ===== */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--gray-200); }
.faq__q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 24px 0; background: none; border: 0; cursor: pointer;
    font-family: var(--font); font-size: 1.125rem; font-weight: 600;
    color: var(--dark); text-align: left;
}
.faq__icon {
    flex: 0 0 auto; width: 24px; height: 24px; position: relative;
    transition: transform .25s ease;
}
.faq__icon::before, .faq__icon::after {
    content: ""; position: absolute; top: 50%; left: 50%;
    width: 14px; height: 2px; background: var(--orange);
    transform: translate(-50%, -50%);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.active .faq__icon { transform: rotate(45deg); }
.faq__a {
    overflow: hidden; max-height: 0; transition: max-height .3s ease;
}
.faq__item.active .faq__a { max-height: 600px; }
.faq__a-inner { padding: 0 0 24px; color: var(--gray-600); line-height: 1.7; }

/* ===== Tableau comparatif (quel canal pour quel usage) ===== */
.compare-table { width: 100%; overflow-x: auto; margin: 32px 0; -webkit-overflow-scrolling: touch; }
.compare-table table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: .95rem; }
.compare-table th, .compare-table td {
    padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--gray-200);
    vertical-align: top;
}
.compare-table thead th {
    background: var(--gray-light); color: var(--dark); font-weight: 700;
    border-bottom: 2px solid var(--gray-200);
}
.compare-table__use { font-weight: 600; color: var(--dark); white-space: nowrap; }
.compare-table tbody tr:hover { background: var(--orange-light); }

/* =====================================================================
   CHARTE LEADTONIC — surcharge globale (titres Bricolage, eyebrows mono,
   boutons pilule verts, cartes arrondies, accents verts). Portée juin 2026.
   ===================================================================== */

/* Titres en Bricolage Grotesque */
h1, h2, h3,
.hero__title, .section-title, .differenciateur__title,
.offer-card__title, .pour-qui-card__title, .pourquoi-card__title,
.step__title, .booking__title, .problematique .section-title {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

/* Sous-titre de section (h3 dans le corps rédactionnel) */
.section-subtitle {
    font-size: 1.375rem;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 12px;
}
@media (max-width: 768px) {
    .section-subtitle { font-size: 1.2rem; }
}

/* Eyebrow / section-label → mono majuscule (style leadtonic) */
.section-label, .hero__surtitle {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-size: 0.72rem;
    color: var(--green);
}
.section-label {
    display: inline-block;
    background: var(--green-soft);
    color: #4e7a00;
    padding: 6px 12px;
    border-radius: 999px;
}

/* Boutons pilule */
.btn {
    border-radius: 999px;
    font-family: var(--font);
    font-weight: 600;
    letter-spacing: 0;
}
.btn--primary {
    background: var(--green);
    color: var(--ink);
    border: none;
}
.btn--primary:hover {
    background: var(--green-bright);
    color: var(--ink);
}
.btn--dark {
    background: var(--ink);
    color: var(--white);
}
.btn--dark:hover { background: #14264f; }
.btn--outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line-2);
}
.btn--outline:hover {
    border-color: var(--ink);
    background: transparent;
    color: var(--ink);
}

/* CTA navbar → pilule verte */
.navbar__cta {
    background: var(--green);
    color: var(--ink);
    border-radius: 999px;
    font-weight: 700;
}
.navbar__cta:hover { background: var(--green-bright); color: var(--ink); }
.navbar { background: rgba(255,255,255,0.92); }
.navbar.scrolled { border-bottom: 1px solid var(--gray-200); }

/* Liens nav */
.navbar__links > a, .dropdown__trigger { color: var(--gray-600); font-weight: 500; }
.navbar__links > a:hover, .dropdown__trigger:hover { color: var(--ink); }

/* Cartes : coins arrondis + bordure ligne + ombre douce leadtonic */
.offer-card, .pour-qui-card, .pourquoi-card, .testimonial-card, .chiffre-item {
    border-radius: 18px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px -18px rgba(15, 31, 70, 0.22);
}
.offer-card:hover, .pour-qui-card:hover, .pourquoi-card:hover {
    box-shadow: 0 16px 40px -22px rgba(15, 31, 70, 0.28);
    border-color: var(--line-2);
}

/* Accent vert + soulignement décoratif */
.accent { color: var(--green); }
.underline-decor::after { background: var(--green-bright); }
.arrow { color: inherit; }

/* Badges → pastilles vertes douces */
.badge {
    background: var(--green-soft);
    border-radius: 999px;
    color: #3f6300;
}
.badge__icon svg { stroke: var(--green); }

/* Bloc sombre (differenciateur / booking) en navy leadtonic */
.differenciateur, .booking { background: var(--ink); }
.differenciateur .accent, .booking .accent { color: var(--green-bright); }

/* FAQ + tableau : lignes et accents charte */
.faq__icon::before, .faq__icon::after { background: var(--green); }
.compare-table thead th { background: var(--gray-light); color: var(--ink); }
.compare-table tbody tr:hover { background: var(--green-soft); }

/* Timeline méthode : pastilles vertes */
.step__circle { background: var(--green); color: var(--ink); }

/* Logo : mot-marque en Bricolage navy */
.navbar__logo-name, .footer__logo-name {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.navbar__logo-tag, .footer__logo-tag {
    font-family: var(--font-mono);
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Nettoyage : ombres boutons primaires en vert (plus de glow bleu hérité) */
.btn--primary { box-shadow: 0 4px 14px rgba(116, 196, 0, 0.30); }
.btn--primary:hover { box-shadow: 0 6px 20px rgba(116, 196, 0, 0.42); }
.btn--ghost { color: var(--green); }
.btn--ghost:hover { color: var(--green-bright); }

/* Pages légales / contenu éditorial simple (recâblées sur header/footer partagés) */
.content-section { padding: 140px 0 90px; }
.content-section .container { max-width: 820px; }
.content-section h1 {
    font-family: var(--font-display);
    color: var(--ink);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}
.content-section h2 {
    font-family: var(--font-display);
    color: var(--ink);
    font-size: 1.4rem;
    margin: 36px 0 12px;
}
.content-section p { color: var(--gray-600); margin-bottom: 14px; line-height: 1.7; }
.content-section ul { margin: 0 0 18px 1.3em; list-style: disc; color: var(--gray-600); }
.content-section li { margin-bottom: 8px; }
.content-section a { color: var(--green); }
.content-section strong { color: var(--ink); }

/* =====================================================================
   FIDÉLITÉ LEADTONIC v2 — valeurs CSS exactes reprises de
   ~/projects/web/www.leadtonic.fr/index.html (juin 2026).
   Ce bloc surcharge les approximations précédentes.
   ===================================================================== */

/* Base : interlignage leadtonic */
body { line-height: 1.5; }

/* HERO : titre Bricolage condensé, énorme ; sous-titre 19px ink-2 */
.hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-variation-settings: "wdth" 90;
    font-size: clamp(46px, 6.4vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.035em;
}
.hero__subtitle {
    font-size: 19px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* TITRES DE SECTION : clamp(34→56), lh 1.02, ls -0.02em */
.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.02em;
}
.section-text { font-size: 17px; color: var(--gray-600); line-height: 1.6; }

/* Pages éditoriales (.is-article) : le corps de texte remplit la largeur du conteneur,
   au lieu d'être plafonné à 680px et collé à gauche dans un conteneur de 1200px */
.container.is-article .section-text { max-width: none; }

/* Emphase verte dans les titres (leadtonic <em> = green-deep, <u> = surlignage green-soft) */
.accent { color: var(--green); }
.underline-decor::after {
    background: var(--green-soft);
    height: 38%;
    bottom: 0;
    opacity: 1;
    border-radius: 0;
}

/* EYEBROW = pilule blanche bordée + point vert (leadtonic .eyebrow) */
.section-label, .hero__surtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 10px;
    margin-bottom: 16px;
    border-radius: 999px;
    border: 1px solid var(--line-2);
    background: #fff;
    font-family: var(--font);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--gray-600);
}
.section-label::before, .hero__surtitle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex: 0 0 8px;
}

/* BOUTONS = pilule leadtonic (padding 11/18, font 15, weight 500) */
.btn {
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--green-bright); color: var(--ink); box-shadow: none; border-color: transparent; }
.btn--primary:hover { background: #C9F042; color: var(--ink); box-shadow: none; transform: translateY(-1px); }
.btn--outline { background: #fff; color: var(--ink); border: 1px solid var(--line-2); }
.btn--outline:hover { background: var(--gray-light); color: var(--ink); border-color: var(--line-2); }
.btn--dark { background: var(--ink); color: #fff; border-color: transparent; }
.btn--dark:hover { background: #14264f; }
.btn--ghost { color: var(--green); padding: 8px 0; border: none; font-weight: 600; }

/* NAVBAR leadtonic : liens 15px ink-2, CTA pilule verte compacte */
.navbar__links > a, .dropdown__trigger {
    font-size: 15px;
    color: var(--gray-600);
    font-weight: 500;
}
.navbar__links > a:hover, .dropdown__trigger:hover { color: var(--ink); }
.navbar__cta {
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    background: var(--green-bright);
    color: var(--ink);
}
.navbar__cta:hover { background: #C9F042; color: var(--ink); }

/* Chiffres clés = .kpi-val leadtonic : Bricolage vert, gros */
.chiffre-item__value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 3.4vw, 46px);
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--green);
}

/* =====================================================================
   HERO 2 COLONNES (leadtonic .hero-grid) — texte à gauche, visuel à droite
   ===================================================================== */
.hero { text-align: left; }
.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero__col { display: flex; flex-direction: column; align-items: flex-start; }
.hero__col .hero__ctas { justify-content: flex-start; }
.hero__col .hero__badges { justify-content: flex-start; }
.hero__panel {
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(160deg, #EAF9C2 0%, #F4FCD4 38%, #E3F2FE 100%);
    border: 1px solid var(--gray-200);
    box-shadow: 0 30px 70px -45px rgba(15, 31, 70, 0.40);
}
.hero__panel img { width: 100%; border-radius: 14px; display: block; }

@media (max-width: 900px) {
    .hero { text-align: center; }
    .hero__grid { grid-template-columns: 1fr; gap: 36px; }
    .hero__col { align-items: center; }
    .hero__col .hero__ctas, .hero__col .hero__badges { justify-content: center; }
    .hero__visual { order: -1; }
}

/* Navbar sticky (la barre d'annonce défile au-dessus, comme leadtonic) */
.navbar { position: sticky; top: 0; }
/* Plus de navbar fixe à compenser → espacements hauts normaux */
.hero { padding-top: 36px; }
.content-section { padding-top: 72px; }
@media (max-width: 900px) {
    .hero { padding-top: 24px; }
}

/* Bouton de navbar = bouton bleu RCS leadtonic (PAS vert) : #0A91EB, blanc, 9/14, 14px, point vert */
.navbar__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 999px;
}
.navbar__cta:hover { background: #0F437F; color: #fff; }
.navbar__cta::before {
    content: "";
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 0 3px color-mix(in oklab, var(--green-bright) 30%, transparent);
    flex: 0 0 8px;
}

/* "MAIL" du wordmark en vert (signature de marque) */
.logo-accent { color: inherit; }

/* "CANAL" dans le bleu du logo (bulle bleue), "MAIL" reste vert */
.navbar__logo-name, .footer__logo-name { color: #0F437F; }
