/* ==========================================================================
   MonSuiviFlotte, site vitrine. Systeme visuel premium.
   DA : kit de marque (bleu #0f62e8, encre #16131f, ciel #f4f7fb,
   Space Grotesk + Space Mono, rayons 22/12/99, symbole "la cible").
   Principes : surfaces a double lisere, ombres ambiantes diffuses jamais dures,
   respiration large, revelations au defilement, mouvement a ressort.
   ========================================================================== */

:root {
    --bleu: #0f62e8;
    --bleu-sombre: #0a44a8;
    --bleu-vif: #3d86ff;
    --encre: #16131f;
    --encre-douce: #4a4658;
    --gris: #6b7280;
    --ciel: #f4f7fb;
    --ciel-profond: #e9eff9;
    --blanc: #fff;
    --vert: #0d9e53;
    --rouge: #d92c3a;

    /* Rayons concentriques : la coque exterieure et le coeur interieur */
    --r-coque: 28px;
    --r-coeur: 21px;
    --r-moyen: 14px;
    --r-pilule: 99px;

    /* Ombres ambiantes : jamais de noir franc, toujours teintees et tres diffuses */
    --ombre-douce: 0 2px 4px rgba(22, 19, 31, .03), 0 12px 32px -12px rgba(15, 98, 232, .10);
    --ombre-flottante: 0 4px 8px rgba(22, 19, 31, .03), 0 28px 60px -24px rgba(15, 98, 232, .22);
    --ombre-portee: 0 8px 16px rgba(22, 19, 31, .04), 0 48px 96px -32px rgba(15, 98, 232, .28);
    --lisere: rgba(22, 19, 31, .07);
    --lisere-clair: rgba(255, 255, 255, .7);

    --elan: cubic-bezier(.32, .72, 0, 1);
    --largeur: 1220px;
    --gouttiere: clamp(20px, 4vw, 40px);
    --section: clamp(84px, 11vw, 168px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
    color: var(--encre);
    background: var(--blanc);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* Maillage lumineux tres subtil, fixe, jamais dans un conteneur qui defile */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(46rem 30rem at 88% -8%, rgba(61, 134, 255, .11), transparent 62%),
        radial-gradient(38rem 26rem at 4% 6%, rgba(15, 98, 232, .07), transparent 60%);
}
body > * { position: relative; z-index: 1; }

/* --- Typographie ---------------------------------------------------------- */

.v-titre-geant {
    font-size: clamp(34px, 4.6vw, 57px);
    line-height: 1.02;
    letter-spacing: -.032em;
    font-weight: 700;
}
.v-titre-section {
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.04;
    letter-spacing: -.03em;
    font-weight: 700;
}
.v-titre-carte {
    font-size: clamp(19px, 2vw, 22px);
    line-height: 1.22;
    letter-spacing: -.015em;
    font-weight: 600;
}
.v-chapeau {
    font-size: clamp(16px, 1.55vw, 19px);
    line-height: 1.62;
    color: var(--encre-douce);
    max-width: 60ch;
}
.v-texte { font-size: 15.5px; line-height: 1.68; color: var(--encre-douce); }
.v-mono {
    font-family: "Space Mono", ui-monospace, monospace;
    font-variant-numeric: tabular-nums;
}
.v-degrade {
    background: linear-gradient(104deg, var(--bleu) 8%, var(--bleu-vif) 92%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Etiquette de section : capitales monospace, sans puce */
.v-etiquette {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Space Mono", monospace;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--bleu);
    background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(244, 247, 251, .75));
    border: 1px solid var(--lisere);
    box-shadow: var(--ombre-douce), inset 0 1px 0 var(--lisere-clair);
    padding: 7px 15px;
    border-radius: var(--r-pilule);
    margin-bottom: 22px;
}
.v-etiquette svg { width: 13px; height: 13px; stroke-width: 1.8; fill: none; stroke: currentColor; }

/* --- Trame et sections ---------------------------------------------------- */

.v-large { max-width: var(--largeur); margin: 0 auto; padding: 0 var(--gouttiere); }
.v-section { padding: var(--section) 0; }
.v-section-ciel {
    background: linear-gradient(180deg, var(--blanc), var(--ciel) 22%, var(--ciel) 78%, var(--blanc));
}
.v-entete-section { max-width: 720px; margin-bottom: clamp(44px, 6vw, 76px); }
.v-entete-section.centre { margin-left: auto; margin-right: auto; text-align: center; }
.v-entete-section.centre .v-chapeau { margin: 18px auto 0; }
.v-entete-section .v-chapeau { margin-top: 18px; }

/* --- Surfaces a double lisere --------------------------------------------- */

.v-carte {
    background: linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(233, 239, 249, .52));
    border: 1px solid var(--lisere);
    border-radius: var(--r-coque);
    padding: 7px;
    box-shadow: var(--ombre-douce);
    transition: transform .6s var(--elan), box-shadow .6s var(--elan);
    height: 100%;
}
.v-carte-int {
    background: var(--blanc);
    border-radius: var(--r-coeur);
    padding: clamp(24px, 2.6vw, 34px);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}
.v-carte:hover { transform: translateY(-5px); box-shadow: var(--ombre-flottante); }

/* Pastille d'icone : trait fin, jamais epais */
.v-pastille {
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: var(--r-moyen);
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, rgba(15, 98, 232, .10), rgba(61, 134, 255, .05));
    border: 1px solid rgba(15, 98, 232, .14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
    margin-bottom: 20px;
}
.v-pastille svg { width: 21px; height: 21px; stroke: var(--bleu); stroke-width: 1.5; fill: none; }
.v-carte-int .v-titre-carte { margin-bottom: 11px; }
.v-carte-int .v-texte { flex: 1; }

.v-lien-fleche {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--bleu);
    text-decoration: none;
}
.v-lien-fleche i {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(15, 98, 232, .09);
    display: grid; place-items: center;
    font-style: normal;
    font-size: 12px;
    transition: transform .5s var(--elan), background .3s;
}
.v-lien-fleche:hover i { transform: translate(3px, -1px); background: rgba(15, 98, 232, .18); }

