/* ==========================================================================
   Hotelvéa — SITE VITRINE (vente du logiciel aux hôteliers)
   Distinct du back-office (app.css) et du moteur de réservation (booking.css).

   Intention 2026 : « logiciel épuré & lumineux ». Blanc franc et frais (le
   registre des grands SaaS : Stripe, Linear…), émeraude Hotelvéa éclaircie,
   menthe vive en accent. La profondeur vient de halos colorés très doux et
   d'ombres nettes — plus aucun grain de papier ni doré feutré. Police système
   Apple (San Francisco) pour un rendu natif. Micro-animations sobres
   (révélation au scroll, désactivée si l'utilisateur préfère moins de
   mouvement). Icônes au trait, jamais d'émoji. Mobile-first. Les noms de
   classes historiques sont conservés : toutes les pages vitrine profitent de
   la refonte sans être réécrites.
   ========================================================================== */

/* Playfair Display — la voix « palace » des titres et des grands chiffres.
   Auto-hébergée (2 × 39 Ko, woff2 variable) : rapide, et aucune requête vers
   Google depuis le navigateur du visiteur (RGPD). */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display.woff2') format('woff2');
    font-weight: 400 900; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display-italic.woff2') format('woff2');
    font-weight: 400 900; font-style: italic; font-display: swap;
}

