        /* =====================
       DESIGN TOKENS
       ===================== */
        :root {
            --brand: #405E82;
            --accent: #DDF100;
            --text: #0F172A;
            --muted: #6B7280;
            --line: #E5E7EB;
            --card: rgba(255, 255, 255, .92);
            --surface: #F8FAFC;
            --bg-grad-a: #405E82;
            --bg-grad-b: #2b415d;
            --maxw: 1120px;
            --radius-sm: 10px;
            --radius: 16px;
            --radius-lg: 22px;
            --shadow: 0 10px 30px rgba(16, 24, 40, .18);
            /* Spacing */
            --s-1: 4px;
            --s-2: 8px;
            --s-3: 12px;
            --s-4: 16px;
            --s-5: 20px;
            --s-6: 24px;
            --s-8: 32px;
            --s-10: 40px;
            --s-12: 48px;
            --s-16: 64px;
        }

        @media (prefers-reduced-motion:no-preference) {
            :root {
                scroll-behavior: smooth;
            }
        }

        /* ===== Réduction globale de la taille de police */
        html {
            font-size: 15px;
        }

        /* ~-6% vs 16px, tout le site suit en rem */

        html {
            font-family: "ABeeZee", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
        }

        body {
            margin: 0;
            color: var(--text);
            background: linear-gradient(180deg, var(--bg-grad-a), var(--bg-grad-b));
        }

        a {
            color: var(--brand);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        :focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
            border-radius: var(--radius-sm);
        }

        .container {
            max-width: var(--maxw);
            margin-inline: auto;
            padding-inline: var(--s-4);
        }

        .section {
            padding-block: var(--s-12);
        }

        /* =====================
       HEADER / NAV (centré)
       ===================== */
        .skip {
            position: absolute;
            inset-inline-start: -10000px;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .skip:focus {
            position: static;
            width: auto;
            height: auto;
            background: #fff;
            padding: var(--s-2) var(--s-3);
            border-radius: var(--radius-sm);
        }

        header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, .85);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--line);
        }

        .nav {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: var(--s-3);
            padding-block: var(--s-3);
        }

        .brand {
            display: inline-flex;
            align-items: baseline;
            gap: 6px;
            color: var(--brand);
            font-weight: 700;
            text-decoration: none;
        }

        .brand__txt {
            font-size: 1.25rem;
            letter-spacing: .2px;
        }

        .brand__plus {
            color: var(--accent);
            font-weight: 900;
        }

        #siteNav {
            justify-self: center;
        }

        .menu {
            display: flex;
            align-items: center;
            gap: var(--s-5);
        }

        .menu__list {
            list-style: none;
            display: flex;
            gap: var(--s-4);
            margin: 0;
            padding: 0;
            justify-content: center;
            align-items: center;
        }

        .menu__link {
            color: #0f1f32;
            font-size: .95rem;
            font-weight: 600;
        }

        .btn-cta {
            justify-self: end;
            display: inline-flex;
            align-items: center;
            gap: var(--s-2);
            background: var(--accent);
            color: #1a2300;
            border: 1px solid #d2e600;
            padding: 10px 14px;
            border-radius: 999px;
            font-weight: 700;
            text-decoration: none;
        }

        .btn-cta:hover {
            filter: brightness(.98);
            text-decoration: none;
        }

        .menu-toggle {
            justify-self: start;
            display: none;
            background: #fff;
            border: 1px solid #cbd5e1;
            padding: 8px 10px;
            border-radius: var(--radius-sm);
        }

        @media (max-width:840px) {
            .nav {
                grid-template-columns: auto 1fr auto;
            }


            .btn-cta {
                display: inline-flex;
            }

            .menu__list {
                display: none;
            }

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

            nav[aria-expanded="true"] .menu__list {
                display: flex;
                flex-direction: column;
                position: absolute;
                inset-inline: 0;
                top: 56px;
                background: rgba(255, 255, 255, .98);
                border-bottom: 1px solid var(--line);
                padding: var(--s-3) var(--s-4) var(--s-4);
            }

            nav[aria-expanded="false"] .menu__list {
                display: none;
            }

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

        /* =====================
       HERO (EPS+ + grand, sous-titre un peu réduit, plus d'air)
       ===================== */
        .hero {
            color: #fff;
            text-align: center;
            padding-block: var(--s-16) var(--s-10);
        }

        .hero h1 {
            font-size: clamp(1.4rem, 3.2vw + .6rem, 2.1rem);
            line-height: 1.2;
            margin: 0 0 var(--s-3);
        }

        .hero h1 span:first-child {
            font-size: clamp(3rem, 10vw, 5.2rem);
            font-weight: 800;
            letter-spacing: -.02em;
            display: block;
            margin-bottom: .25rem;
        }

        .hero p {
            margin: 0 auto var(--s-5);
            max-width: 720px;
            color: #E8EEF7;
        }

        .hero .actions {
            display: flex;
            justify-content: center;
            gap: var(--s-3);
            flex-wrap: wrap;
            margin-top: var(--s-5);
        }

        .btn {
            appearance: none;
            border: 1px solid #CBD5E1;
            background: #fff;
            color: #0f1f32;
            padding: 10px 16px;
            border-radius: 12px;
            cursor: pointer;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn.primary {
            background: var(--accent);
            border-color: #d2e600;
            color: #141a00;
            font-weight: 700;
        }

        /* =====================
       SECTIONS / CARDS
       ===================== */
        .section-title {
            color: #fff;
            font-size: 1.5rem;
            margin: 0 0 var(--s-5);
        }

        .on-surface {
            background: var(--surface);
            border-block: 1px solid var(--line);
        }

        .on-surface .section-title {
            color: #0f1f32;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--s-4);
        }

        @media (max-width:900px) {
            .grid-3 {
                grid-template-columns: 1fr;
            }
        }

        .card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: var(--s-5);
            box-shadow: var(--shadow);
        }

        .card h3 {
            margin: 0 0 var(--s-2);
            font-size: 1.05rem;
            color: #0f1f32;
        }

        .subtle {
            color: var(--muted);
            font-size: .92rem;
        }

        /* Features */
        .feature-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: inline-grid;
            place-items: center;
            background: #F1F5F9;
            border: 1px solid #E2E8F0;
            margin-bottom: var(--s-2);
        }

        #fonctionnalites .card {
            display: grid;
            grid-template-columns: 48px 1fr;
            grid-auto-rows: auto;
            column-gap: var(--s-3);
            row-gap: var(--s-2);
            align-items: center;
        }

        #fonctionnalites .card .feature-icon {
            grid-column: 1;
            grid-row: 1;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            background: #F1F5F9;
            border: 1px solid #E2E8F0;
            font-size: 1.25rem;
        }

        #fonctionnalites .card h3 {
            grid-column: 2;
            grid-row: 1;
            margin: 0;
            align-self: center;
        }

        #fonctionnalites .card p {
            grid-column: 1 / -1;
            grid-row: 2;
            margin: 0;
        }

        /* =====================
       HOW (4 colonnes sur 13", containers un peu plus compacts)
       ===================== */
        .how {
            color: #fff;
        }

        .how .grid-3 {
            display: grid;
            gap: var(--s-4);
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }

        .how .step {
            display: grid;
            grid-template-columns: 48px 1fr;
            grid-auto-rows: auto;
            column-gap: var(--s-3);
            row-gap: var(--s-2);
            align-items: center;

            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(229, 231, 235, .35);
            padding: calc(var(--s-4) - 4px);
            border-radius: 14px;
        }

        .how .step .step-icon {
            grid-column: 1;
            grid-row: 1;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .25);
            font-size: 1.25rem;
        }

        .how .step h3 {
            grid-column: 2;
            grid-row: 1;
            margin: 0;
            font-size: 1rem;
            color: var(--accent);
        }

        .how .step p {
            grid-column: 1 / -1;
            grid-row: 2;
            margin: 0;
            color: #fff;
            opacity: .95;
            font-size: .95rem;
        }

        @media (min-width:640px) {
            .how .grid-3 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (min-width:1024px) {
            .how .grid-3 {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }

        .step {
            display: grid;
            grid-template-columns: 48px 1fr;
            gap: var(--s-3);
            align-items: start;
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(229, 231, 235, .35);
            padding: calc(var(--s-4) - 4px);
            border-radius: 14px;
        }

        .step-icon {
            display: grid;
            place-items: center;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .25);
            font-size: 1.25rem;
        }

        .step h3 {
            font-size: 1rem;
            margin: 0;
        }

        .step .subtle {
            font-size: .9rem;
        }

        /* =====================
       PRICING (centré + plus large, “ou” sur sa ligne)
       ===================== */
        .tiers {
            display: flex;
            justify-content: center;
            align-items: stretch;
        }

        @media (max-width:980px) {
            .tiers {
                flex-direction: column;
            }
        }

        .tier {
            background: #fff;
            border: 2px solid var(--line);
            border-radius: 18px;
            padding: var(--s-6);
            box-shadow: var(--shadow);
        }

        .tier.best {
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(30, 41, 59, .25);
            width: 100%;
            max-width: 760px;
            margin-inline: auto;
        }

        .price {
            font-size: 1.6rem;
            margin: var(--s-2) 0;
            text-align: center;
            line-height: 1.3;
        }

        .price-line {
            display: block;
            font-weight: 700;
        }

        .price-or {
            display: block;
            margin: .35rem 0;
            opacity: .8;
            font-weight: 600;
        }

        .old-price {
            text-decoration: line-through;
            color: #999;
        }

        .new-price {
            font-weight: bold;
            color: var(--brand);
        }


        .saving {
            color: var(--brand);
            font-size: 0.9em;
            font-weight: 600;
        }

        /* Si tu gardes le <br> et un <span> : on force un “ou” séparé/visible */
        .price br {
            display: none;
        }

        .price span {
            display: block;
        }

        /* rien, juste pour compat */
        .tier ul {
            margin: var(--s-3) 0 0 var(--s-5);
            padding: 0;
        }


        /* ===== Premium (responsive, compact, centré) ===== */
        .pricing .tiers {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--s-4);
        }

        .pricing .tier {
            box-sizing: border-box;
            max-width: 100%;
            flex: 1 1 360px;
            min-width: 0;
            text-align: center;
        }

        .pricing .tier.best {
            /* Contenu centré + hauteur compacte */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 100%;
            max-width: 600px;
            margin-inline: auto;
            padding: var(--s-5);
            /* plus compact que var(--s-6) */
            border: 2px solid var(--line);
            border-radius: 18px;
            background: #fff;
            box-shadow: var(--shadow);
            border-color: var(--accent);
        }

        /* Titre Premium plus visible */
        .pricing .tier.best h3 {
            margin: 0 0 var(--s-3);
            font-weight: 900;
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            /* plus grand et responsive */
            color: var(--brand);
            /* ta couleur bleue principale */
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }

        /* Bloc prix harmonisé, coupe proprement si texte long */
        .pricing .price {
            text-align: center;
            line-height: 1.25;
            margin: var(--s-3) 0 var(--s-4);
            font-size: clamp(1.25rem, 2.2vw, 1.6rem);
        }

        .pricing .price .price-line {
            display: block;
            font-weight: 800;
            /* même poids 4,99 / 39,99 */
            color: #0f1f32;
            overflow-wrap: anywhere;
            /* gère les textes longs */
            word-break: break-word;
        }

        .pricing .price .price-or {
            display: block;
            margin: .35rem 0;
            font-weight: 700;
            color: #546072;
        }

        .pricing .price .price-note {
            font-weight: 700;
            /* note visible mais compacte */
            font-size: .9em;
            opacity: .9;
        }

        /* Liste des features – <strong> en bleu + coche */
        .pricing .tier ul {
            text-align: left;
            list-style: none;
            padding: 0;
            margin: var(--s-3) 0 0;
            /* pas d'indent */
            color: #0f1f32;
            font-size: .95rem;
        }

        .pricing .tier ul li {
            margin: .45rem 0;
            position: relative;
            padding-left: 1.4rem;
        }


        /* Coche verte par défaut */
        .pricing .tier ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: .1rem;
            font-weight: 800;
            color: #43a047;
            /* vert clair et doux */
            transition: transform 0.2s ease, color 0.2s ease;
        }

        /* Croix rouge pour les éléments limités */
        .pricing .tier ul li.cross::before {
            content: "✗";
            color: #e53935;
            /* rouge harmonieux */
        }

        /* Effet au survol : petit rebond + couleur accentuée */
        .pricing .tier ul li:hover::before {
            transform: scale(1.2);
            color: var(--accent);
            /* bleu accent (ou ta variable) */
        }

        /* Optionnel : légère animation du texte au survol */
        .pricing .tier ul li:hover {
            transform: scale(1.02);
            color: var(--brand, #1e88e5);
            transition: color 0.2s ease;
        }

        .pricing .tier ul li strong {
            font-weight: 800;
            color: var(--brand);
            /* demandé : bleu */
        }



        /* Mobile encore plus compact si nécessaire */
        @media (max-width: 600px) {
            .pricing .tier.best {
                padding: var(--s-4);
            }

            .pricing .price {
                font-size: 1.35rem;
            }
        }

        /* Bandeau CTA (inchangé) */
        .cta-band {
            background: linear-gradient(90deg, rgba(221, 241, 0, .22), rgba(221, 241, 0, .12));
            border: 1px solid #d2e600;
            border-radius: 18px;
            padding: var(--s-5);
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: var(--s-4);
        }

        @media (max-width:680px) {
            .cta-band {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        /* =====================
       Alternance de fonds & contrastes
       ===================== */
        /* on-surface = blanc ; how = fond bleu. On veille au contraste des liens/boutons. */
        .section.on-surface {
            background: #fff;
            color: var(--text);
        }

        .section.on-surface a {
            color: var(--brand);
        }

        .section.on-surface .btn.primary {
            background: var(--accent);
            color: #141a00;
            border-color: #d2e600;
        }

        .section.how {
            background: var(--brand);
            color: #fff;
        }

        .section.how a {
            color: #fff;
            text-decoration: underline;
        }

        .section.how .subtle {
            color: rgba(255, 255, 255, .85);
        }

        /* FAQ cartes sur fond bleu */
        .faq details {
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(229, 231, 235, .35);
            border-radius: 12px;
            padding: var(--s-4);
        }

        .faq details+details {
            margin-top: var(--s-3);
        }

        .faq summary {
            cursor: pointer;
            font-weight: 700;
        }

        /* Contact (fond blanc, bon contraste) */
        .form {
            display: grid;
            gap: var(--s-4);
        }

        .form__row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--s-4);
        }

        /* Carte plus sobre */
        .contact-card {
            background: #fff;
            border: 1px solid var(--line);
            box-shadow: none;
            border-radius: 14px;
        }

        .contact-link {
            font-weight: 700;
            color: var(--brand);
            text-decoration: underline;
        }

        #contact .btn.primary {
            all: unset;
        }

        @media (max-width:720px) {
            .form__row {
                grid-template-columns: 1fr;
            }
        }

        .field {
            display: grid;
            gap: var(--s-2);
        }

        .input,
        .textarea {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #CBD5E1;
            border-radius: 10px;
            font: inherit;
        }

        /* Footer */
        footer {
            color: #E6EEF9;
            text-align: center;
            padding: var(--s-6) var(--s-4) var(--s-12);
            font-size: .9rem;
        }

        footer a {
            color: var(--accent);
        }

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

        .hero-brand {
            color: var(--accent);
            display: block;
        }

        .hero-highlight {
            color: var(--accent);
        }

        .fallback-box {
            display: none;
            text-align: center;
            padding: 2rem;
        }

        .fallback-list {
            list-style: none;
            padding: 0;
        }

        .price-note-soft {
            font-size: 0.9em;
            opacity: 0.8;
        }