/* --- Boutons : pilule, icone imbriquee dans son propre cercle ------------- */

.v-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.01em;
    padding: 12px 14px 12px 24px;
    border-radius: var(--r-pilule);
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: transform .5s var(--elan), box-shadow .5s var(--elan), background .3s;
}
.v-btn-cercle {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: grid; place-items: center;
    flex: none;
    transition: transform .5s var(--elan), background .3s;
}
.v-btn-cercle svg { width: 14px; height: 14px; stroke-width: 1.8; fill: none; }

.v-btn-primaire {
    background: linear-gradient(180deg, var(--bleu-vif), var(--bleu) 46%, var(--bleu-sombre));
    color: var(--blanc);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 14px 30px -12px rgba(15, 98, 232, .62);
}
.v-btn-primaire .v-btn-cercle { background: rgba(255, 255, 255, .18); }
.v-btn-primaire .v-btn-cercle svg { stroke: var(--blanc); }
.v-btn-primaire:hover { box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 20px 40px -12px rgba(15, 98, 232, .7); }
.v-btn-primaire:hover .v-btn-cercle { transform: translate(3px, -1px); background: rgba(255, 255, 255, .3); }
.v-btn:active { transform: scale(.98); }

.v-btn-secondaire {
    background: rgba(255, 255, 255, .82);
    color: var(--encre);
    border: 1px solid var(--lisere);
    box-shadow: var(--ombre-douce), inset 0 1px 0 var(--lisere-clair);
}
.v-btn-secondaire .v-btn-cercle { background: rgba(22, 19, 31, .06); }
.v-btn-secondaire .v-btn-cercle svg { stroke: var(--encre); }
.v-btn-secondaire:hover { box-shadow: var(--ombre-flottante); }
.v-btn-secondaire:hover .v-btn-cercle { transform: translate(3px, -1px); background: rgba(22, 19, 31, .1); }

/* --- Navigation : ilot flottant detache ---------------------------------- */

.v-nav-zone {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 60;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid var(--lisere);
    transition: box-shadow .5s var(--elan);
}
.v-nav-zone.condensee { box-shadow: 0 1px 20px -8px rgba(15, 98, 232, .28); }
.v-nav {
    max-width: var(--largeur);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 12px var(--gouttiere);
}
/* Le contenu commence sous la barre fixe */
main { padding-top: 68px; }
.v-logo {
    display: flex; align-items: center; gap: 11px;
    text-decoration: none; color: var(--encre);
    font-size: 18px; font-weight: 700; letter-spacing: -.03em; line-height: 1;
    flex: none;
}
.v-logo img { width: 30px; height: 30px; }
.v-logo b { color: var(--bleu); font-weight: 700; }
.v-logo-bloc { display: flex; flex-direction: column; }
.v-logo-baseline {
    font-size: 11px; font-weight: 600; letter-spacing: .01em;
    color: var(--gris); margin-top: 4px; white-space: nowrap;
}
.v-nav-liens { display: flex; align-items: center; gap: 22px; margin: 0 auto; }
.v-nav-lien {
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--encre-douce);
    padding: 6px 0;
    transition: color .3s;
    white-space: nowrap;
}
.v-nav-lien:hover, .v-nav-lien.actif { color: var(--bleu); }
.v-nav-actions { display: flex; align-items: center; gap: 8px; flex: none; }
.v-nav-connexion {
    text-decoration: none; font-size: 14.5px; font-weight: 500;
    color: var(--encre-douce); padding: 9px 12px;
    transition: color .3s;
}
.v-nav-connexion:hover { color: var(--bleu); }
.v-nav .v-btn { font-size: 14px; padding: 10px 12px 10px 20px; }
.v-nav .v-btn-cercle { width: 26px; height: 26px; }

/* Bouton menu : les trois traits se transforment en croix */
.v-burger {
    display: none;
    width: 42px; height: 42px;
    border: 1px solid var(--lisere);
    background: rgba(255, 255, 255, .8);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    flex: none;
}
.v-burger i {
    position: absolute;
    left: 12px;
    width: 18px; height: 1.6px;
    background: var(--encre);
    border-radius: 2px;
    transition: transform .55s var(--elan), opacity .3s var(--elan);
}
.v-burger i:nth-child(1) { top: 15px; }
.v-burger i:nth-child(2) { top: 20px; }
.v-burger i:nth-child(3) { top: 25px; }
.v-burger.ouvert i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.v-burger.ouvert i:nth-child(2) { opacity: 0; transform: scaleX(.4); }
.v-burger.ouvert i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Panneau plein ecran, liens reveles en cascade */
.v-menu {
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 96px var(--gouttiere) 40px;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s var(--elan), visibility .5s;
}
.v-menu.ouvert { opacity: 1; visibility: visible; }
.v-menu a {
    font-size: clamp(28px, 8vw, 44px);
    font-weight: 700;
    letter-spacing: -.03em;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid var(--lisere);
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s var(--elan), transform .6s var(--elan);
}
.v-menu.ouvert a { opacity: 1; transform: translateY(0); }
.v-menu.ouvert a:nth-of-type(1) { transition-delay: .06s; }
.v-menu.ouvert a:nth-of-type(2) { transition-delay: .11s; }
.v-menu.ouvert a:nth-of-type(3) { transition-delay: .16s; }
.v-menu.ouvert a:nth-of-type(4) { transition-delay: .21s; }
.v-menu.ouvert a:nth-of-type(5) { transition-delay: .26s; }
.v-menu.ouvert a:nth-of-type(6) { transition-delay: .31s; }
.v-menu .v-btn { margin-top: 28px; align-self: flex-start; border-bottom: none; }