:root {
    /* Couleurs — l'esprit « rapport de palace » : nuit bleue profonde, papier
       crème, or champagne en accent, une pointe de rouge brique pour l'alerte.
       Le luxe hôtelier : contrastes francs, matières chaudes, rien de criard. */
    --v-primaire: #1e3055;       /* bleu nuit actionnable (liens, boutons) */
    --v-primaire-fonce: #101d36; /* survols, dégradés */
    --v-vif: #c9a65d;            /* or champagne vif : points d'accent animés */
    --v-encre: #3d4655;          /* texte courant */
    --v-titres: #182642;         /* titres, bleu nuit d'encre */
    --v-doux: #6a7382;           /* texte secondaire */
    --v-fond: #f6f1e5;           /* papier crème : le fond de page */
    --v-blanc: #fffefa;          /* cartes et surfaces */
    --v-alt: #efe8d6;            /* sections alternées, crème plus soutenu */
    --v-nuit: #14213a;           /* panneaux sombres : bleu nuit profond */
    --v-nuit-2: #1b2c4b;         /* surfaces posées sur la nuit */
    --v-or: #b08d48;             /* or éditorial : surtitres, filets, numéros */
    --v-or-pale: #eadcb8;        /* or pâle sur fonds sombres */
    --v-bord: #e5dcc5;           /* filets fins, chauds */
    --v-erreur: #a63d2f;         /* rouge brique (alerte, croix) */
    --v-succes: #2e7d5b;
    --v-rayon: 10px;
    --v-rayon-petit: 8px;
    --v-ombre: 0 1px 2px rgba(24, 38, 66, .05), 0 14px 34px rgba(24, 38, 66, .08);
    --v-ombre-haute: 0 2px 8px rgba(24, 38, 66, .06), 0 34px 66px rgba(24, 38, 66, .16);
    /* Corps en police système (lisibilité), titres en Playfair (caractère). */
    --v-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --v-serif: 'Playfair Display', 'Didot', 'Bodoni 72', Georgia, 'Times New Roman', serif;
    --v-grain: none;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.vitrine {
    font-family: var(--v-sans);
    color: var(--v-encre);
    background: var(--v-fond);
    line-height: 1.68;
    font-size: 16.5px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
a { color: var(--v-primaire); text-decoration: underline; text-decoration-color: rgba(176, 141, 72, .55); text-underline-offset: 3px; }
a:hover { color: var(--v-primaire-fonce); text-decoration-color: var(--v-or); }
::selection { background: #ead9b0; }

h1, h2, h3 {
    font-family: var(--v-serif);
    color: var(--v-titres);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -.008em;
}
h1 { font-size: clamp(40px, 5.6vw, 70px); letter-spacing: -.012em; }
h2 { font-size: clamp(28px, 3.8vw, 46px); letter-spacing: -.01em; }
h3 { font-size: 20.5px; letter-spacing: -.004em; }

/* Mot-clé des grands titres : or italique, comme dans un rapport de palace
   (« un problème de visibilité ») — la signature de la maison. */
.v-accent {
    color: #cfac63;
    font-style: italic;
}

/* Lien d'évitement (accessibilité) */
.evitement {
    position: absolute; left: -6000px; top: 0; z-index: 100;
    background: var(--v-titres); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.evitement:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   Boutons — francs mais adoucis, flèche discrète sur les CTA principaux
   -------------------------------------------------------------------------- */
.btn-v {
    display: inline-block;
    padding: 13px 26px;
    border-radius: var(--v-rayon-petit);
    font-weight: 600;
    font-size: 15.5px;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn-v:hover { text-decoration: none; transform: translateY(-1px); }
.btn-v:active { transform: translateY(0); }
.btn-v:focus-visible { outline: 2px solid var(--v-primaire); outline-offset: 2px; }
.btn-v--plein {
    background: linear-gradient(180deg, #223760, var(--v-primaire)); color: #f3eedd; border-color: var(--v-primaire);
    box-shadow: 0 1px 2px rgba(16, 29, 54, .25), 0 10px 22px rgba(16, 29, 54, .22);
}
.btn-v--plein:hover { background: linear-gradient(180deg, #1e3055, var(--v-primaire-fonce)); border-color: var(--v-primaire-fonce); color: #fff; box-shadow: 0 3px 6px rgba(16, 29, 54, .28), 0 16px 30px rgba(16, 29, 54, .26); }
/* Reflet qui balaie le bouton principal au survol (pur CSS). */
.btn-v--plein { position: relative; overflow: hidden; }
.btn-v--plein::before {
    content: ""; position: absolute; top: -2px; bottom: -2px; left: -70%; width: 44%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
    transform: skewX(-18deg); transition: left .5s ease; pointer-events: none;
}
.btn-v--plein:hover::before { left: 130%; }
.btn-v--contour { border-color: #c8bc9e; color: var(--v-titres); background: var(--v-blanc); }
.btn-v--contour:hover { border-color: var(--v-titres); color: var(--v-titres); }
/* Sur les panneaux nuit, le bouton « clair » devient OR — le geste de luxe. */
.btn-v--clair { background: linear-gradient(180deg, #d9b871, #b8944b); color: #16233d; border-color: #b8944b; }
.btn-v--clair:hover { background: linear-gradient(180deg, #e0c07c, #c19c50); border-color: #c19c50; color: #101c33; }
.btn-v--grand { padding: 17px 34px; font-size: 17px; border-radius: 14px; }
.btn-v--bloc { display: block; width: 100%; }
/* Flèche des CTA principaux : dessinée en CSS, glisse au survol */
.btn-v--fleche::after {
    content: "→"; display: inline-block; margin-left: 10px;
    transition: transform .18s ease;
}
.btn-v--fleche:hover::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   En-tête — crème translucide, filet or en tête de page
   -------------------------------------------------------------------------- */
.v-entete {
    position: sticky; top: 0; z-index: 50;
    background: rgba(246, 241, 229, .88);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--v-bord);
}
.v-entete::before {
    /* Signature éditoriale : fin liseré or tout en haut de chaque page */
    content: ""; display: block; height: 3px;
    background: linear-gradient(90deg, #8e6f33, #d4b26a 45%, #8e6f33);
}
.v-entete__in {
    max-width: 1180px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between;
    min-height: 70px; gap: 18px;
}
.v-logo {
    font-family: var(--v-serif); font-size: 27px; font-weight: 600;
    color: var(--v-titres); text-decoration: none; letter-spacing: 0;
}
.v-logo span { color: var(--v-or); }
.v-logo:hover { color: var(--v-titres); }

.v-nav { display: flex; align-items: center; gap: 26px; }
.v-nav > a {
    color: var(--v-encre); font-weight: 500; font-size: 15px;
    text-decoration: none; padding: 24px 0 21px; border-bottom: 2px solid transparent;
}
.v-nav > a:hover { color: var(--v-primaire); }
.v-nav > a.actif { color: var(--v-titres); border-bottom-color: var(--v-or); }
.v-nav__actions { display: flex; align-items: center; gap: 18px; margin-left: 12px; }
.v-nav__actions .btn-v { padding: 10px 18px; font-size: 14.5px; }
.v-nav__connexion { color: var(--v-doux); font-size: 14.5px; white-space: nowrap; text-decoration: none; }
.v-nav__connexion:hover { color: var(--v-titres); text-decoration: underline; }

.v-burger { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.v-burger span { display: block; width: 22px; height: 2px; background: var(--v-titres); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.v-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.v-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
    .v-burger { display: block; }
    .v-nav {
        display: none;
        position: absolute; top: 73px; left: 0; right: 0;
        background: var(--v-fond); border-bottom: 1px solid var(--v-bord);
        flex-direction: column; align-items: flex-start;
        padding: 10px 22px 24px; gap: 2px;
        box-shadow: var(--v-ombre);
    }
    .v-nav.ouvert { display: flex; }
    .v-nav > a { padding: 12px 0; border-bottom: 0; width: 100%; }
    .v-nav__actions { margin: 12px 0 0; flex-direction: column; align-items: flex-start; gap: 14px; width: 100%; }
    .v-nav__actions .btn-v { width: 100%; padding: 13px 18px; }
}

/* Messages flash (erreurs de formulaire, infos) */
.v-flash {
    max-width: 720px; margin: 18px auto 0; padding: 12px 18px;
    border-radius: var(--v-rayon-petit); font-size: 15.5px;
    background: var(--v-blanc); border: 1px solid var(--v-bord); border-left: 3px solid var(--v-doux);
}
.v-flash--erreur { border-left-color: var(--v-erreur); color: #8f3c2e; background: #fbf4f0; }
.v-flash--succes { border-left-color: var(--v-succes); color: #2e6b50; background: #f3f6ee; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.sec { padding: 84px 20px; }
.sec--alt { background: var(--v-alt); }
.sec--blanc { background: var(--v-blanc); border-top: 1px solid var(--v-bord); }
.sec__in { max-width: 1180px; margin: 0 auto; }
.sec__in--etroit { max-width: 780px; }

/* Surtitre éditorial : petites capitales dorées précédées d'un filet.
   (::before en inline-block, PAS de flex : un <strong> dans le texte
   deviendrait un item flex séparé et casserait la ligne.) */
.sec__sur {
    display: block;
    font-family: var(--v-serif); font-style: italic;
    font-size: 18px; font-weight: 500; letter-spacing: .015em;
    color: var(--v-or); margin-bottom: 16px;
}
.sec__sur::before {
    content: ""; display: inline-block; width: 30px; height: 1px;
    background: var(--v-or); vertical-align: 4px; margin-right: 12px;
}

.sec__titre { margin-bottom: 14px; max-width: 800px; }
.sec__intro { color: var(--v-doux); font-size: 17.5px; max-width: 720px; margin-bottom: 42px; }
.centre { text-align: center; }
.centre .sec__titre { margin-left: auto; margin-right: auto; }
.centre .sec__intro { margin-left: auto; margin-right: auto; }
.centre .sec__sur::after {
    content: ""; display: inline-block; width: 30px; height: 1px;
    background: var(--v-or); vertical-align: 4px; margin-left: 12px;
}

/* --------------------------------------------------------------------------
   Héros — ambiance papier, halos vert/or très doux, grain léger
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding: 104px 20px 110px;
    background: var(--v-nuit);
    color: #e8e3d5;
    overflow: hidden;
}
.hero::before {
    /* Couverture « rapport de palace » : nuit bleue, souffles d'or très doux. */
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(900px 520px at 84% -14%, rgba(201, 166, 93, .17), transparent 62%),
        radial-gradient(760px 560px at -6% 112%, rgba(201, 166, 93, .10), transparent 60%),
        linear-gradient(175deg, #0f1a30, #14213a 48%, #182948);
}
.hero::after {
    /* Fine grille qui s'estompe : la trame d'un beau papier. */
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(234, 220, 184, .05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(234, 220, 184, .05) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(1100px 640px at 72% -8%, #000, transparent 74%);
    mask-image: radial-gradient(1100px 640px at 72% -8%, #000, transparent 74%);
}
.hero__in {
    position: relative; z-index: 1;
    max-width: 1180px; margin: 0 auto;
    display: grid; gap: 60px; align-items: center;
}
@media (min-width: 960px) { .hero__in { grid-template-columns: 1.04fr .96fr; } }
/* Les enfants de la grille PEUVENT se serrer : sans ça, un texte insécable
   (l'adresse de la fausse fenêtre) impose sa largeur à toute la colonne et
   fait déborder la page sur mobile. */
.hero__in > * { min-width: 0; }

/* Surtitre du héros : or italique précédé d'un filet, comme dans l'audit. */
.hero__badge {
    display: block;
    font-family: var(--v-serif); font-style: italic;
    font-size: 19px; font-weight: 500; letter-spacing: .015em;
    color: #cfac63; margin-bottom: 24px;
}
.hero__badge::before {
    content: ""; display: inline-block; width: 34px; height: 1px;
    background: #b8944b; vertical-align: 6px; margin-right: 14px;
}
.hero__badge strong { color: #e4c87e; font-weight: 500; }

.hero h1 { margin-bottom: 26px; line-height: 1.08; color: #f6f0df; }
.hero__sous { font-size: 18.5px; line-height: 1.7; color: #aab5c9; max-width: 540px; margin-bottom: 36px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 16px; }
.hero__note { font-size: 14px; color: #8593ab; }
.hero__note a { color: #aab5c9; }
/* Sur la nuit bleue, le bouton principal est OR ; le secondaire, un contour crème. */
.hero .btn-v--plein {
    background: linear-gradient(180deg, #d9b871, #b8944b);
    border-color: #b8944b; color: #16233d;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 14px 30px -8px rgba(201, 166, 93, .45);
}
.hero .btn-v--plein:hover { background: linear-gradient(180deg, #e0c07c, #c19c50); border-color: #c19c50; color: #101c33; }
.hero .btn-v--contour { border-color: rgba(234, 220, 184, .38); color: #ead9b4; background: transparent; }
.hero .btn-v--contour:hover { border-color: #ead9b4; color: #fff; }

/* Points de réassurance sous le héros — le socle de confiance */
.confiance {
    position: relative; z-index: 1;
    max-width: 1180px; margin: 56px auto 0;
    display: grid; gap: 12px 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(234, 220, 184, .20);
    padding-top: 26px;
}
@media (min-width: 860px) { .confiance { grid-template-columns: repeat(4, 1fr); } }
.confiance__item { display: flex; align-items: baseline; gap: 10px; font-size: 14.5px; color: #c9d1e0; font-weight: 500; }
.confiance__item::before {
    content: "✦"; flex-shrink: 0;
    color: #c9a65d; font-size: 13px; transform: translateY(1px);
}

/* Aperçu produit stylisé (pur CSS, pas d'image à charger : LCP imbattable) */
.apercu {
    position: relative;
    /* Carte claire, parfois posée sur un héros NUIT : on fixe l'encre ici,
       sinon les lignes héritent du texte crème et deviennent illisibles. */
    color: var(--v-encre);
    background: var(--v-blanc); border: 1px solid var(--v-bord); border-radius: var(--v-rayon);
    box-shadow: var(--v-ombre-haute); display: grid;
}
.apercu::before {
    /* Carte fantôme derrière l'aperçu : un soupçon de profondeur */
    content: ""; position: absolute; inset: 14px -14px -14px 14px; z-index: -1;
    background: var(--v-alt); border: 1px solid var(--v-bord); border-radius: var(--v-rayon);
    transform: rotate(0);
}
.apercu__titre {
    font-size: 11.5px; color: var(--v-doux); letter-spacing: .12em; text-transform: uppercase;
    font-weight: 700; padding: 15px 22px; border-bottom: 1px solid var(--v-bord);
    background: linear-gradient(180deg, #f7f3e7, #f0ead9); border-radius: var(--v-rayon) var(--v-rayon) 0 0;
}
/* minmax(0, 1fr) : les colonnes PEUVENT se serrer — sans ça, un chiffre large
   (« 12 400 € ») élargit la carte et fait déborder toute la page sur mobile. */
.apercu__kpis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-bottom: 1px solid var(--v-bord); }
.apercu__kpi { padding: 18px 12px 15px 20px; min-width: 0; }
@media (max-width: 500px) {
    .apercu__kpi { padding: 14px 8px 12px 14px; }
    .apercu__kpi b { font-size: 20px; }
    .apercu__kpi span { font-size: 11.5px; }
}
.apercu__kpi + .apercu__kpi { border-left: 1px solid var(--v-bord); }
.apercu__kpi b { display: block; font-size: 26px; font-family: var(--v-serif); color: var(--v-titres); font-weight: 600; letter-spacing: 0; }
.apercu__kpi span { font-size: 12.5px; color: var(--v-doux); }
.apercu__kpi--vert b { color: #a9873f; }
.apercu__ligne {
    display: flex; justify-content: space-between; align-items: center; gap: 10px;
    padding: 14px 22px; font-size: 14.5px;
}
.apercu__ligne + .apercu__ligne { border-top: 1px solid var(--v-bord); }
.apercu__pastille {
    font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 999px;
    background: #f1ead6; color: #7c6224; white-space: nowrap;
}
.apercu__pastille--or { background: #1b2c4b; color: #eadcb8; }
/* Étiquette flottante sur l'aperçu (réservation reçue) — posée sur le coin
   haut droit, où elle ne recouvre que la barre de titre, jamais le contenu. */
.apercu__flottant {
    position: absolute; right: -18px; top: -30px;
    background: var(--v-nuit-2); color: #e8edf7;
    border: 1px solid rgba(234, 220, 184, .25);
    border-radius: 12px; box-shadow: 0 18px 44px -12px rgba(3, 8, 20, .65);
    padding: 12px 18px; font-size: 13.5px; line-height: 1.45;
    transform: rotate(0);
}
.apercu__flottant b { display: inline-flex; align-items: center; gap: 8px; color: var(--v-or-pale); font-family: var(--v-serif); font-weight: 700; }
/* Pastille « en direct » qui pulse doucement devant la notification de résa. */
.apercu__flottant b::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto;
    background: var(--v-vif); box-shadow: 0 0 0 0 rgba(201, 166, 93, .55);
}
@media (prefers-reduced-motion: no-preference) {
    .apercu__flottant b::before { animation: hv-pulse 1.9s ease-out infinite; }
}
@keyframes hv-pulse { to { box-shadow: 0 0 0 10px rgba(201, 166, 93, 0); } }

/* ===== Héros premium : fenêtre de logiciel, graphique qui pousse, cartes
   flottantes et entrée en scène — coupés si l'utilisateur préfère moins
   de mouvement (rien d'indispensable ne repose sur l'animation). ===== */
.hero__visuel { position: relative; z-index: 1; }
.navig {
    /* La fenêtre est claire : on repasse en encre, même posée sur le héros nuit. */
    color: var(--v-encre);
    background: #fffdf7; border: 1px solid rgba(234, 220, 184, .35); border-radius: 14px;
    box-shadow: 0 2px 10px rgba(3, 8, 20, .35), 0 48px 90px -24px rgba(3, 8, 20, .55);
    overflow: hidden;
}
.navig__barre {
    display: flex; align-items: center; gap: 7px; padding: 12px 16px;
    background: linear-gradient(180deg, #fcfaf3, #f3eee0);
    border-bottom: 1px solid var(--v-bord);
}
.navig__pt { width: 11px; height: 11px; border-radius: 50%; background: #e8e2da; }
.navig__pt:nth-child(1) { background: #f4aaa0; }
.navig__pt:nth-child(2) { background: #f4d18a; }
.navig__pt:nth-child(3) { background: #a7dfba; }
.navig__url {
    flex: 1; min-width: 0; margin-left: 10px; text-align: center;
    background: #f1ecdd; border-radius: 8px; padding: 5px 12px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 11.5px; color: var(--v-doux);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* Dans la fenêtre, l'aperçu perd sa propre carte : la fenêtre EST la carte. */
.navig .apercu { border: 0; border-radius: 0; box-shadow: none; }
.navig .apercu::before { display: none; }

/* Graphique « réservations directes » : les barres poussent à l'arrivée. */
.apercu__graph { padding: 16px 22px 14px; border-bottom: 1px solid var(--v-bord); }
.apercu__graph-tete { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; font-size: 12.5px; color: var(--v-doux); margin-bottom: 12px; }
.apercu__graph-tete b { color: #a9873f; font-weight: 700; white-space: nowrap; }
.apercu__barres { display: flex; align-items: flex-end; gap: 8px; height: 76px; }
.apercu__barres i { flex: 1; height: var(--h, 30%); border-radius: 6px 6px 2px 2px; background: #eae4d0; }
.apercu__barres i.on { background: linear-gradient(180deg, #d4b26a, #a98539); box-shadow: 0 6px 14px -6px rgba(201, 166, 93, .6); }

/* Deuxième carte flottante : commissions évitées ce mois-ci. */
.apercu__flottant2 {
    position: absolute; left: -26px; bottom: -34px;
    background: #fff; border: 1px solid var(--v-bord); border-radius: 14px;
    box-shadow: var(--v-ombre-haute); padding: 13px 18px;
    font-size: 13px; color: var(--v-doux); line-height: 1.35;
}
.apercu__flottant2 b { display: block; font-family: var(--v-serif); font-size: 22px; font-weight: 600; letter-spacing: 0; color: #a9873f; }

@media (prefers-reduced-motion: no-preference) {
    /* Entrée en scène au chargement : le texte, puis la fenêtre. */
    .hero__badge, .hero h1, .hero__sous, .hero__ctas, .hero__note { animation: hv-lever .65s cubic-bezier(.2, .65, .25, 1) both; }
    .hero h1 { animation-delay: .07s; }
    .hero__sous { animation-delay: .14s; }
    .hero__ctas { animation-delay: .21s; }
    .hero__note { animation-delay: .28s; }
    .hero__visuel { animation: hv-lever .8s .2s cubic-bezier(.2, .65, .25, 1) both; }
    /* Les barres du graphique poussent l'une après l'autre. */
    .apercu__barres i { transform-origin: bottom; animation: hv-pousse .7s cubic-bezier(.2, .65, .25, 1) both; animation-delay: calc(.55s + var(--d, 0s)); }
    .apercu__barres i:nth-child(2) { --d: .05s; } .apercu__barres i:nth-child(3) { --d: .1s; }
    .apercu__barres i:nth-child(4) { --d: .15s; } .apercu__barres i:nth-child(5) { --d: .2s; }
    .apercu__barres i:nth-child(6) { --d: .25s; } .apercu__barres i:nth-child(7) { --d: .3s; }
    .apercu__barres i:nth-child(8) { --d: .35s; }
    /* Les cartes flottantes… flottent, lentement. */
    .apercu__flottant { animation: hv-flotte 7s 1.4s ease-in-out infinite; }
    .apercu__flottant2 { animation: hv-flotte 8s 1.8s ease-in-out infinite; }
}
@keyframes hv-lever { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes hv-pousse { from { transform: scaleY(.06); } }
@keyframes hv-flotte { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (max-width: 500px) { .apercu__flottant { right: 2px; top: -22px; } .apercu__flottant2 { left: 2px; bottom: -16px; } }

/* --------------------------------------------------------------------------
   Bandeau de repères — les différenciateurs, en gros chiffres serif
   -------------------------------------------------------------------------- */
.reperes { border-top: 1px solid var(--v-bord); background: var(--v-fond); }
.reperes__in {
    max-width: 1180px; margin: 0 auto; padding: 42px 20px;
    display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 860px) { .reperes__in { grid-template-columns: repeat(4, 1fr); } .repere + .repere { border-left: 1px solid var(--v-bord); } }
.repere { text-align: center; }
.repere b {
    display: block; font-family: var(--v-serif); font-weight: 600;
    font-size: clamp(30px, 3.4vw, 46px); color: var(--v-titres); line-height: 1.12;
    letter-spacing: 0;
}
.repere b em { font-style: italic; color: var(--v-or); }
/* Enfant DIRECT (>) : la légende seulement — pas le <span> du compteur animé
   à l'intérieur du <b> (sinon « 49 € » s'affiche en tout petit). */
.repere > span { font-size: 13.5px; color: var(--v-doux); }

/* --------------------------------------------------------------------------
   Cartes (modules, bénéfices) — icônes au trait, jamais d'émoji
   -------------------------------------------------------------------------- */
.cartes { display: grid; gap: 20px; }
@media (min-width: 640px)  { .cartes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .cartes { grid-template-columns: repeat(3, 1fr); } .cartes--2 { grid-template-columns: repeat(2, 1fr); } }
.carte {
    background: var(--v-blanc); border: 1px solid var(--v-bord); border-radius: var(--v-rayon);
    border-top: 2px solid var(--v-nuit-2);
    padding: 30px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.carte:hover { transform: translateY(-5px); box-shadow: var(--v-ombre-haute); border-color: #d3c69e; border-top-color: var(--v-or); }
.carte__ico {
    width: 46px; height: 46px; padding: 11px;
    color: #a9873f; margin-bottom: 18px; display: block;
    background: linear-gradient(140deg, #f6efdd, #fbf7ea);
    border: 1px solid #e6d9ba; border-radius: 10px;
}
.carte h3 { margin-bottom: 8px; }
.carte p { color: var(--v-doux); font-size: 15.5px; }
.carte ul { margin: 10px 0 0 18px; color: var(--v-doux); font-size: 15px; }
.carte ul li { margin-bottom: 4px; }
.carte__lien {
    display: inline-block; margin-top: 14px; font-size: 14.5px; font-weight: 600;
    color: var(--v-primaire); text-decoration: none;
}
.carte__lien::after { content: "→"; display: inline-block; margin-left: 6px; transition: transform .18s ease; }
.carte__lien:hover::after { transform: translateX(4px); }
.carte__bientot {
    display: inline-block; margin-bottom: 12px; font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    background: #f1ead6; color: #7c6224; border-radius: 999px; padding: 3px 10px;
}

/* Listes à coches / croix */
.coches { list-style: none; display: grid; gap: 11px; }
.coches li { padding-left: 27px; position: relative; }
.coches li::before {
    /* Le losange or ✦ de l'audit : la ponctuation de la maison. */
    content: "✦"; position: absolute; left: 1px; top: 1px;
    color: var(--v-or); font-size: 13px;
}
.coches--croix li::before { content: "✕"; color: var(--v-erreur); font-size: 14px; font-weight: 600; }

/* --------------------------------------------------------------------------
   Avant / Après
   -------------------------------------------------------------------------- */
.avant-apres { display: grid; gap: 20px; }
@media (min-width: 860px) { .avant-apres { grid-template-columns: 1fr 1fr; } }
.avant-apres__col { border-radius: var(--v-rayon); padding: 34px; }
.avant-apres__col h3 {
    margin-bottom: 18px; font-size: 13px; font-family: var(--v-sans);
    letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
}
.avant-apres__avant { background: var(--v-blanc); border: 1px solid var(--v-bord); }
.avant-apres__avant h3 { color: var(--v-doux); padding-bottom: 12px; border-bottom: 1px solid var(--v-bord); }
.avant-apres__apres { background: var(--v-nuit); color: #e9e6db; position: relative; overflow: hidden; }
.avant-apres__apres::after { content: ""; position: absolute; inset: 0; background: radial-gradient(560px 320px at 100% 0%, rgba(201, 166, 93, .16), transparent 60%); pointer-events: none; }
.avant-apres__apres > * { position: relative; z-index: 1; }
.avant-apres__apres h3 { color: var(--v-or-pale); padding-bottom: 12px; border-bottom: 1px solid rgba(236, 223, 198, .25); }
.avant-apres__apres .coches li::before { color: #d3b878; }
.avant-apres__apres .coches { color: #c9d2e2; }
.avant-apres__avant .coches { color: var(--v-doux); }

/* --------------------------------------------------------------------------
   La méthode en 5 étapes — numérotation serif, filets
   -------------------------------------------------------------------------- */
.etapes { counter-reset: etape; display: grid; max-width: 800px; }
.etape {
    counter-increment: etape;
    position: relative; padding: 0 0 36px 80px;
}
.etape::before {
    content: counter(etape, decimal-leading-zero);
    position: absolute; left: 0; top: -6px;
    font-family: var(--v-serif); font-style: italic; font-size: 40px; font-weight: 500;
    letter-spacing: .02em; font-variant-numeric: lining-nums;
    color: var(--v-or);
}
.etape h3 { margin-bottom: 6px; font-size: 20px; }
.etape p { color: var(--v-doux); font-size: 15.5px; max-width: 620px; }
.etape + .etape { border-top: 1px solid var(--v-bord); padding-top: 30px; }
.etape + .etape::before { top: 24px; }

/* --------------------------------------------------------------------------
   Chronologie de mise en route — le « en ligne en quelques jours »
   -------------------------------------------------------------------------- */
.chrono { display: grid; gap: 22px; counter-reset: jalon; }
@media (min-width: 860px) { .chrono { grid-template-columns: repeat(4, 1fr); gap: 26px; } }
.jalon { position: relative; padding-top: 22px; }
.jalon::before {
    /* Point sur la ligne du temps */
    content: ""; position: absolute; top: 0; left: 2px;
    width: 11px; height: 11px; border-radius: 50%;
    background: var(--v-or); box-shadow: 0 0 0 4px rgba(201, 166, 93, .22);
}
.jalon::after {
    /* Trait qui relie les jalons entre eux */
    content: ""; position: absolute; top: 5px; left: 22px; right: -26px; height: 1px;
    background: var(--v-bord);
}
.jalon:last-child::after { display: none; }
@media (max-width: 859px) {
    .jalon { padding: 0 0 0 30px; }
    .jalon::before { top: 7px; left: 0; }
    .jalon::after { top: 24px; left: 5px; right: auto; bottom: -22px; width: 1px; height: auto; }
}
.jalon__quand {
    display: block; font-size: 12px; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--v-or); margin-bottom: 8px;
}
.jalon h3 { font-size: 18px; margin-bottom: 6px; }
.jalon p { font-size: 14.5px; color: var(--v-doux); }

/* --------------------------------------------------------------------------
   Simulateur de marge
   -------------------------------------------------------------------------- */
.simulateur {
    display: grid; gap: 0; background: var(--v-blanc); border: 1px solid var(--v-bord);
    border-radius: var(--v-rayon); box-shadow: var(--v-ombre); overflow: hidden;
}
@media (min-width: 860px) { .simulateur { grid-template-columns: 1.1fr .9fr; } }
.simulateur__champs { display: grid; gap: 16px; padding: 32px; align-content: start; }
@media (min-width: 560px) { .simulateur__champs { grid-template-columns: 1fr 1fr; } }
.simulateur__resultat {
    background: var(--v-nuit); color: #c9d2e2; position: relative; overflow: hidden;
    padding: 32px; display: flex; flex-direction: column; gap: 14px; justify-content: center;
}
.simulateur__resultat::after { content: ""; position: absolute; inset: 0; background: radial-gradient(520px 340px at 110% 0%, rgba(201, 166, 93, .18), transparent 58%); pointer-events: none; }
.simulateur__resultat > * { position: relative; z-index: 1; }
.simulateur__resultat h3 {
    color: var(--v-or-pale); font-size: 12.5px; font-family: var(--v-sans);
    letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
}
.simulateur__gros { font-family: var(--v-serif); font-size: clamp(36px, 4.6vw, 58px); color: #e4c87e; line-height: 1.06; font-weight: 500; letter-spacing: 0; }
.simulateur__ligne { display: flex; justify-content: space-between; gap: 12px; font-size: 15px; border-top: 1px solid rgba(234, 220, 184, .18); padding-top: 12px; }
.simulateur__ligne b { color: #fff; font-family: var(--v-serif); font-weight: 600; }
.simulateur__note { font-size: 13px; color: #93a0b8; }
.simulateur__resultat .btn-v--clair { margin-top: 6px; }
input[type="range"] { accent-color: var(--v-primaire); }

/* --------------------------------------------------------------------------
   Formulaires (audit, inscription)
   -------------------------------------------------------------------------- */
.v-form { display: grid; gap: 16px; background: var(--v-blanc); border: 1px solid var(--v-bord); border-radius: var(--v-rayon); box-shadow: var(--v-ombre); padding: 28px; }
@media (min-width: 640px) { .v-form { padding: 38px; } .v-form__2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } }
.v-champ label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--v-titres); }
.v-champ .facultatif { color: var(--v-doux); font-weight: 400; }
.v-champ input, .v-champ select, .v-champ textarea {
    width: 100%; padding: 12px 14px; border: 1px solid #cbc4b0;
    border-radius: 8px; font: inherit; font-size: 16px; background: #fff; color: var(--v-encre);
    transition: border-color .12s ease, box-shadow .12s ease;
}
.v-champ input:focus, .v-champ select:focus, .v-champ textarea:focus {
    outline: none; border-color: var(--v-primaire);
    box-shadow: 0 0 0 3px rgba(30, 48, 85, .15);
}
.v-form__note { font-size: 13.5px; color: var(--v-doux); }
/* Piège à robots : invisible pour les humains, sans display:none (les robots l'évitent). */
.hp-champ { position: absolute; left: -6000px; top: -6000px; }

/* Mise en page « formulaire + panneau de réassurance » (page audit) */
.form-duo { display: grid; gap: 26px; align-items: start; }
@media (min-width: 960px) { .form-duo { grid-template-columns: .8fr 1.2fr; } }
.form-duo__aside {
    background: var(--v-nuit); color: #c9d2e2; border-radius: var(--v-rayon);
    padding: 32px; position: relative; overflow: hidden;
}
.form-duo__aside::after { content: ""; position: absolute; inset: 0; background: radial-gradient(480px 320px at 100% 0%, rgba(201, 166, 93, .16), transparent 60%); pointer-events: none; }
.form-duo__aside > * { position: relative; z-index: 1; }
.form-duo__aside h2 { color: #fff; font-size: 23px; margin-bottom: 16px; }
.form-duo__aside .coches { font-size: 15px; }
.form-duo__aside .coches li::before { color: #d3b878; }
.form-duo__aside p { font-size: 14px; color: #93a0b8; margin-top: 18px; }
@media (min-width: 960px) { .form-duo__aside { position: sticky; top: 96px; } }

/* Choix de formule (inscription) */
.choix-formules { display: grid; gap: 10px; }
@media (min-width: 640px) { .choix-formules { grid-template-columns: repeat(3, 1fr); } }
.choix-formule { position: relative; }
.choix-formule input { position: absolute; opacity: 0; }
.choix-formule label {
    display: block; border: 1px solid #cbc4b0; border-radius: var(--v-rayon-petit);
    padding: 14px; cursor: pointer; background: #fff; height: 100%;
    transition: border-color .12s ease, background-color .12s ease;
}
.choix-formule input:checked + label { border-color: var(--v-primaire); background: #f5efdf; box-shadow: inset 0 0 0 1px var(--v-primaire); }
.choix-formule input:focus-visible + label { outline: 2px solid var(--v-primaire); outline-offset: 2px; }
.choix-formule b { display: block; font-size: 15.5px; color: var(--v-titres); }
.choix-formule span { font-size: 13.5px; color: var(--v-doux); }

/* --------------------------------------------------------------------------
   Tarifs
   -------------------------------------------------------------------------- */
.tarifs-grille { display: grid; gap: 22px; align-items: stretch; }
@media (min-width: 900px) { .tarifs-grille { grid-template-columns: repeat(3, 1fr); } }
.tarif {
    background: var(--v-blanc); border: 1px solid var(--v-bord); border-radius: var(--v-rayon);
    padding: 34px 30px; display: flex; flex-direction: column; gap: 14px; position: relative;
    transition: transform .22s ease, box-shadow .22s ease;
}
.tarif:hover { transform: translateY(-4px); box-shadow: var(--v-ombre); }
/* La formule vedette devient une carte NUIT : bleu profond, or, crème —
   la carte « signature » au milieu des cartes papier. */
.tarif--star {
    background: linear-gradient(170deg, #1b2c4b, var(--v-nuit) 70%);
    border-color: #2a3c63; color: #c9d2e2;
    box-shadow: 0 0 0 4px rgba(201, 166, 93, .14), var(--v-ombre-haute);
}
.tarif--star h3, .tarif--star .tarif__nom { color: #f6f0df; }
.tarif--star .tarif__accroche { color: #a9b4c9; }
.tarif--star .tarif__prix { color: #e4c87e; }
.tarif--star .tarif__prix small { color: #8593ab; }
.tarif--star .tarif__annuel { color: #8593ab; border-bottom-color: rgba(234, 220, 184, .18); }
/* Classe doublée (.tarif.tarif--star) : sans ça, « .tarif .coches » écrite plus
   bas gagne à égalité et repeint la liste en encre sombre… sur fond sombre. */
.tarif.tarif--star .coches { color: #d3dbe8; }
.tarif.tarif--star .coches li::before { color: #d3b878; }
/* Le bouton de la carte nuit (et du héros) est or : bien visible sur le bleu. */
.tarif--star .btn-v--plein {
    background: linear-gradient(180deg, #d9b871, #b8944b);
    border-color: #b8944b; color: #16233d;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 14px 30px -8px rgba(201, 166, 93, .45);
}
.tarif--star .btn-v--plein:hover { background: linear-gradient(180deg, #e0c07c, #c19c50); border-color: #c19c50; color: #101c33; }
@media (min-width: 900px) {
    .tarif--star { transform: scale(1.03); }
    .tarif--star:hover { transform: scale(1.03) translateY(-4px); }
}
.tarif__populaire {
    position: absolute; top: 0; left: 30px; transform: translateY(-50%);
    background: linear-gradient(120deg, #b8944b, #d4b26a); color: #16233d; font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.tarif h3 { font-size: 24px; }
/* Titre de formule en h2 (page tarifs) : même habit que le h3 des cartes. */
.tarif__nom { font-size: 24px; letter-spacing: -.004em; margin-bottom: 8px; }
.tarif__accroche { color: var(--v-doux); font-size: 15px; min-height: 44px; }
.tarif__prix { font-family: var(--v-serif); font-size: 46px; font-weight: 500; color: var(--v-titres); line-height: 1; }
.tarif__prix small { font-size: 15px; color: var(--v-doux); font-family: var(--v-sans); font-weight: 400; }
.tarif__annuel { font-size: 13.5px; color: var(--v-doux); border-bottom: 1px solid var(--v-bord); padding-bottom: 16px; }
.tarif .coches { font-size: 15px; color: var(--v-encre); flex: 1; }
.tarif .btn-v { margin-top: 8px; }

/* --------------------------------------------------------------------------
   Tableau exemple (suivi réputation)
   -------------------------------------------------------------------------- */
.v-tableau-scroll { overflow-x: auto; }
.v-tableau { width: 100%; border-collapse: collapse; background: var(--v-blanc); border: 1px solid var(--v-bord); font-size: 15px; }
.v-tableau th, .v-tableau td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--v-bord); white-space: nowrap; }
.v-tableau th { background: var(--v-alt); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--v-doux); }
.v-tableau tr:last-child td { border-bottom: 0; }
.v-tableau .tendance-haut { color: var(--v-succes); font-weight: 700; }

/* --------------------------------------------------------------------------
   FAQ — liste éditoriale à filets, sans boîtes
   -------------------------------------------------------------------------- */
.faq { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--v-bord); }
.faq details { border-bottom: 1px solid var(--v-bord); }
.faq summary {
    cursor: pointer; font-weight: 600; font-size: 16.5px; color: var(--v-titres);
    padding: 19px 4px; list-style: none; display: flex; justify-content: space-between; gap: 14px; align-items: baseline;
}
.faq summary:hover { color: var(--v-primaire); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--v-serif); font-size: 23px; color: var(--v-or); flex-shrink: 0; line-height: 1; transition: transform .18s ease; }
.faq details[open] summary::after { content: "+"; transform: rotate(45deg); }
.faq details > p { padding: 0 4px 20px; color: var(--v-doux); font-size: 15.5px; max-width: 700px; }

/* --------------------------------------------------------------------------
   Bandeau CTA — vert nuit, halo or, grain
   -------------------------------------------------------------------------- */
.bandeau-cta {
    position: relative; overflow: hidden;
    background: linear-gradient(165deg, #0f1a30, #14213a 55%, #1b2c4b); color: #d8dee9; text-align: center; padding: 96px 20px;
}
.bandeau-cta::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(720px 380px at 50% -20%, rgba(201, 166, 93, .20), transparent 65%);
}
.bandeau-cta::after { content: ""; position: absolute; inset: 0; background-image: var(--v-grain); opacity: .6; pointer-events: none; }
.bandeau-cta > * { position: relative; z-index: 1; }
.bandeau-cta h2 { color: #f6f0df; margin-bottom: 12px; }
.bandeau-cta p { color: #a9b4c9; max-width: 620px; margin: 0 auto 30px; font-size: 17px; }
.bandeau-cta__boutons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.bandeau-cta .btn-v--contour { border-color: rgba(255, 255, 255, .38); color: #fff; background: transparent; }
.bandeau-cta .btn-v--contour:hover { border-color: #fff; color: #fff; }
.bandeau-cta__note { font-size: 13.5px; color: #8593ab; margin-top: 18px; }

/* --------------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------------- */
.v-pied { background: #101b30; color: #a9b4c9; padding: 60px 20px 0; border-top: 1px solid rgba(234, 220, 184, .12); }
.v-pied__in { max-width: 1180px; margin: 0 auto; display: grid; gap: 36px; padding-bottom: 44px; }
@media (min-width: 860px) { .v-pied__in { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.v-pied__col .v-pied__titre {
    color: var(--v-or-pale); font-family: var(--v-sans); font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px;
}
.v-pied__col a { display: block; color: #b9c3d6; font-size: 14.5px; margin-bottom: 10px; text-decoration: none; }
.v-pied__col a:hover { color: #fff; text-decoration: underline; }
.v-pied__marque p { font-size: 14.5px; max-width: 300px; margin-top: 12px; }
.v-logo--pied { color: #fff; font-size: 24px; }
.v-logo--pied span { color: #d3b878; }
.v-pied__bas {
    max-width: 1180px; margin: 0 auto; border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 18px 0 28px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 13px;
}

/* --------------------------------------------------------------------------
   Barre CTA fixe sur mobile — apparaît après le héros, jamais dans le tunnel
   -------------------------------------------------------------------------- */
.cta-fixe {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: none;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(246, 241, 229, .96);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border-top: 1px solid var(--v-bord);
    transform: translateY(105%); transition: transform .25s ease;
}
.cta-fixe.visible { transform: translateY(0); }
.cta-fixe .btn-v { width: 100%; }
@media (max-width: 720px) { .cta-fixe { display: block; } }

/* --------------------------------------------------------------------------
   Révélation au scroll — sobre, respectueuse de prefers-reduced-motion.
   Ne masque JAMAIS le contenu sans JS : les règles ne s'appliquent que
   lorsque marketing.js a posé .js-anim sur <html>.
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
    .js-anim .rvl { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .65, .25, 1); }
    .js-anim .rvl.vu { opacity: 1; transform: none; }
    .js-anim .rvl-2 { transition-delay: .1s; }
    .js-anim .rvl-3 { transition-delay: .2s; }
    .js-anim .rvl-4 { transition-delay: .3s; }
}

/* --------------------------------------------------------------------------
   Divers
   -------------------------------------------------------------------------- */
.mt-30 { margin-top: 30px; }
.mt-16 { margin-top: 16px; }
.texte-doux { color: var(--v-doux); }
.merci-carte { background: var(--v-blanc); border: 1px solid var(--v-bord); border-radius: var(--v-rayon); box-shadow: var(--v-ombre); padding: 52px 34px; text-align: center; }
.merci-carte h1 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
.merci-carte p { color: var(--v-doux); max-width: 520px; margin: 0 auto 12px; }
.merci-carte .merci__ico { width: 46px; height: 46px; color: var(--v-primaire); margin: 0 auto 16px; display: block; }

/* Prose des pages SEO */
.prose { max-width: 760px; }
.prose h2 { margin: 44px 0 12px; }
.prose h3 { margin: 26px 0 8px; }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 0 0 14px 22px; }
.prose li { margin-bottom: 6px; }
