/* ================================================================
   eMB Connect — home-vision.css  v6
   Hero = slider fondu 5 modules (image + voile + badge + CTA + dot + barre modules)
   Bento 2×2 + Livraison pleine largeur
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }

.hv {
  max-width: 100%;
  overflow-x: hidden;
  color: #c7cede;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  /* La navbar .emb-topbar est en position:fixed (elle sort du flux),
     donc on compense sa hauteur ici pour que le hero ne passe pas dessous.
     70px desktop / 62px mobile (voir media query). */
  padding-top:0;
}
@media (max-width: 980px) {
  .hv { padding-top:0; }
}
.hv a { text-decoration: none; }

/* ══════════════════════════════════════════════════
   HEADER — fixe, effet scroll, modules colorés
   ══════════════════════════════════════════════════ */
.hv-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(7,10,17,.7);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .3s, border-color .3s;
}
/* Classe ajoutée par JS quand l'utilisateur a scrollé */
.hv-nav.scrolled {
  background: rgba(7,10,17,.97);
  border-bottom-color: rgba(255,255,255,.09);
}

.hv-nav-in {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 0 32px; height: 62px;
}
.hv-logo { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -.5px; flex-shrink: 0; }
.hv-logo span { color: #6C8EFF; }

/* Modules nav — pill active colorée par module */
.hv-menu { display: flex; align-items: center; gap: 2px; flex: 1; }
.hv-mi a {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 10px;
  color: rgba(255,255,255,.52); font-size: 13px; font-weight: 500;
  transition: color .2s, background .2s;
  position: relative;
}
.hv-mi a:hover { color: #fff; background: rgba(255,255,255,.07); }
.hv-mi a .e { font-size: 15px; }

/* Actif : couleur propre à chaque module */
#hvml-drive.hv-mi-active { color: #7FD1F5 !important; background: rgba(52,168,224,.14) !important; }
#hvml-stay.hv-mi-active  { color: #C4AEFF !important; background: rgba(124,92,252,.14) !important; }
#hvml-food.hv-mi-active  { color: #FF9990 !important; background: rgba(232,54,42,.14)  !important; }
#hvml-shop.hv-mi-active  { color: #6DEEA4 !important; background: rgba(29,185,84,.14)  !important; }
#hvml-livr.hv-mi-active  { color: #FBDB80 !important; background: rgba(250,189,47,.14) !important; }

/* Indicateur bas coloré sous le lien actif */
.hv-mi a::after {
  content: ''; position: absolute; bottom: -1px; left: 13px; right: 13px;
  height: 2px; border-radius: 2px;
  background: transparent; transition: background .25s;
}
#hvml-drive.hv-mi-active::after { background: #34A8E0; }
#hvml-stay.hv-mi-active::after  { background: #7C5CFC; }
#hvml-food.hv-mi-active::after  { background: #E8362A; }
#hvml-shop.hv-mi-active::after  { background: #1DB954; }
#hvml-livr.hv-mi-active::after  { background: #FABD2F; }

.hv-nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.hv-btn-ghost {
  padding: 7px 16px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.7); font-size: 13px; font-weight: 500;
  transition: all .2s;
}
.hv-btn-ghost:hover { border-color: rgba(255,255,255,.3); color: #fff; }

.hv-btn-fill {
  padding: 7px 16px; border-radius: 10px;
  background: #6C8EFF; color: #fff; font-size: 13px; font-weight: 700;
  transition: opacity .2s;
}
.hv-btn-fill:hover { opacity: .88; }

.hv-ic {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 17px; transition: background .2s;
}
.hv-ic:hover { background: rgba(255,255,255,.07); color: #fff; }
.hv-burger { display: none; background: none; border: none; cursor: pointer; }

.hv-wchip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(108,142,255,.12); border: 1px solid rgba(108,142,255,.26);
  color: #6C8EFF; border-radius: 20px; padding: 6px 13px;
  font-size: 13px; font-weight: 700; transition: all .2s;
}
.hv-wchip:hover { background: rgba(108,142,255,.22); }

.hv-avwrap { position: relative; }
.hv-av {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #6C8EFF, #A78BFA);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff; cursor: pointer;
}
.hv-drop {
  display: none;
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 218px;
  background: #0f131c; border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 6px; z-index: 200;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
}
.hv-drop.right { left: auto; right: 0; }
.hv-avwrap:hover .hv-drop { display: block; }
.hv-drop a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 8px;
  color: rgba(255,255,255,.75); font-size: 13px; font-weight: 500;
  transition: background .15s, color .15s;
}
.hv-drop a:hover { background: rgba(255,255,255,.07); color: #fff; }
.hv-drop .di { font-size: 16px; }
.hv-drop .sep { height: 1px; background: rgba(255,255,255,.07); margin: 4px 0; }
.hv-drop .lbl {
  padding: 7px 12px 3px; font-size: 10.5px; color: #8A93A6;
  text-transform: uppercase; letter-spacing: .5px; font-weight: 700;
}

.hv-prowrap { position: relative; }
.hv-prochip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  color: #c7cede; border-radius: 20px; padding: 8px 13px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  white-space: nowrap; font-family: inherit; transition: all .2s;
}
.hv-prochip:hover { background: rgba(255,255,255,.11); color: #fff; }
.hv-prowrap:hover .hv-drop { display: block; }


/* ══════════════════════════════════════════════════════════════
   ★ HERO — SLIDER FONDU 5 MODULES ★
   ══════════════════════════════════════════════════════════════ */
.hv-hero {
  position: relative;
  min-height: clamp(540px, 68vh, 660px);
  overflow: hidden;
  display: flex;
}

/* Couches images */
.hv-hslides { position: absolute; inset: 0; }
.hv-hslide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(.4,0,.2,1);
}
.hv-hslide.on { opacity: 1; }

.hv-hslide .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease-out;
}
.hv-hslide.on .bg { transform: scale(1); }