/* --- Hero : la carte du produit en direct -------------------------------- */

.v-hero { position: relative; padding: clamp(28px, 4vw, 52px) 0 clamp(48px, 6vw, 80px); }
.v-hero-trame {
    max-width: var(--largeur);
    margin: 0 auto;
    padding: 0 var(--gouttiere);
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: clamp(32px, 3.4vw, 52px);
    align-items: center;
}
.v-hero .v-etiquette { margin-bottom: 16px; }
.v-hero-titre { margin-bottom: 16px; }
.v-hero .v-chapeau { max-width: 46ch; font-size: clamp(15.5px, 1.4vw, 17.5px); }
/* Les appels a l'action restent hauts : marges serrees, jamais repousses en bas */
.v-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; align-items: center; }

/* Rassurances : trois faits, en monospace */
.v-hero-faits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--lisere);
}
.v-hero-fait { display: flex; align-items: baseline; gap: 8px; }
.v-hero-fait b {
    font-family: "Space Mono", monospace;
    font-size: 17px;
    font-weight: 700;
    color: var(--bleu);
    letter-spacing: -.02em;
}
.v-hero-fait span { font-size: 13px; color: var(--gris); }

/* Cadre de la carte : coque, coeur, et la carte dedans */
.v-carte-cadre { position: relative; }
.v-carte-coque {
    background: linear-gradient(180deg, rgba(255, 255, 255, .8), rgba(233, 239, 249, .6));
    border: 1px solid var(--lisere);
    border-radius: var(--r-coque);
    padding: 8px;
    box-shadow: var(--ombre-portee);
}
.v-carte-coeur {
    position: relative;
    border-radius: var(--r-coeur);
    overflow: hidden;
    background: var(--ciel);
    box-shadow: inset 0 0 0 1px rgba(22, 19, 31, .06);
}
.v-carte-live { height: clamp(320px, 40vh, 420px); width: 100%; }
.v-carte-live.leaflet-container { background: var(--ciel); font-family: inherit; }

/* Barre d'etat posee sur la carte */
.v-carte-barre {
    position: absolute;
    top: 12px; left: 12px; right: 12px;
    z-index: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: var(--r-pilule);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--lisere);
    box-shadow: var(--ombre-douce);
    font-size: 12.5px;
    font-weight: 500;
}
.v-carte-barre .v-mono { color: var(--gris); font-size: 11px; margin-left: auto; font-weight: 400; }
.v-pouls {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--vert);
    animation: pouls 2.2s infinite;
    flex: none;
}
@keyframes pouls {
    0% { box-shadow: 0 0 0 0 rgba(13, 158, 83, .45); }
    70% { box-shadow: 0 0 0 9px rgba(13, 158, 83, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 158, 83, 0); }
}

/* Marqueurs dessines en CSS, aucune image externe */
.v-marqueur { position: relative; width: 34px; height: 34px; }
.v-marqueur-halo {
    position: absolute; inset: -7px;
    border-radius: 50%;
    background: rgba(15, 98, 232, .16);
    animation: halo 2.6s ease-out infinite;
}
@keyframes halo {
    0% { transform: scale(.55); opacity: .85; }
    100% { transform: scale(1.5); opacity: 0; }
}
.v-marqueur-corps {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--bleu-vif), var(--bleu) 55%, var(--bleu-sombre));
    border: 2.5px solid #fff;
    box-shadow: 0 6px 16px -4px rgba(15, 98, 232, .7);
    display: grid; place-items: center;
}
.v-marqueur-corps svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 1.8; fill: none; }
.v-marqueur.arret .v-marqueur-corps {
    background: linear-gradient(180deg, #94a3b8, #64748b);
    box-shadow: 0 6px 14px -4px rgba(71, 85, 105, .55);
}
.v-marqueur.arret .v-marqueur-halo { display: none; }

.v-poi { width: 26px; height: 26px; position: relative; }
.v-poi-corps {
    position: absolute; inset: 0;
    border-radius: 50% 50% 50% 4px;
    transform: rotate(-45deg);
    background: linear-gradient(180deg, #fff, #eef3fb);
    border: 2px solid var(--bleu);
    box-shadow: 0 4px 12px -3px rgba(15, 98, 232, .45);
}

/* Cartouches d'evenements qui apparaissent sur la carte */
.v-evenements {
    position: absolute;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}
.v-evenement {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 15px;
    border-radius: var(--r-moyen);
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--lisere);
    box-shadow: var(--ombre-flottante);
    opacity: 0;
    transform: translateY(14px) scale(.97);
    transition: opacity .6s var(--elan), transform .6s var(--elan);
}
.v-evenement.visible { opacity: 1; transform: none; }
.v-evenement-icone {
    width: 32px; height: 32px; flex: none;
    border-radius: 9px;
    display: grid; place-items: center;
}
.v-evenement-icone svg { width: 16px; height: 16px; stroke-width: 1.7; fill: none; }
.v-evenement.passage .v-evenement-icone { background: rgba(13, 158, 83, .12); }
.v-evenement.passage .v-evenement-icone svg { stroke: var(--vert); }
.v-evenement.alerte .v-evenement-icone { background: rgba(217, 44, 58, .1); }
.v-evenement.alerte .v-evenement-icone svg { stroke: var(--rouge); }
.v-evenement-texte { min-width: 0; }
.v-evenement-titre { font-size: 13.5px; font-weight: 600; letter-spacing: -.01em; }
.v-evenement-detail { font-size: 11.5px; color: var(--gris); font-family: "Space Mono", monospace; }

/* --- Bento asymetrique --------------------------------------------------- */

.v-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(14px, 1.4vw, 20px);
}
.v-bento > * { grid-column: span 2; }
.v-bento > .large { grid-column: span 3; }
.v-bento > .pleine { grid-column: span 6; }

/* Carte etendue : contenu a gauche, apercu a droite */
.v-etendue .v-carte-int { flex-direction: row; align-items: center; gap: clamp(24px, 3vw, 46px); }
.v-etendue-texte { flex: 1; min-width: 0; }
.v-etendue-visuel { flex: 1; min-width: 0; }

/* --- Apercus d'interface reconstitues en CSS (aucune image) -------------- */

.v-apercu {
    border-radius: var(--r-moyen);
    background: linear-gradient(180deg, #fbfcfe, var(--ciel));
    border: 1px solid var(--lisere);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 12px 28px -18px rgba(15, 98, 232, .3);
    padding: 14px;
    overflow: hidden;
}
.v-apercu-barre { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.v-apercu-barre i { width: 8px; height: 8px; border-radius: 50%; background: rgba(22, 19, 31, .1); }
.v-apercu-barre span {
    margin-left: 6px;
    font-family: "Space Mono", monospace;
    font-size: 9.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gris);
}
.v-apercu-ligne {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 11px;
    border-radius: 10px;
    background: var(--blanc);
    border: 1px solid var(--lisere);
    margin-bottom: 7px;
}
.v-apercu-ligne:last-child { margin-bottom: 0; }
.v-apercu-point { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.v-apercu-point.actif { background: var(--vert); box-shadow: 0 0 0 3px rgba(13, 158, 83, .13); }
.v-apercu-point.arret { background: #94a3b8; box-shadow: 0 0 0 3px rgba(148, 163, 184, .16); }
.v-apercu-point.alerte { background: var(--rouge); box-shadow: 0 0 0 3px rgba(217, 44, 58, .13); }
.v-apercu-nom {
    font-size: 12.5px; font-weight: 600; flex: 1; min-width: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.v-apercu-valeur { font-family: "Space Mono", monospace; font-size: 11px; color: var(--gris); flex: none; }

.v-apercu-chiffres { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-bottom: 10px; }
.v-apercu-chiffre {
    background: var(--blanc);
    border: 1px solid var(--lisere);
    border-radius: 10px;
    padding: 10px 11px;
}
.v-apercu-chiffre b {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 17px;
    letter-spacing: -.03em;
    color: var(--encre);
}
.v-apercu-chiffre span { font-size: 9.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--gris); }

/* --- Etapes numerotees --------------------------------------------------- */

.v-etapes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.6vw, 24px); }
.v-etape-num {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--bleu);
    display: block;
    margin-bottom: 14px;
}

/* --- Tarifs -------------------------------------------------------------- */