/* Voile coloré par module */
.hv-hslide .tint { position: absolute; inset: 0; }
.hv-hslide .tint { background: linear-gradient(135deg, rgba(30,58,95,.82) 0%, rgba(15,30,48,.3) 45%, rgba(15,30,48,.98) 100%); }

/* Scrim haut + bas */
.hv-scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to bottom, rgba(7,10,17,.55) 0%, transparent 20%, transparent 52%, rgba(7,10,17,.97) 100%);
}

/* Contenu fixe */
.hv-hero-in {
  position: relative; z-index: 3;
  align-self: flex-end; width: 100%;
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px 118px;
}

/* Live dot */
.hv-live {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: rgba(255,255,255,.42); margin-bottom: 14px;
}
.hv-live-dot {
  width: 7px; height: 7px; background: #22c55e; border-radius: 50%;
  animation: hvpulse 2s infinite;
}
@keyframes hvpulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .45; transform: scale(.7); }
}

/* Badge module */
.hv-hchips { position: relative; height: 34px; margin-bottom: 14px; }
.hv-hchip {
  position: absolute; top: 0; left: 0;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 22px;
  font-size: 12px; font-weight: 700; letter-spacing: .1px;
  white-space: nowrap;
  opacity: 0; transform: translateY(8px);
  transition: opacity .6s ease, transform .6s ease;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.hv-hchip.on { opacity: 1; transform: translateY(0); }
.hv-hchip { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.24); color: #fff; }

/* Titre fixe */
.hv-hero-in h1 {
  font-size: clamp(34px, 5.5vw, 58px); font-weight: 800; color: #fff;
  line-height: 1.08; letter-spacing: -.7px; margin: 0 0 10px;
}
.hv-hero-in h1 em { color: #AECBEC; font-style: normal; }

/* Sous-titre change avec le slide */
.hv-hsubs { position: relative; height: 24px; margin-bottom: 26px; }
.hv-hsub {
  position: absolute; top: 0; left: 0;
  font-size: 15px; color: rgba(255,255,255,.42);
  opacity: 0; transform: translateY(5px);
  transition: opacity .6s .1s ease, transform .6s .1s ease;
  white-space: nowrap;
}
.hv-hsub.on { opacity: 1; transform: translateY(0); }

/* CTA module */
.hv-hctas { position: relative; height: 50px; }
.hv-hcta {
  position: absolute; top: 0; left: 0;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 13px;
  font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap;
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity .6s .15s ease, transform .6s .15s ease, filter .2s;
  border: none; cursor: pointer; font-family: inherit;
}
.hv-hcta.on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hv-hcta:hover { filter: brightness(1.1); }
.hv-hcta { background: #fff !important; color: #1e3a5f !important; }

/* Dots */
.hv-hdots {
  position: absolute; bottom: 78px; right: 32px; z-index: 6;
  display: flex; gap: 7px; align-items: center;
}
.hv-hdot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.22);
  cursor: pointer; transition: all .5s;
}
.hv-hdot.on { width: 26px; border-radius: 4px; }
.hv-hdot.on { background: #fff; }

/* ── Barre de modules en bas du hero ── */
.hv-modbar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  display: flex;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(7,10,17,.55);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.hv-moditem {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 3px; padding: 10px 0; cursor: pointer;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}
.hv-moditem:last-child { border-right: none; }
.hv-moditem:hover { background: rgba(255,255,255,.05); }
.hv-moditem.on { background: rgba(255,255,255,.08); }
.hv-moditem .mi-ico { font-size: 15px; line-height: 1; }
.hv-moditem .mi-lbl {
  font-size: 10px; font-weight: 700; letter-spacing: .1px;
  color: rgba(255,255,255,.38); transition: color .25s;
}
.hv-moditem.on .mi-lbl { color: #fff; }
.hv-moditem .mi-bar {
  height: 2px; width: 22px; border-radius: 2px;
  background: transparent; transition: background .3s;
}
.hv-moditem.on .mi-bar { background: #AECBEC; }


/* ══════════════════════════════════════════════════
   ZONE RECHERCHE
   ══════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════
   ZONE RECHERCHE — full-width, une ligne
   ══════════════════════════════════════════════════ */
.hv-searchzone { padding-top: 24px; }

/* ── Carte conteneur ── */
.hv-search-card {
  width: 100%;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Formulaire : une seule ligne ── */
.hv-search {
  display: flex;
  align-items: stretch;
  min-height: 68px;
}

/* ── Chaque champ ── */
.hv-fld {
  display: flex; flex-direction: column; justify-content: center;
  gap: 4px; flex: 1; min-width: 0;
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .18s;
  cursor: pointer;
  position: relative;
}
.hv-fld:hover { background: rgba(255,255,255,.04); }

.hv-fld label {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 800; color: rgba(255,255,255,.4);
  letter-spacing: .6px; text-transform: uppercase;
  pointer-events: none; white-space: nowrap; line-height: 1;
}

.hv-fld select,
.hv-fld .hv-duo {
  margin-top: 2px;
}

.hv-fld select {
  background: transparent; border: none; outline: none;
  color: #fff; font-size: 16px; font-weight: 500;
  font-family: inherit; width: 100%; cursor: pointer;
  padding: 0; appearance: none; -webkit-appearance: none;
}
.hv-fld select option { background: #0f131c; color: #fff; }

/* Groupe date · heure */
.hv-duo { display: flex; align-items: center; gap: 4px; }
.hv-duo input {
  background: transparent; border: none; outline: none;
  color: #fff; font-size: 16px; font-weight: 500;
  font-family: inherit; min-width: 0; flex: 1; cursor: pointer;
  padding: 0;
}
.hv-duo input::placeholder { color: rgba(255,255,255,.3); font-weight: 400; }
.hv-duo .hv-t-sep { color: rgba(255,255,255,.18); font-size: 16px; flex-shrink: 0; line-height: 1; }

/* ── Bouton ── */
.hv-search-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #6C8EFF; color: #fff; border: none;
  border-radius: 0;
  padding: 0 30px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  white-space: nowrap; font-family: inherit; flex-shrink: 0;
  transition: background .18s, transform .1s;
}
.hv-search-btn:hover { background: #5a7df0; }
.hv-search-btn:active { transform: scale(.98); }

/* Autocomplete */
.hv-ac { position: relative; width: 100%; margin-top: 10px; }
.hv-ac input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; color: #fff;
  padding: 13px 18px; font-size: 16px;
  outline: none; font-family: inherit; transition: border-color .2s, background .2s;
}
.hv-ac input::placeholder { color: rgba(255,255,255,.26); }
.hv-ac input:focus { border-color: rgba(108,142,255,.45); background: rgba(255,255,255,.06); }
.hv-ac-drop {
  display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #0d111e; border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; z-index: 50; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.7);
  max-height: 480px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.1) transparent;
}
.hv-ac-drop::-webkit-scrollbar { width: 4px; }
.hv-ac-drop::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 4px; }
.hv-ac-drop.open { display: block; animation: hv-drop-in .18s ease; }
@keyframes hv-drop-in { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.hv-ac-item {
  padding: 10px 14px; font-size: 13px; color: rgba(255,255,255,.72); cursor: pointer;
  transition: background .14s; display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.hv-ac-item:hover, .hv-ac-item:focus { background: rgba(255,255,255,.06); color: #fff; outline: none; }
.hv-ac-item .ai { font-size: 15px; }

/* Pills suggestions */
.hv-pills { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 10px; }
.hv-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 5px 13px;
  font-size: 12px; color: rgba(255,255,255,.42);
  cursor: pointer; transition: all .18s; white-space: nowrap;
}
.hv-pill:hover { background: rgba(255,255,255,.1); color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.18); }


/* ══════════════════════════════════════════════════
   SECTIONS COMMUNES
   ══════════════════════════════════════════════════ */
.hv-wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.hv-sec  { padding-top: 36px; padding-bottom: 10px; }
.hv-shead {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 16px;
}
.hv-shead h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 24px; font-weight: 700; color: #16283f; }
.hv-shead .sub { font-size: 13.5px; color: #6b7686; margin-top: 6px; }
.hv-shead .see {
  font-size: 13px; color: rgba(255,255,255,.38);
  border: 1px solid rgba(255,255,255,.1); border-radius: 9px;
  padding: 6px 13px; transition: all .2s; white-space: nowrap;
}
.hv-shead .see:hover { color: #fff; border-color: rgba(255,255,255,.25); }


/* ══════════════════════════════════════════════════
   BENTO SERVICES
   ══════════════════════════════════════════════════ */
.hv-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.hv-tile {
  position: relative; border-radius: 20px; overflow: hidden;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid #e7ddce;
  box-shadow: 0 16px 34px -24px rgba(22,40,63,.35);
  transition: transform .28s, box-shadow .28s;
  cursor: pointer;
}
.hv-tile:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -22px rgba(22,40,63,.5); }

.hv-tile .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .55s ease;
}
.hv-tile:hover .img { transform: scale(1.06); }

.hv-tile .tint { position: absolute; inset: 0; }
.hv-b-drive .tint, .hv-b-food .tint, .hv-b-stay .tint, .hv-b-shop .tint, .hv-b-clean .tint {
  background: linear-gradient(160deg, rgba(30,58,95,.5) 0%, rgba(15,30,48,.94) 100%);
}
.hv-b-livr .tint { background: transparent; }

.hv-tile .edge {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  opacity: 0; transition: opacity .3s;
}
.hv-tile:hover .edge { opacity: 1; }
.hv-b-drive .edge, .hv-b-food .edge, .hv-b-stay .edge, .hv-b-shop .edge, .hv-b-clean .edge, .hv-b-livr .edge { background: #AECBEC; }

.hv-tile .tc {
  position: relative; z-index: 2;
  padding: 0 22px 22px;
  display: flex; flex-direction: column;
}
.ttop { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.tchip { font-size: 30px; line-height: 1; }
.tstat {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  background: rgba(7,10,17,.65); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7); padding: 3px 10px; border-radius: 20px; white-space: nowrap;
  backdrop-filter: blur(8px);
}
.tstat .liv {
  display: inline-block; width: 6px; height: 6px; flex-shrink: 0;
  background: #22c55e; border-radius: 50%;
  animation: hvpulse 2s infinite;
}
.tbody { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.tnm { font-size: 19px; font-weight: 800; color: #fff; }
.tds { font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.45; }
.tchips { display: flex; gap: 5px; margin-top: 9px; flex-wrap: wrap; }
.tmc {
  font-size: 11px; padding: 3px 9px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; color: rgba(255,255,255,.52);
}
.tcta {
  display: inline-block; margin-top: 12px;
  font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.5);
  transition: color .18s;
}
.hv-tile:hover .tcta { color: #fff; }
.tgo {
  position: absolute; top: 18px; right: 20px; z-index: 2;
  font-size: 18px; color: rgba(255,255,255,.2);
  transition: color .2s, transform .2s;
}
.hv-tile:hover .tgo { color: #fff; transform: translate(2px,-2px); }

/* Livraison pleine largeur */
.hv-tile-livr {
  grid-column: 1 / -1;
  min-height: 108px !important;
  flex-direction: row; align-items: center; justify-content: flex-start;
  border-color: rgba(250,189,47,.2);
  background: rgba(250,189,47,.04);
}
.hv-tile-livr:hover { border-color: rgba(250,189,47,.4); }
.hv-tile-livr .tc {
  flex-direction: row; align-items: center; gap: 20px;
  padding: 18px 26px; width: 100%;
}
.hv-tile-livr .tchip { font-size: 38px; margin-bottom: 0; flex-shrink: 0; }
.hv-tile-livr .tbody { flex: 1; }
.hv-livr-head { display: flex; align-items: center; gap: 10px; margin-bottom: 3px; }
.hv-livr-badge {
  font-size: 10.5px; font-weight: 700;
  padding: 3px 9px; border-radius: 20px;
  background: rgba(255,255,255,.16); color: #fff;
  border: 1px solid rgba(255,255,255,.28); white-space: nowrap;
}
.hv-livr-go {
  font-size: 13px; font-weight: 700; color: #1e3a5f; white-space: nowrap;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 11px; transition: background .2s; flex-shrink: 0;
}
.hv-tile-livr:hover .hv-livr-go { background: #f2f5f9; }


/* ══════════════════════════════════════════════════
   RAILS (Drive / Stay / Food)
   ══════════════════════════════════════════════════ */
.hv-rail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}
.hv-rcard {
  background: #0f131c;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; overflow: hidden;
  transition: transform .22s, border-color .22s;
}
.hv-rcard:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.16); }
.hv-rph {
  position: relative; height: 160px;
  background: #1c2333; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 40px;
}
.hv-rph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hv-rcard:hover .hv-rph img { transform: scale(1.06); }
.hv-rtag {
  position: absolute; top: 10px; left: 10px;
  background: rgba(7,10,17,.75); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.82); font-size: 10.5px; font-weight: 600;
  padding: 3px 9px; border-radius: 20px; backdrop-filter: blur(8px);
}
.hv-rnote {
  position: absolute; top: 10px; right: 10px;
  background: rgba(7,10,17,.75); color: #fff;
  font-size: 10.5px; font-weight: 600;
  padding: 3px 8px; border-radius: 20px; backdrop-filter: blur(8px);
}
.hv-rbody { padding: 13px 14px 15px; }
.hv-rloc { font-size: 11px; color: rgba(255,255,255,.33); margin-bottom: 4px; }
.hv-rnm {
  font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 7px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hv-rspecs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.hv-rspec { font-size: 11px; color: rgba(255,255,255,.4); }
.hv-rfoot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.hv-rprice { font-size: 13.5px; font-weight: 800; color: #fff; }
.hv-rprice small { font-size: 11px; font-weight: 400; color: rgba(255,255,255,.38); }
.hv-rcta {
  font-size: 11.5px; font-weight: 700; color: #fff;
  padding: 6px 13px; border-radius: 8px; transition: opacity .2s;
}
.hv-rcard:hover .hv-rcta { opacity: .88; }
.hv-empty { color: rgba(255,255,255,.3); font-size: 13px; padding: 20px 0; }


/* ══════════════════════════════════════════════════
   SHOP GRID
   ══════════════════════════════════════════════════ */
.hv-shopgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 14px; }
.hv-pcard {
  background: #0f131c; border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; overflow: hidden;
  transition: transform .22s, border-color .22s;
}
.hv-pcard:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.16); }
.hv-pph {
  height: 140px; background: #1c2333; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 36px;
}
.hv-pph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hv-pcard:hover .hv-pph img { transform: scale(1.06); }
.hv-pbody { padding: 11px 12px 13px; }
.hv-pnm {
  font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hv-pprice { font-size: 13px; font-weight: 800; color: #1DB954; }
.hv-pprice small { font-size: 10.5px; font-weight: 400; color: rgba(255,255,255,.33); }


/* ══════════════════════════════════════════════════
   BANNIÈRE WALLET
   ══════════════════════════════════════════════════ */
.hv-wallet {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: rgba(30,58,95,.06);
  border: 1px solid rgba(30,58,95,.18);
  border-radius: 22px; padding: 28px 32px;
  transition: border-color .2s;
}
.hv-wallet:hover { border-color: rgba(30,58,95,.32); }
.hv-wallet h2 { font-size: 22px; font-weight: 800; color: #fff; margin: 0 0 8px; }
.hv-wallet p { font-size: 14px; color: rgba(255,255,255,.42); line-height: 1.6; margin: 0 0 16px; max-width: 460px; }
.hv-wbal {
  display: flex; flex-direction: column; gap: 2px; flex-shrink: 0;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px; padding: 14px 22px; text-align: right;
}
.hv-wbal-l { font-size: 11px; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .4px; }
.hv-wbal-v { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -.4px; }
.hv-wallet-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #1e3a5f;
  font-size: 14px; font-weight: 700;
  padding: 12px 22px; border-radius: 12px; transition: opacity .2s; white-space: nowrap;
}
.hv-wallet-cta:hover { opacity: .88; }


/* ══════════════════════════════════════════════════
   TRUST + STEPS + APP CTA
   ══════════════════════════════════════════════════ */
.hv-trust { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.hv-tcard {
  background: #fff; border: 1px solid #e7ddce;
  border-radius: 16px; padding: 18px 15px; text-align: center;
}
.hv-tnum { font-family: Georgia, 'Times New Roman', serif; font-size: 24px; font-weight: 700; color: #1e3a5f; }
.hv-tlab { font-size: 11.5px; color: #6b7686; margin-top: 5px; font-weight: 600; }

.hv-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.hv-step {
  background: #fff; border: 1px solid #e7ddce;
  border-radius: 18px; padding: 22px 20px; text-align: left;
}
.hv-step .n { font-size: 26px; margin-bottom: 12px; }
.hv-step h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 16px; font-weight: 700; color: #16283f; margin-bottom: 7px; }
.hv-step p { font-size: 13px; color: #6b7686; line-height: 1.6; }

.hv-appcta {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 22px; padding: 36px 40px; text-align: center;
}
.hv-appcta h2 { font-size: 24px; font-weight: 800; color: #fff; margin: 0 0 10px; }
.hv-appcta p { font-size: 14px; color: rgba(255,255,255,.42); margin: 0 0 24px; }
.hv-appbtns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hv-appbtn {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px; padding: 12px 22px;
  transition: background .2s, border-color .2s;
}
.hv-appbtn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); }
.hv-appbtn .ai { font-size: 26px; }
.hv-appbtn .at { display: flex; flex-direction: column; text-align: left; }
.hv-appbtn .at small { font-size: 10.5px; color: rgba(255,255,255,.42); }
.hv-appbtn .at b { font-size: 15px; font-weight: 700; color: #fff; }


/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.hv-foot {
  margin-top: 60px; background: #050810;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 48px;
}
.hv-foot-in { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.hv-foot .fl .ft {
  font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,.28);
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px;
}
.hv-foot .fl a {
  display: block; color: rgba(255,255,255,.44);
  font-size: 13.5px; margin-bottom: 10px; transition: color .2s;
}
.hv-foot .fl a:hover { color: #fff; }
.hv-foot-bot {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0; font-size: 12.5px;
  color: rgba(255,255,255,.24); text-align: center;
}


/* ══════════════════════════════════════════════════
   DRAWER + TABBAR MOBILE
   ══════════════════════════════════════════════════ */
.hv-drawer-ov {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
}
.hv-drawer-ov.open { display: block; }
.hv-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 310;
  width: min(86vw, 340px);
  background: #0b0f1a;
  border-right: 1px solid rgba(255,255,255,.08);
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.hv-drawer.open { transform: translateX(0); }
.hv-dr-x {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.07); border: none; border-radius: 8px;
  color: rgba(255,255,255,.6); font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.hv-dr-top { padding: 22px 20px 16px; border-bottom: 1px solid rgba(255,255,255,.06); }
.hv-dr-top .who { display: flex; align-items: center; gap: 12px; }
.hv-dr-top .av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #6C8EFF, #A78BFA);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff;
}
.hv-dr-top .nm { font-size: 15px; font-weight: 700; color: #fff; }
.hv-dr-top .em { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 2px; }
.hv-dr-serv { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 16px; }
.hv-dr-scard {
  display: flex; align-items: center; justify-content: center;
  padding: 14px; border-radius: 14px;
  color: #fff; font-size: 13px; font-weight: 700; text-align: center;
}
.hv-dr-list { padding: 0 10px 24px; }
.hv-dr-list .ttl {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,.25);
  text-transform: uppercase; letter-spacing: .8px; padding: 14px 10px 6px;
}
.hv-dr-list .sl {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  color: rgba(255,255,255,.72); font-size: 14px; font-weight: 500;
  transition: background .15s, color .15s;
}
.hv-dr-list .sl:hover { background: rgba(255,255,255,.06); color: #fff; }
.hv-dr-list .si { font-size: 18px; }

.hv-tabbar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(11,15,26,.96) !important;
  border-top: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 8px 0 max(14px, env(safe-area-inset-bottom));
}
.hv-tabbar .t {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 10px; color: rgba(255,255,255,.32) !important; transition: color .2s;
}
.hv-tabbar .t .i { font-size: 20px; line-height: 1; }
.hv-tabbar .t.on { color: #fff !important; }
.hv-tabbar .t.fab { position: relative; margin-top: -18px; }
.hv-tabbar .t.fab .fb {
  width: 46px; height: 46px; border-radius: 14px;
  background: #1e3a5f !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 22px rgba(30,58,95,.4);
}
.hv-tabbar .t.fab .l { font-size: 10px; margin-top: 3px; color: rgba(255,255,255,.32) !important; }


/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hv-shopgrid { grid-template-columns: repeat(3, 1fr); }
  .hv-trust { grid-template-columns: repeat(2, 1fr); }
  .hv-rail {
    display: flex; flex-wrap: nowrap; overflow-x: auto;
    -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory;
    gap: 12px; padding-bottom: 6px; scrollbar-width: none;
  }
  .hv-rail::-webkit-scrollbar { display: none; }
  .hv-rcard { flex: 0 0 auto; width: min(42vw, 300px); scroll-snap-align: start; }
}

@media (max-width: 820px) {

  /* ── Layout global ── */
  .hv { padding-top: 56px; }
  .hv-nav-in { height: 56px; padding: 0 16px; gap: 8px; }
  .hv-menu, .hv-btn-ghost, .hv-wchip, .hv-prowrap { display: none !important; }
  .hv-burger { display: inline-flex !important; }
  .hv-wrap { padding: 0 16px; }
  .hv-sec  { padding-top: 24px; padding-bottom: 8px; }

  /* ── Hero ── */
  .hv-hero { min-height: clamp(340px, 75vw, 460px); }
  .hv-hero-in { padding: 0 16px 48px; }
  .hv-live { font-size: 11.5px; margin-bottom: 10px; }
  .hv-hchips { height: 26px; margin-bottom: 10px; }
  .hv-hchip { font-size: 10.5px; padding: 5px 11px; }
  .hv-hero-in h1 { font-size: clamp(26px, 8.5vw, 40px); letter-spacing: -.4px; margin-bottom: 8px; }
  .hv-hsubs { height: 20px; margin-bottom: 16px; }
  .hv-hsub { font-size: 12px; white-space: normal; line-height: 1.4; }
  .hv-hctas { height: 44px; }
  .hv-hcta { padding: 12px 20px; font-size: 13.5px; border-radius: 11px; }
  .hv-hdots { bottom: 12px; right: 14px; }
  .hv-hdot.on { width: 18px; }
  .hv-modbar { display: none; }

  /* ── Formulaire recherche — ANTI-ZOOM iOS ──
     Règle d'or : TOUS les inputs/selects doivent être ≥ 16px
     Sinon iOS Safari zoome automatiquement au focus
  ── */
  .hv-searchzone { padding-top: 12px; }
  .hv-search-card { border-radius: 16px; overflow: hidden; }
  .hv-search { flex-direction: column; min-height: auto; }

  .hv-fld {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 14px 18px;
    min-height: 64px;
  }
  .hv-fld:last-of-type { border-bottom: none; }
  .hv-fld label { font-size: 10px; }

  /* 16px minimum — anti-zoom iOS/Android */
  .hv-fld select      { font-size: 16px !important; }
  .hv-duo input       { font-size: 16px !important; }
  .hv-ac input        { font-size: 16px !important; }

  /* Bouton — pleine largeur, sans border-radius en haut */
  .hv-search-btn {
    width: 100%; padding: 18px 0;
    font-size: 16px; font-weight: 700;
    border-radius: 0 0 16px 16px;
    border-top: 1px solid rgba(255,255,255,.06);
    min-height: 58px;
  }

  /* Autocomplete */
  .hv-ac { margin-top: 10px; }
  .hv-ac input { border-radius: 12px; padding: 14px 16px; }

  /* Pills */
  .hv-pills { gap: 6px; margin-top: 10px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: none; }
  .hv-pills::-webkit-scrollbar { display: none; }
  .hv-pill { font-size: 12px; white-space: nowrap; flex-shrink: 0; }

  /* ── Bento services ── */
  .hv-bento { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hv-tile { min-height: 160px; }
  .hv-tile .tc { padding: 0 12px 14px; }
  .tchip { font-size: 26px; }
  .tnm { font-size: 15px; }
  .tds { font-size: 11.5px; }
  .tstat { font-size: 9.5px; padding: 2px 8px; }
  .tchips { display: none; }
  .tcta { display: none; }
  .tgo { display: none; }
  .hv-tile-livr { min-height: 86px !important; }
  .hv-tile-livr .tc { padding: 14px 16px; gap: 12px; }
  .hv-tile-livr .tchip { font-size: 26px; }
  .hv-tile-livr .tile-nm { font-size: 14px; }
  .hv-livr-go { display: none; }

  /* ── Wallet ── */
  .hv-wallet { flex-direction: column; text-align: center; gap: 16px; padding: 22px 18px; }
  .hv-wallet h2 { font-size: 18px; }
  .hv-wallet p { font-size: 13px; margin-left: auto; margin-right: auto; }
  .hv-wbal { margin: 0 auto; text-align: center; }
  .hv-wbal-v { font-size: 22px; }

  /* ── Sections diverses ── */
  .hv-trust { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .hv-tnum { font-size: 18px; }
  .hv-steps { grid-template-columns: 1fr; gap: 8px; }
  .hv-step { padding: 14px; }
  .hv-shopgrid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .hv-shead { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hv-shead h2 { font-size: 16px; }
  .hv-shead .see { align-self: flex-start; }

  /* ── App CTA ── */
  .hv-appcta { padding: 24px 18px; border-radius: 16px; }
  .hv-appcta h2 { font-size: 19px; }
  .hv-appcta p { font-size: 13px; }
  .hv-appbtns { flex-direction: column; align-items: stretch; gap: 10px; }
  .hv-appbtn { justify-content: center; }

  /* ── Footer ── */
  .hv-foot { padding-top: 32px; }
  .hv-foot-in { grid-template-columns: 1fr; gap: 20px; }
  .hv-foot-bot { font-size: 12px; }

  /* ── Rails ── */
  .hv-rcard { width: min(78vw, 280px); }

  /* ── Drawer ── */
  .hv-drop { display: none !important; }
}

@media (max-width: 420px) {
  .hv-nav-in { padding: 0 12px; }
  .hv-wrap { padding: 0 12px; }
  .hv-hero-in h1 { font-size: 24px; }
  .hv-hchip { font-size: 9.5px; padding: 4px 9px; }
  .hv-tile { min-height: 145px; }
  .hv-tile .tc { padding: 0 10px 12px; }
  .tchip { font-size: 22px; }
  .tnm { font-size: 14px; }
  .hv-tile-livr .tc { padding: 12px 14px; gap: 10px; }
  .hv-rcard { width: min(84vw, 260px); }
  .hv-fld { padding: 13px 14px; }
}

@media (max-width: 900px)  { .hv-tabbar { display: flex !important; } }
@media (min-width: 901px)  { .hv-tabbar { display: none !important; } }

/* ══════════════════════════════════════════════════════════════════
   BLOCS SOMBRE PREMIUM (thème clair) — Wallet, Livraison, App Store.
   Dégradé violet nuit + halo coloré distinctif par bloc. Texte blanc.
   Ces blocs sont protégés du JS de thème clair (voir theme-clair.js).
   ══════════════════════════════════════════════════════════════════ */

/* --- Base commune : dégradé violet nuit + halo --- */
.hv-wallet,
.hv-tile-livr,
.hv-appcta{
  position:relative !important;
  background:linear-gradient(120deg,#1e3a5f,#16283f 62%,#0f1e30) !important;
  border:none !important;
  border-radius:20px !important;
  overflow:hidden !important;
  box-shadow:0 26px 54px -30px rgba(22,40,63,.6) !important;
  color:#fff !important;
}
/* halo lumineux (pseudo-élément) */
.hv-wallet::before,
.hv-tile-livr::before,
.hv-appcta::before{
  content:'' !important;
  position:absolute !important;
  width:280px; height:280px;
  border-radius:50% !important;
  filter:blur(70px) !important;
  pointer-events:none !important;
  z-index:0 !important;
  background:radial-gradient(circle,rgba(93,140,205,.32),transparent 70%) !important;
}
.hv-wallet::before{ top:-140px; right:-20px; }
.hv-tile-livr::before{ bottom:-140px; right:40px; }
.hv-appcta::before{ top:-140px; left:50%; transform:translateX(-50%); }

/* le contenu passe au-dessus du halo */
.hv-wallet > *, .hv-tile-livr > *, .hv-appcta > *{ position:relative; z-index:1; }

/* --- Textes en blanc dans les 3 blocs --- */
.hv-wallet h2, .hv-wallet .hv-wbal-v,
.hv-appcta h2,
.hv-tile-livr .tnm{ color:#fff !important; }
.hv-wallet p, .hv-wbal-l,
.hv-appcta p,
.hv-tile-livr .tds{ color:rgba(255,255,255,.75) !important; }

/* --- Wallet : encadré solde + bouton blanc --- */
.hv-wbal{ background:rgba(255,255,255,.1) !important; border:1px solid rgba(255,255,255,.15) !important; border-radius:12px !important; }
.hv-wallet-cta{ background:#fff !important; color:#1e3a5f !important; font-weight:700 !important; }

/* --- Livraison : badge + bouton blanc --- */
.hv-livr-badge{ background:rgba(255,255,255,.16) !important; color:#fff !important; }
.hv-livr-go{ background:#fff !important; color:#1e3a5f !important; font-weight:700 !important; border:none !important; }

/* --- App Store : boutons translucides --- */
.hv-appbtn{ background:rgba(255,255,255,.1) !important; border:1px solid rgba(255,255,255,.18) !important; }
.hv-appbtn, .hv-appbtn *, .hv-appbtn small, .hv-appbtn b{ color:#fff !important; }

/* ================================================================
   ▸ CALQUE IDENTITÉ BLEU MARINE — ACCUEIL
     (fin de fichier : même spécificité, déclaré plus tard → gagne)
   ================================================================ */

/* ── Navbar ── */
.hv-logo span{ color:#AECBEC; }
.hv-badge,.hv-wchip{ background:#1e3a5f !important; color:#fff !important; }
.hv-btn-fill{ background:#fff !important; color:#1e3a5f !important; border:none; font-weight:800; }
.hv-btn-ghost{ border-color:rgba(255,255,255,.24); color:#fff; }
.hv-av,.hv-dr-top .av{ background:linear-gradient(135deg,#3a72c4,#1e3a5f) !important; }
#hvml-drive.hv-mi-active,#hvml-stay.hv-mi-active,#hvml-food.hv-mi-active,
#hvml-shop.hv-mi-active,#hvml-livr.hv-mi-active,#hvml-clean.hv-mi-active{
  color:#fff !important; background:rgba(174,203,236,.18) !important;
}
#hvml-drive.hv-mi-active::after,#hvml-stay.hv-mi-active::after,#hvml-food.hv-mi-active::after,
#hvml-shop.hv-mi-active::after,#hvml-livr.hv-mi-active::after,#hvml-clean.hv-mi-active::after{
  background:#AECBEC !important;
}

/* ── Héro : voile marine renforcé pour la lisibilité ── */
.hv-hslide .tint{
  background:linear-gradient(100deg,rgba(15,30,48,.94) 2%,rgba(30,58,95,.66) 44%,rgba(15,30,48,.42) 100%) !important;
}
.hv-scrim{
  background:linear-gradient(to bottom,rgba(15,30,48,.55) 0%,transparent 22%,transparent 50%,rgba(15,30,48,.97) 100%) !important;
}
.hv-hero-in h1{ font-family:Georgia,'Times New Roman',serif; font-weight:700; }
.hv-hero-in h1 em{ color:#AECBEC !important; }
.hv-hsub{ color:rgba(255,255,255,.8) !important; }
.hv-live{ color:rgba(255,255,255,.75) !important; }
.hv-hchip{ background:rgba(255,255,255,.14) !important; border-color:rgba(255,255,255,.24) !important; color:#fff !important; }
.hv-hcta{ background:#fff !important; color:#1e3a5f !important; }

/* ── Barre des modules ── */
.hv-modbar{ background:linear-gradient(120deg,rgba(30,58,95,.88),rgba(15,30,48,.9)) !important; border-top:1px solid rgba(255,255,255,.1); }
.hv-moditem .mi-lbl{ color:rgba(255,255,255,.6) !important; }
.hv-moditem.on{ background:rgba(255,255,255,.1) !important; }
.hv-moditem.on .mi-lbl{ color:#fff !important; }
.hv-moditem.on .mi-bar{ background:#AECBEC !important; }

/* ── Recherche ── */
.hv-search-btn{ background:#1e3a5f !important; color:#fff !important; }
.hv-search-btn:hover{ filter:brightness(1.12); }

/* ── Prix / accents ── */
.hv-pprice{ color:#1e3a5f !important; }

/* ── Nouvelles sections : chiffres + réassurance ── */
.hvx-stats{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; margin-top:34px; }
.hvx-st{ background:#fff; border:1px solid #e7ddce; border-radius:18px; padding:22px; text-align:center; }
.hvx-st .v{ font-family:Georgia,serif; font-size:30px; font-weight:700; color:#1e3a5f; line-height:1.1; }
.hvx-st .l{ font-size:12.5px; color:#6b7686; margin-top:5px; font-weight:600; }
.hvx-band{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; margin-top:20px; }
.hvx-bc{ background:#fff; border:1px solid #e7ddce; border-radius:16px; padding:17px; display:flex; gap:12px; align-items:flex-start; }
.hvx-bc .e{ font-size:21px; flex-shrink:0; }
.hvx-bc .t{ font-size:13.5px; font-weight:800; color:#16283f; }
.hvx-bc .s{ font-size:12px; color:#6b7686; margin-top:3px; line-height:1.5; }
@media(max-width:900px){
  .hvx-stats{ grid-template-columns:1fr 1fr; }
  .hvx-band{ grid-template-columns:minmax(0,1fr); }
}