.v-tarifs { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 26px); align-items: stretch; }
.v-tarif { position: relative; }
.v-tarif-vedette .v-carte {
    background: linear-gradient(180deg, rgba(15, 98, 232, .16), rgba(61, 134, 255, .08));
    border-color: rgba(15, 98, 232, .2);
    box-shadow: var(--ombre-portee);
}
.v-tarif-ruban {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--blanc);
    background: linear-gradient(180deg, var(--bleu-vif), var(--bleu-sombre));
    padding: 6px 15px;
    border-radius: var(--r-pilule);
    box-shadow: 0 10px 22px -8px rgba(15, 98, 232, .7);
    white-space: nowrap;
}
.v-prix { display: flex; align-items: baseline; gap: 5px; margin: 6px 0 4px; }
.v-prix b { font-size: clamp(38px, 4.4vw, 50px); font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.v-prix span { font-size: 14px; color: var(--gris); }
.v-prix-note { font-size: 12.5px; color: var(--gris); }
.v-liste { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 22px 0; flex: 1; }
.v-liste li { display: flex; gap: 11px; font-size: 14.5px; line-height: 1.5; color: var(--encre-douce); }
.v-liste svg { width: 17px; height: 17px; flex: none; margin-top: 3px; stroke: var(--bleu); stroke-width: 2; fill: none; }

/* --- Assistant en etapes (formulaire) ------------------------------------ */

.v-assistant { max-width: 660px; margin: 0 auto; }
.v-jauge { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
.v-jauge-etape { flex: 1; height: 3px; border-radius: 99px; background: rgba(22, 19, 31, .08); overflow: hidden; }
.v-jauge-etape i {
    display: block; height: 100%; width: 0;
    background: linear-gradient(90deg, var(--bleu), var(--bleu-vif));
    border-radius: 99px;
    transition: width .7s var(--elan);
}
.v-jauge-etape.faite i, .v-jauge-etape.active i { width: 100%; }
.v-jauge-texte { font-family: "Space Mono", monospace; font-size: 11px; color: var(--gris); flex: none; }

.v-panneau { display: none; }
.v-panneau.active { display: block; animation: entree .6s var(--elan); }
@keyframes entree { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.v-panneau-titre { font-size: clamp(21px, 2.4vw, 27px); font-weight: 700; letter-spacing: -.025em; margin-bottom: 8px; }
.v-panneau-aide { font-size: 14.5px; color: var(--gris); margin-bottom: 26px; }

.v-choix { display: grid; gap: 10px; }
.v-choix.deux { grid-template-columns: repeat(2, 1fr); }
.v-choix label {
    position: relative;
    display: flex; align-items: center; gap: 13px;
    padding: 15px 17px;
    border-radius: var(--r-moyen);
    border: 1px solid var(--lisere);
    background: var(--blanc);
    box-shadow: var(--ombre-douce);
    cursor: pointer;
    font-size: 15px; font-weight: 500;
    transition: border-color .3s, box-shadow .4s var(--elan), transform .4s var(--elan);
}
.v-choix label:hover { transform: translateY(-2px); box-shadow: var(--ombre-flottante); }
.v-choix input { position: absolute; opacity: 0; pointer-events: none; }
.v-choix-marque {
    width: 20px; height: 20px; flex: none;
    border-radius: 50%;
    border: 1.6px solid rgba(22, 19, 31, .18);
    display: grid; place-items: center;
    transition: border-color .3s, background .3s;
}
.v-choix-marque::after {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--blanc); transform: scale(0);
    transition: transform .4s var(--elan);
}
.v-choix input:checked + .v-choix-marque { border-color: var(--bleu); background: var(--bleu); }
.v-choix input:checked + .v-choix-marque::after { transform: scale(1); }
.v-choix label.choisi { border-color: rgba(15, 98, 232, .4); box-shadow: 0 0 0 3px rgba(15, 98, 232, .1), var(--ombre-douce); }
.v-choix-libelle { flex: 1; }
.v-choix-note { display: block; font-size: 12.5px; color: var(--gris); font-weight: 400; margin-top: 2px; }

.v-champ { margin-bottom: 16px; }
.v-champ label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.v-champ input, .v-champ textarea, .v-champ select {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    color: var(--encre);
    padding: 13px 15px;
    border-radius: var(--r-moyen);
    border: 1px solid var(--lisere);
    background: var(--blanc);
    box-shadow: inset 0 1px 2px rgba(22, 19, 31, .03);
    transition: border-color .3s, box-shadow .3s;
}
.v-champ input:focus, .v-champ textarea:focus, .v-champ select:focus {
    outline: none;
    border-color: rgba(15, 98, 232, .45);
    box-shadow: 0 0 0 3px rgba(15, 98, 232, .12);
}
.v-champ-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.v-assistant-pied { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.v-assistant-pied .v-recul { margin-right: auto; }
.v-erreur { font-size: 13.5px; color: var(--rouge); margin-top: 10px; }
.v-mention { font-size: 12px; color: var(--gris); margin-top: 16px; line-height: 1.5; }

/* --- Bandeau d'appel final ---------------------------------------------- */

.v-appel { padding: 0 0 var(--section); }
.v-appel-int {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-coque);
    padding: clamp(44px, 6vw, 84px) clamp(26px, 4vw, 68px);
    text-align: center;
    background: linear-gradient(140deg, #0b2a63, var(--bleu-sombre) 42%, var(--bleu) 100%);
    box-shadow: var(--ombre-portee);
}
.v-appel-int::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(28rem 18rem at 82% -12%, rgba(61, 134, 255, .5), transparent 62%),
        radial-gradient(22rem 16rem at 8% 118%, rgba(255, 255, 255, .14), transparent 60%);
    pointer-events: none;
}
.v-appel-int > * { position: relative; }
.v-appel-int .v-titre-section { color: var(--blanc); }
.v-appel-int .v-chapeau { color: rgba(255, 255, 255, .82); margin: 18px auto 32px; }
.v-appel-int .v-etiquette {
    color: var(--blanc);
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}
.v-appel-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.v-appel-int .v-btn-primaire {
    background: var(--blanc); color: var(--bleu-sombre);
    box-shadow: 0 16px 34px -14px rgba(0, 0, 0, .5);
}
.v-appel-int .v-btn-primaire .v-btn-cercle { background: rgba(15, 98, 232, .12); }
.v-appel-int .v-btn-primaire .v-btn-cercle svg { stroke: var(--bleu-sombre); }
.v-appel-int .v-btn-secondaire {
    background: rgba(255, 255, 255, .1); color: var(--blanc);
    border-color: rgba(255, 255, 255, .26);
}
.v-appel-int .v-btn-secondaire .v-btn-cercle { background: rgba(255, 255, 255, .16); }
.v-appel-int .v-btn-secondaire .v-btn-cercle svg { stroke: var(--blanc); }

/* --- Questions frequentes ----------------------------------------------- */

.v-faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.v-faq details {
    border-radius: var(--r-moyen);
    border: 1px solid var(--lisere);
    background: var(--blanc);
    box-shadow: var(--ombre-douce);
    overflow: hidden;
}
.v-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 19px 22px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.012em;
    display: flex;
    align-items: center;
    gap: 16px;
}
.v-faq summary::-webkit-details-marker { display: none; }
.v-faq summary::after {
    content: "";
    width: 9px; height: 9px;
    margin-left: auto;
    flex: none;
    border-right: 1.6px solid var(--bleu);
    border-bottom: 1.6px solid var(--bleu);
    transform: rotate(45deg);
    transition: transform .5s var(--elan);
}
.v-faq details[open] summary::after { transform: rotate(-135deg); }
.v-faq-corps { padding: 0 22px 21px; font-size: 15px; line-height: 1.7; color: var(--encre-douce); }

/* --- Contenus longs (CNIL, mentions) ------------------------------------ */

.v-prose { max-width: 760px; margin: 0 auto; }
.v-prose h1 { font-size: clamp(30px, 4.4vw, 44px); letter-spacing: -.03em; margin-bottom: 28px; }
.v-prose h2 { font-size: clamp(21px, 2.4vw, 27px); letter-spacing: -.025em; margin: 44px 0 14px; }
.v-prose h3 { font-size: 18px; margin: 28px 0 10px; }
.v-prose p, .v-prose li { font-size: 15.5px; line-height: 1.75; color: var(--encre-douce); }
.v-prose p { margin-bottom: 14px; }
.v-prose ul, .v-prose ol { margin: 0 0 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.v-prose strong { color: var(--encre); }
.v-prose a { color: var(--bleu); }

/* --- Pied de page ------------------------------------------------------- */

.v-pied { border-top: 1px solid var(--lisere); padding: clamp(52px, 6vw, 76px) 0 34px; background: var(--ciel); }
.v-pied-trame {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: clamp(28px, 4vw, 52px);
    margin-bottom: 46px;
}
.v-pied-marque .v-logo { margin-bottom: 14px; }
.v-pied-marque p { font-size: 14px; color: var(--gris); line-height: 1.65; max-width: 34ch; }
.v-pied-col h4 {
    font-family: "Space Mono", monospace;
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--encre);
    margin-bottom: 16px;
}
.v-pied-col a {
    display: block;
    font-size: 14.5px;
    color: var(--encre-douce);
    text-decoration: none;
    padding: 5px 0;
    transition: color .3s;
}
.v-pied-col a:hover { color: var(--bleu); }
.v-pied-bas {
    border-top: 1px solid var(--lisere);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gris);
}

/* --- Revelations au defilement ----------------------------------------- */

/* Le contenu n'est masque QUE si le script a pris la main (classe js sur la racine).
   Sans JS, ou si le script echoue, tout reste visible : aucun risque de page blanche. */
.v-revele { transition: opacity .9s var(--elan), transform .9s var(--elan), filter .9s var(--elan); }
.js .v-revele { opacity: 0; transform: translateY(24px); filter: blur(6px); }
.js .v-revele.vu { opacity: 1; transform: none; filter: none; }
.v-revele-1 { transition-delay: .06s; }
.v-revele-2 { transition-delay: .12s; }
.v-revele-3 { transition-delay: .18s; }
.v-revele-4 { transition-delay: .24s; }
.v-revele-5 { transition-delay: .3s; }
.v-revele-6 { transition-delay: .36s; }

/* --- Adaptation aux petits ecrans -------------------------------------- */

@media (max-width: 1024px) {
    .v-hero-trame { grid-template-columns: 1fr; gap: 40px; }
    .v-hero .v-chapeau, .v-hero-faits { max-width: none; }
    .v-bento > *, .v-bento > .large { grid-column: span 3; }
    .v-pied-trame { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .v-nav-liens, .v-nav-connexion { display: none; }
    .v-burger { display: block; }
    .v-nav { padding-right: 8px; }
    .v-nav .v-btn { display: none; }
    .v-etapes { grid-template-columns: 1fr; }
    .v-tarifs { grid-template-columns: 1fr; }
    .v-tarif-vedette { order: -1; }
    .v-etendue .v-carte-int { flex-direction: column; align-items: stretch; }
}

@media (max-width: 640px) {
    .v-bento { grid-template-columns: 1fr; }
    .v-bento > *, .v-bento > .large, .v-bento > .pleine { grid-column: span 1; }
    .v-carte-live { height: 320px; }
    .v-choix.deux { grid-template-columns: 1fr; }
    .v-champ-duo { grid-template-columns: 1fr; }
    .v-pied-trame { grid-template-columns: 1fr; gap: 32px; }
    .v-hero-actions .v-btn, .v-appel-actions .v-btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .js .v-revele { opacity: 1; transform: none; filter: none; }
}

/* ==========================================================================
   Correspondance des classes historiques encore presentes dans le balisage
   de certaines pages (verticales, tarifs, pages longues). Elles heritent du
   meme systeme visuel : double lisere obtenu par un cadre exterieur dessine
   en pseudo-element, sans toucher au HTML.
   ========================================================================== */

.msf-vitrine-avantages { padding: var(--section) 0; max-width: var(--largeur); margin: 0 auto; }
.msf-vitrine-section-titre {
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.04;
    letter-spacing: -.03em;
    font-weight: 700;
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(40px, 5vw, 68px);
    padding: 0 var(--gouttiere);
}

.msf-vitrine-grille,
.msf-vitrine-tarifs-grille {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: clamp(20px, 2.2vw, 30px);
    padding: 0 var(--gouttiere);
    align-items: stretch;
}

.msf-vitrine-carte,
.msf-vitrine-tarif-carte {
    position: relative;
    z-index: 0;
    background: var(--blanc);
    border-radius: var(--r-coeur);
    padding: clamp(24px, 2.6vw, 34px);
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
    transition: transform .6s var(--elan);
}
/* La coque exterieure, dessinee autour du coeur */
.msf-vitrine-carte::before,
.msf-vitrine-tarif-carte::before {
    content: "";
    position: absolute;
    inset: -7px;
    z-index: -1;
    border-radius: var(--r-coque);
    background: linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(233, 239, 249, .52));
    border: 1px solid var(--lisere);
    box-shadow: var(--ombre-douce);
    transition: box-shadow .6s var(--elan);
}
.msf-vitrine-carte:hover, .msf-vitrine-tarif-carte:hover { transform: translateY(-5px); }
.msf-vitrine-carte:hover::before, .msf-vitrine-tarif-carte:hover::before { box-shadow: var(--ombre-flottante); }

.msf-vitrine-carte-icone {
    width: 46px; height: 46px; flex: none;
    border-radius: var(--r-moyen);
    display: grid; place-items: center;
    background: linear-gradient(160deg, rgba(15, 98, 232, .10), rgba(61, 134, 255, .05));
    border: 1px solid rgba(15, 98, 232, .14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
    margin-bottom: 20px;
}
.msf-vitrine-carte-icone svg { width: 21px; height: 21px; stroke: var(--bleu); stroke-width: 1.5; fill: none; }
.msf-vitrine-carte-titre {
    font-size: clamp(19px, 2vw, 22px);
    line-height: 1.22;
    letter-spacing: -.015em;
    font-weight: 600;
    margin-bottom: 11px;
}
.msf-vitrine-carte-texte { font-size: 15.5px; line-height: 1.68; color: var(--encre-douce); flex: 1; }

/* Tarifs */
.msf-vitrine-tarifs { padding: var(--section) 0; max-width: var(--largeur); margin: 0 auto; }
.msf-vitrine-tarif-carte--vedette::before {
    background: linear-gradient(180deg, rgba(15, 98, 232, .16), rgba(61, 134, 255, .08));
    border-color: rgba(15, 98, 232, .2);
    box-shadow: var(--ombre-portee);
}
.msf-vitrine-tarif-badge {
    position: absolute;
    top: -20px; left: 50%;
    transform: translateX(-50%);
    font-family: "Space Mono", monospace;
    font-size: 10px; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--blanc);
    background: linear-gradient(180deg, var(--bleu-vif), var(--bleu-sombre));
    padding: 6px 15px;
    border-radius: var(--r-pilule);
    box-shadow: 0 10px 22px -8px rgba(15, 98, 232, .7);
    white-space: nowrap;
}
.msf-vitrine-tarif-nom {
    font-family: "Space Mono", monospace;
    font-size: 11px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--bleu);
    margin-bottom: 14px;
}
.msf-vitrine-tarif-prix {
    display: flex; align-items: baseline; gap: 5px;
    font-size: clamp(38px, 4.4vw, 50px); font-weight: 700;
    letter-spacing: -.04em; line-height: 1;
    margin-bottom: 4px;
}
.msf-vitrine-tarif-prix-unite { font-size: 14px; font-weight: 400; color: var(--gris); letter-spacing: 0; }
.msf-vitrine-tarif-description { font-size: 14px; color: var(--gris); margin-bottom: 22px; }
.msf-vitrine-tarif-liste { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 0 0 26px; flex: 1; }
.msf-vitrine-tarif-liste li {
    position: relative;
    padding-left: 26px;
    font-size: 14.5px; line-height: 1.5; color: var(--encre-douce);
}
.msf-vitrine-tarif-liste li::before {
    content: "";
    position: absolute;
    left: 2px; top: 6px;
    width: 11px; height: 6px;
    border-left: 2px solid var(--bleu);
    border-bottom: 2px solid var(--bleu);
    transform: rotate(-45deg);
}

/* Boutons historiques */
.msf-vitrine-btn-primaire, .msf-vitrine-btn-secondaire {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: inherit; font-size: 15px; font-weight: 600; letter-spacing: -.01em;
    padding: 13px 26px;
    border-radius: var(--r-pilule);
    text-decoration: none;
    transition: transform .5s var(--elan), box-shadow .5s var(--elan);
}
.msf-vitrine-btn-primaire {
    background: linear-gradient(180deg, var(--bleu-vif), var(--bleu) 46%, var(--bleu-sombre));
    color: var(--blanc);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 14px 30px -12px rgba(15, 98, 232, .62);
}
.msf-vitrine-btn-primaire:hover { box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 20px 40px -12px rgba(15, 98, 232, .7); }
.msf-vitrine-btn-secondaire {
    background: rgba(255, 255, 255, .82); color: var(--encre);
    border: 1px solid var(--lisere);
    box-shadow: var(--ombre-douce), inset 0 1px 0 var(--lisere-clair);
}
.msf-vitrine-btn-secondaire:hover { box-shadow: var(--ombre-flottante); }
.msf-vitrine-btn-primaire:active, .msf-vitrine-btn-secondaire:active { transform: scale(.98); }
.msf-vitrine-btn-lg { padding: 16px 34px; font-size: 16px; }

/* Questions frequentes historiques */
.msf-vitrine-faq { max-width: 820px; margin: 0 auto; padding: 0 var(--gouttiere); display: flex; flex-direction: column; gap: 10px; }
.msf-vitrine-faq-item {
    border-radius: var(--r-moyen);
    border: 1px solid var(--lisere);
    background: var(--blanc);
    box-shadow: var(--ombre-douce);
    padding: 19px 22px;
}
.msf-vitrine-faq-question { font-size: 16px; font-weight: 600; letter-spacing: -.012em; margin-bottom: 9px; }
.msf-vitrine-faq-reponse { font-size: 15px; line-height: 1.7; color: var(--encre-douce); }

/* Pages longues */
.msf-vitrine-page-prose, .msf-vitrine-prose { max-width: 760px; margin: 0 auto; padding: clamp(52px, 7vw, 92px) var(--gouttiere); }
.msf-vitrine-prose h1 { font-size: clamp(30px, 4.4vw, 44px); letter-spacing: -.03em; margin-bottom: 28px; }
.msf-vitrine-prose h2 { font-size: clamp(21px, 2.4vw, 27px); letter-spacing: -.025em; margin: 44px 0 14px; }
.msf-vitrine-prose h3 { font-size: 18px; margin: 28px 0 10px; }
.msf-vitrine-prose p, .msf-vitrine-prose li { font-size: 15.5px; line-height: 1.75; color: var(--encre-douce); }
.msf-vitrine-prose p { margin-bottom: 14px; }
.msf-vitrine-prose ul, .msf-vitrine-prose ol { margin: 0 0 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.msf-vitrine-prose strong { color: var(--encre); }
.msf-vitrine-prose a { color: var(--bleu); }

/* Appel final historique */
.msf-vitrine-cta-final {
    position: relative;
    overflow: hidden;
    max-width: var(--largeur);
    margin: 0 auto clamp(84px, 11vw, 168px);
    border-radius: var(--r-coque);
    padding: clamp(44px, 6vw, 84px) clamp(26px, 4vw, 68px);
    text-align: center;
    background: linear-gradient(140deg, #0b2a63, var(--bleu-sombre) 42%, var(--bleu) 100%);
    box-shadow: var(--ombre-portee);
}
.msf-vitrine-cta-final::before {
    content: "";
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(28rem 18rem at 82% -12%, rgba(61, 134, 255, .5), transparent 62%),
        radial-gradient(22rem 16rem at 8% 118%, rgba(255, 255, 255, .14), transparent 60%);
}
.msf-vitrine-cta-final > * { position: relative; }
.msf-vitrine-cta-final-titre {
    font-size: clamp(28px, 4vw, 46px); font-weight: 700;
    letter-spacing: -.03em; line-height: 1.06; color: var(--blanc);
}
.msf-vitrine-cta-final-sous-titre {
    font-size: clamp(16px, 1.5vw, 18px); line-height: 1.6;
    color: rgba(255, 255, 255, .82);
    max-width: 56ch; margin: 18px auto 32px;
}
.msf-vitrine-cta-final .msf-vitrine-btn-primaire {
    background: var(--blanc); color: var(--bleu-sombre);
    box-shadow: 0 16px 34px -14px rgba(0, 0, 0, .5);
}

/* Restes de l'ancienne entete et de l'ancien pied, remplaces par l'ilot flottant */
.msf-vitrine-entete, .msf-vitrine-pied, .msf-vitrine-pied-simple, .msf-vitrine-ariane { display: none; }

/* --- Barre de recherche du registre (le crochet du hero) ----------------- */

.v-recherche {
    margin-top: 18px;
    max-width: 540px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(233, 239, 249, .58));
    border: 1px solid var(--lisere);
    border-radius: var(--r-coque);
    padding: 7px;
    box-shadow: var(--ombre-flottante);
}
.v-recherche-int {
    background: var(--blanc);
    border-radius: var(--r-coeur);
    padding: 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}
.v-recherche-titre {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--encre-douce);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.v-recherche-titre svg { width: 15px; height: 15px; stroke: var(--bleu); stroke-width: 1.6; fill: none; flex: none; }
.v-recherche-champ {
    display: flex; align-items: center; gap: 10px;
    background: var(--ciel);
    border: 1px solid var(--lisere);
    border-radius: var(--r-moyen);
    padding: 3px 5px 3px 14px;
    transition: border-color .3s, box-shadow .3s;
}
.v-recherche-champ:focus-within {
    border-color: rgba(15, 98, 232, .45);
    box-shadow: 0 0 0 3px rgba(15, 98, 232, .12);
}
.v-recherche-champ svg { width: 17px; height: 17px; stroke: var(--gris); stroke-width: 1.7; fill: none; flex: none; }
.v-recherche-champ input {
    flex: 1; min-width: 0;
    border: none; background: none; outline: none;
    font-family: inherit; font-size: 15px; color: var(--encre);
    padding: 12px 0;
}
.v-recherche-champ button {
    flex: none;
    font-family: inherit; font-size: 14px; font-weight: 700;
    color: var(--blanc);
    background: linear-gradient(180deg, var(--bleu-vif), var(--bleu) 46%, var(--bleu-sombre));
    border: none; border-radius: 11px;
    padding: 11px 18px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 8px 18px -8px rgba(15, 98, 232, .6);
    transition: transform .4s var(--elan), box-shadow .4s var(--elan);
}
.v-recherche-champ button:hover { box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), 0 12px 24px -8px rgba(15, 98, 232, .7); }
.v-recherche-champ button:active { transform: scale(.97); }
.v-recherche-source { font-size: 11px; color: var(--gris); margin-top: 9px; line-height: 1.45; }

/* Resultats */
.v-recherche-resultats { margin-top: 11px; display: none; flex-direction: column; gap: 7px; }
.v-recherche-resultats.visible { display: flex; }
.v-resultat {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 13px;
    border-radius: var(--r-moyen);
    border: 1px solid var(--lisere);
    background: var(--blanc);
    box-shadow: var(--ombre-douce);
    text-align: left;
}
.v-resultat-texte { flex: 1; min-width: 0; }
.v-resultat-nom {
    font-size: 13.5px; font-weight: 600; letter-spacing: -.01em;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.v-resultat-lieu { font-size: 11.5px; color: var(--gris); font-family: "Space Mono", monospace; }
.v-resultat-flotte {
    flex: none; text-align: right;
    font-family: "Space Mono", monospace;
}
.v-resultat-flotte b { display: block; font-size: 15px; color: var(--bleu); letter-spacing: -.02em; }
.v-resultat-flotte span { font-size: 9.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--gris); }
.v-recherche-vide { font-size: 13px; color: var(--gris); padding: 10px 2px; }
.v-recherche-suite {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bleu);
    text-decoration: none;
    padding: 8px 2px;
}

/* Ligne de reassurance sous les appels a l'action */
.v-reassurance {
    display: flex; gap: 9px;
    margin-top: 16px;
    font-size: 12.5px;
    color: var(--gris);
    max-width: 52ch;
    line-height: 1.5;
}
.v-reassurance svg { width: 15px; height: 15px; stroke: var(--vert); stroke-width: 1.7; fill: none; flex: none; margin-top: 2px; }

@media (max-width: 860px) {
    .v-nav-liens { display: none; }
    .v-nav { gap: 12px; }
    .v-logo-baseline { display: none; }
    .v-recherche { max-width: none; }
}

/* Sur petit ecran, le champ de recherche prend toute la largeur et le bouton passe dessous */
@media (max-width: 560px) {
    .v-recherche-champ {
        flex-wrap: wrap;
        padding: 3px 5px 5px 14px;
    }
    .v-recherche-champ input { flex: 1 1 60%; }
    .v-recherche-champ button { flex: 1 1 100%; margin-top: 2px; padding: 13px; }
    .v-recherche-titre { font-size: 12px; }
}
