/* =====================================================================
   STYLES.CSS — DA « SET CORE » (noir + orange), partagé par tout le tunnel
   ===================================================================== */

:root {
  --bg:        #0A0A0A;
  --bg-2:      #121214;   /* surfaces / cartes */
  --bg-3:      #18181B;   /* surfaces survolées */
  --ink:       #F4F1EC;   /* texte principal */
  --ink-soft:  #9B9893;   /* texte secondaire */
  --ink-dim:   #6E6B66;   /* labels discrets */
  --orange:    #FF6A00;
  --orange-2:  #FF8A2A;
  --orange-dk: #D85800;
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.14);
  --ok:        #4CAF6E;
  --shadow:    0 1px 2px rgba(0,0,0,.4), 0 18px 50px rgba(0,0,0,.45);
  --glow:      0 0 0 1px rgba(255,106,0,.25), 0 12px 40px rgba(255,106,0,.18);
  --radius:    16px;
  --maxw:      1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* ---------- Effet de fond (bloom orange + grille + filigrane A) ---------- */
.bg-fx {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden;
  background:
    radial-gradient(1100px 760px at 88% 112%, rgba(255,106,0,.30), rgba(255,106,0,0) 60%),
    radial-gradient(820px 560px at 6% -12%, rgba(255,106,0,.10), rgba(255,106,0,0) 55%),
    var(--bg);
}
.bg-fx::before {
  content: ""; position: absolute; inset: -20%;
  background: radial-gradient(620px 620px at 72% 82%, rgba(255,128,30,.20), transparent 62%);
  animation: drift 20s ease-in-out infinite alternate;
}
.bg-fx::after {
  content: ""; position: absolute; inset: 0; opacity: .6;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 25%, transparent 78%);
          mask-image: radial-gradient(ellipse at 50% 30%, #000 25%, transparent 78%);
}
@keyframes drift { from { transform: translate(0,0); } to { transform: translate(-5%,-7%); } }

/* filigrane « A » décoratif (à poser dans une section) */
.watermark {
  position: absolute; right: -4%; bottom: -10%; width: min(46vw, 520px); aspect-ratio: 1;
  background: url("logo.svg") center/contain no-repeat;
  opacity: .05; pointer-events: none; z-index: 0;
}

/* ---------- Typo ---------- */
.display, h1, h2, h3 {
  font-family: "Sora", system-ui, sans-serif;
  letter-spacing: -0.02em; line-height: 1.05; font-weight: 800; margin: 0 0 .5em;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 700; }
p  { margin: 0 0 1em; color: var(--ink-soft); }
a  { color: var(--ink); }
.accent { color: var(--orange); }
.muted  { color: var(--ink-soft); }
strong, b { color: var(--ink); }

/* ---------- Layout ---------- */
.wrap   { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; position: relative; z-index: 1; }
.narrow { max-width: 760px; }
/* padding-top/bottom SEULEMENT : un raccourci `padding: X 0` remettrait à zéro
   le padding gauche/droite posé par .wrap (même spécificité, règle plus tardive
   dans le fichier -> elle gagnait et collait le contenu aux bords). */
.section{ padding-top: clamp(48px, 8vw, 96px); padding-bottom: clamp(48px, 8vw, 96px); position: relative; }
.center { text-align: center; }

/* ---------- Top bar / logo ---------- */
.topbar {
  display: flex; align-items: center; justify-content: center; gap: 11px;
  padding: 18px; border-bottom: 1px solid var(--line);
  background: rgba(10,10,10,.7); backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 20;
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.18rem; letter-spacing: -.01em; color: var(--ink); text-decoration: none; }
.logo img { width: 26px; height: 26px; display: block; }
.logo .dot { color: var(--orange); }
/* Signature manuscrite après le point. Caveat rend petit pour sa taille en px :
   d'où le 1.32rem, qui l'aligne optiquement sur le « Théoset » en Sora 1.18rem. */
.logo .hand {
  font-family: "Caveat", cursive; font-weight: 600; font-size: 1.32rem;
  color: var(--ink-soft); letter-spacing: 0; margin-left: 7px;
  position: relative; top: 2px;
}

/* ---------- Eyebrow / pills ---------- */
.eyebrow {
  display: inline-block; font-size: .76rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .18em; color: var(--orange); margin-bottom: 14px;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-2);
  border-radius: 999px; padding: 7px 15px; font-size: .85rem; font-weight: 500; color: var(--ink-soft);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); display: inline-block; box-shadow: 0 0 10px var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 1.05rem;
  padding: 16px 30px; border-radius: 999px; border: none; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s;
  background: var(--orange); color: #150A02; box-shadow: var(--glow);
}
.btn:hover { transform: translateY(-2px); background: var(--orange-2); box-shadow: 0 0 0 1px rgba(255,106,0,.4), 0 18px 54px rgba(255,106,0,.32); }
.btn:active { transform: translateY(0); }
.btn.lg { font-size: 1.06rem; padding: 16px 32px; }
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); box-shadow: none; }
.btn.ghost:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,106,0,.06); }
.btn.block { display: flex; width: 100%; }

/* ---------- Hero ---------- */
.hero { text-align: center; padding-top: clamp(40px,7vw,80px); padding-bottom: clamp(30px,5vw,50px); }
.hero h1 { max-width: 18ch; margin-inline: auto; }
.hero .sub { font-size: clamp(1.05rem,2vw,1.3rem); color: var(--ink-soft); max-width: 56ch; margin: 0 auto 28px; }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 20px; }
.grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.card .num { font-family: "Sora", sans-serif; font-size: 2rem; font-weight: 800; color: var(--orange); }

/* ---------- Stat strip (façon doc SET CORE) ---------- */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.stat { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 20px; text-align: left; }
.stat .big { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.9rem; color: var(--orange); line-height: 1; }
.stat .lbl { display: block; margin-top: 8px; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-dim); }

/* ---------- Bullets ---------- */
.checks { list-style: none; padding: 0; margin: 0 0 1.4em; }
.checks li { position: relative; padding-left: 32px; margin-bottom: 12px; color: var(--ink); }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat;
}

/* ---------- Video (Wistia) ---------- */
.video-shell {
  max-width: 880px; margin: 0 auto; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 0 0 1px var(--line-2), 0 24px 80px rgba(0,0,0,.6), 0 0 80px rgba(255,106,0,.12);
  background: #000;
}
.video-ratio { position: relative; width: 100%; aspect-ratio: 16/9; }
.video-ratio > * { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---------- Lock / reveal ---------- */
.locked {
  position: relative; border: 1px dashed var(--line-2); border-radius: var(--radius);
  background: rgba(255,255,255,.02); padding: 40px 26px; text-align: center; color: var(--ink-soft);
}
.locked .lock-ico { font-size: 1.8rem; }
.locked .countdown { font-weight: 800; color: var(--orange); font-variant-numeric: tabular-nums; font-family: "Sora", sans-serif; }
.countdown-xl { font-family: "Sora", sans-serif; font-weight: 700; font-size: clamp(1.2rem, 2.6vw, 1.6rem); color: var(--orange); opacity: .5; font-variant-numeric: tabular-nums; line-height: 1; }
.reveal { animation: rise .5s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hidden { display: none !important; }

/* ---------- Countdown "surprise" ---------- */
.surprise { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,106,0,.08); border: 1px solid rgba(255,106,0,.3); border-radius: 999px; padding: 10px 20px; }
.surprise .t { font-family: "Sora", sans-serif; font-weight: 800; color: var(--orange); font-variant-numeric: tabular-nums; }

/* ---------- Tally embed ---------- */
/* Carte SOMBRE : le formulaire Tally est en thème sombre (champs noirs, texte
   clair) → une carte sombre discrète le fait fondre dans le fond noir. */
.tally-shell {
  max-width: 640px; margin: 0 auto;
  /* MÊME fond que le formulaire Tally (#0A0A0A) -> un seul bloc, pas de boîte-dans-boîte */
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;   /* clippe l'iframe aux coins arrondis */
}
iframe.tally { width: 100%; border: none; color-scheme: dark; }

/* Visuel hero (photo Théo + preuves de résultats) sur l'opt-in */
.hero-shot { display:block; width:100%; max-width:520px; height:auto; margin:34px auto 0; }

/* ---------- Modale d'opt-in (NOTRE modale, pas le popup Tally) ---------- */
/* Le popup natif de Tally (URL /popup/) donne le focus à son <form> à
   l'ouverture → cadre de focus BLEU du système autour de la 1re question,
   impossible à retirer en CSS (iframe cross-origin). On monte donc l'embed
   (URL /embed/, sans autofocus) dans cette modale-ci. Détails : funnel.js. */
.fmodal-overlay {
  position: fixed; inset: 0; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,.74);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .18s ease;
}
.fmodal-overlay.open { opacity: 1; }
.fmodal {
  /* 460px (et pas 540) : les boutons de choix Tally épousent la largeur de leur
     texte, donc au-delà la carte paraît vide à droite. */
  position: relative; width: 100%; max-width: 460px;
  max-height: 88vh; max-height: 88dvh;
  overflow: auto; -webkit-overflow-scrolling: touch;
  /* NOIR PUR (pas var(--bg) = #0A0A0A) : c'est la couleur que le formulaire
     Tally peint dans l'iframe. Toute différence se voit en liseré sur les bords. */
  background: #000;
  border: 2px solid var(--orange);
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255,106,0,.25), 0 30px 80px rgba(0,0,0,.6);
  transform: translateY(10px) scale(.985);
  transition: transform .18s ease;
}
.fmodal-overlay.open .fmodal { transform: none; }
.fmodal-body { display: block; }
/* La hauteur de l'iframe est pilotée par Tally (dynamicHeight) : elle épouse
   chaque page du formulaire — pas de vide sous « Suivant », pas de défilement
   interne (scrolling="no" en plus : la piste de cette barre se dessinait en
   BLANC). Plafond anti-emballement : funnel.js (maxHeight).
   Si l'écran est plus bas que la carte, c'est .fmodal qui défile : barre fine
   et sombre, pas la barre système blanche. */
.fmodal::-webkit-scrollbar { width: 10px; }
.fmodal::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 999px; }
.fmodal::-webkit-scrollbar-track { background: transparent; }
.fmodal-x {
  position: absolute; top: 10px; right: 12px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07); border: 1px solid var(--line-2);
  color: var(--ink-soft); font-size: .8rem; line-height: 1; cursor: pointer;
}
.fmodal-x:hover { background: rgba(255,255,255,.15); color: var(--ink); }
body.modal-open { overflow: hidden; }

/* Ceinture + bretelles : pas de cadre de focus système sur nos iframes. */
.fmodal, .fmodal *, iframe.tally, .tally-shell, .tally-shell * {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}
.fmodal iframe, iframe.tally { border: 0 !important; }

/* ---------- iClosed embed ---------- */
/* ⚠️ LARGEUR = 720px VOLONTAIREMENT : au-delà (~900px), iClosed bascule en
   affichage 2 COLONNES (formulaire à gauche / calendrier à droite). À 720px il
   reste VERTICAL (formulaire puis calendrier), bien plus lisible. Ne pas élargir. */
.booking-shell { max-width: 720px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.booking-shell iframe { width: 100%; min-height: 720px; border: none; display: block; }

/* Variante « tight » (page de réservation setter) : le cadre blanc épouse la
   largeur du questionnaire. MESURÉ : au-delà de ~520px, iClosed centre sa carte
   dans l'iframe et laisse des marges blanches vides de chaque côté. En dessous,
   sa mise en page est fluide et remplit toute la largeur. */
/* 548 = 520 (largeur utile du questionnaire iClosed) + 28 de gouttière : le trait
   s'écarte SANS rétrécir le questionnaire. */
.booking-shell.tight, .book-head.tight { max-width: 548px; }
/* Trait orange fin tout autour du calendrier (façon Khazy / tikmastery : 1px de
   la couleur de marque + radius 16 + halo diffus). Chez eux le widget iClosed est
   en thème SOMBRE, donc le trait cerne un panneau noir ; le nôtre est en thème
   CLAIR, donc le trait cerne directement la carte blanche — d'où une opacité plus
   forte, 35% sur du blanc virerait au pêche délavé. */
.booking-shell.tight {
  /* Gouttière sombre entre le trait et la carte blanche (comme la référence, qui
     laisse 16-20px de fond autour du widget). Le fond passe donc de #fff à sombre :
     sur du blanc, la gouttière serait invisible et ne ferait qu'agrandir la carte. */
  padding: 14px;
  background: var(--bg-2);
  border: 1px solid rgba(255, 106, 0, .55);
  border-radius: 18px;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, .09), 0 18px 50px rgba(0, 0, 0, .45);
}
/* La carte iClosed est clippée à son propre rayon, sinon ses angles carrés
   ressortent en blanc dans les coins arrondis du cadre. */
.booking-shell.tight .iclosed-widget { border-radius: 10px; overflow: hidden; }
/* Sur mobile, `.section` remet le padding latéral à 0 (raccourci qui écrase celui
   de `.wrap`) : le cadre se collait aux bords alors que le texte reste en retrait.
   On le réaligne sur le texte — variante `.tight` uniquement. */
@media (max-width: 560px) {
  .booking-shell.tight, .book-head.tight { width: calc(100% - 40px); margin-inline: auto; }
}

/* En-tête du calendrier : « Réserve ton créneau » + durée (façon Khazy) */
.book-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  max-width: 720px; margin: 0 auto 12px; padding: 0 2px;
}
.book-head .t { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.06rem; color: var(--ink); }
.book-head .dur {
  font-size: .82rem; color: var(--ink-soft); white-space: nowrap;
  border: 1px solid var(--line-2); border-radius: 999px; padding: 5px 13px;
}

/* ---------- Testimonials ---------- */
.testi { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px; }
.testi .stars { color: var(--orange); letter-spacing: 2px; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi .av { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #150A02; font-family: "Sora", sans-serif; }
.testi .who b { display: block; color: var(--ink); }
.testi .who span { font-size: .85rem; color: var(--ink-soft); }
.quote { font-size: 1.05rem; color: var(--ink); }

/* ---------- Results gallery (captures de gains réelles) ---------- */
.results { columns: 3; column-gap: 14px; }
.results .item { break-inside: avoid; margin-bottom: 14px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); box-shadow: var(--shadow); display: block; }
.results .item img, .results .item video { width: 100%; display: block; }
.results .item:hover { border-color: rgba(255,106,0,.4); }
/* 2 colonnes JUSQU'EN BAS (y compris téléphone) : en 1 colonne, chaque capture
   prenait toute la largeur et la galerie devenait interminable à scroller. */
@media (max-width: 820px) { .results { columns: 2; column-gap: 10px; } }
@media (max-width: 460px) { .results .item { margin-bottom: 10px; } }

/* ---------- Badge play sur les vidéos témoignages ---------- */
.card.vid { position: relative; }
.card.vid .playbadge {
  position: absolute; inset: 0; margin: auto;
  width: 66px; height: 66px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,.55); border: 2px solid var(--orange);
  box-shadow: 0 0 0 6px rgba(255,106,0,.14), var(--glow);
  cursor: pointer; z-index: 3;
  transition: opacity .2s ease, transform .2s ease;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.card.vid .playbadge svg { width: 26px; height: 26px; margin-left: 3px; fill: var(--orange); }
.card.vid .playbadge:hover { transform: scale(1.08); background: rgba(10,10,10,.7); }
.card.vid.playing .playbadge { opacity: 0; transform: scale(.7); pointer-events: none; }

/* ---------- Page pré-sélection (setting, façon Khazy) ---------- */
.livebar { text-align: center; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-dim); padding: 10px 0 0; font-variant-numeric: tabular-nums; }
.counter-rows { max-width: 560px; margin: 26px auto 0; }
.crow { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 4px; border-top: 1px solid var(--line); }
.crow:last-child { border-bottom: 1px solid var(--line); }
.crow .clabel { color: var(--ink-soft); font-size: 1rem; text-align: left; }
.crow .cval { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.9rem; line-height: 1; font-variant-numeric: tabular-nums; white-space: nowrap; }
.crow .cval .cmut { color: var(--ink-dim); font-weight: 700; }
.crow .cval b { color: var(--orange); }
.wa-card { background: var(--bg-3); border-color: var(--line-2); }

/* ---------- Steps ---------- */
.steps { counter-reset: s; display: grid; gap: 18px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step .n { counter-increment: s; flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--orange); color: #150A02; display: flex; align-items: center; justify-content: center; font-family: "Sora", sans-serif; font-weight: 800; }
.step .n::before { content: counter(s); }

/* ---------- Trust strip ---------- */
.trust { display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: center; align-items: center; color: var(--ink-soft); font-size: .92rem; }
.trust b { color: var(--ink); }

/* ---------- Footer ---------- */
.foot { padding-top: 22px; padding-bottom: 40px; border-top: none; text-align: center; color: var(--ink-dim); font-size: .85rem; }
.foot a { color: var(--ink-soft); }
.foot p:first-child { display: none; }   /* masque la ligne "© Théoset · Nous contacter" (les disclaimers restent) */

/* ---------- Notice ---------- */
.notice { background: rgba(255,106,0,.07); border: 1px solid rgba(255,106,0,.28); border-radius: var(--radius); padding: 16px 20px; font-size: .95rem; color: var(--ink); }

/* ---------- Avatar message (setter/closer perso) ---------- */
.person { display: flex; align-items: center; gap: 14px; justify-content: center; margin: 8px 0 4px; }
.person .pic { width: 54px; height: 54px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; font-family: "Sora",sans-serif; font-weight: 800; color: var(--orange); }
.person .pic img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.person .meta b { display: block; color: var(--ink); }
.person .meta span { font-size: .85rem; color: var(--ink-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .grid.cols-3, .grid.cols-2, .stats { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}

/* ---------- Mobile (téléphone) : tout respire, rien ne colle ---------- */
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .section { padding-top: 44px; padding-bottom: 44px; }

  /* Typo : plus petite et plus aérée (les clamp() desktop restent trop gros ici) */
  h1 { font-size: 1.72rem; line-height: 1.18; letter-spacing: -0.015em; }
  h2 { font-size: 1.38rem; line-height: 1.22; }
  h3 { font-size: 1.12rem; }
  body { font-size: 15.5px; line-height: 1.65; }
  .eyebrow { font-size: .68rem; letter-spacing: .14em; margin-bottom: 12px; }

  /* Hero */
  .hero { padding-top: 34px; padding-bottom: 30px; }
  .hero h1 { max-width: none; margin-bottom: 14px; }
  .hero .sub { font-size: .98rem; line-height: 1.6; margin-bottom: 22px; }
  .hero .btn { width: 100%; max-width: 360px; }
  .btn.lg { font-size: .98rem; padding: 14px 20px; }
  .trust { gap: 10px 18px; font-size: .85rem; }
  .hero-shot { margin-top: 26px; }

  /* Cartes & listes */
  .grid { gap: 14px; }
  .card { padding: 20px 18px; }
  .card .num { font-size: 1.5rem; margin-bottom: 2px; }
  .card h3 { margin-bottom: .35em; }
  .card p { margin-bottom: 0; }
  .stat { padding: 16px; }
  .steps { gap: 14px; }

  /* Divers */
  .topbar { padding: 14px; }
  .locked { padding: 28px 18px; }
  .crow .cval { font-size: 1.5rem; }
  .counter-rows { margin-top: 18px; }
  .notice { padding: 14px 16px; font-size: .9rem; }
  .book-head { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
  .book-head .t { font-size: 1rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal, .bg-fx::before { animation: none; }
  html { scroll-behavior: auto; }
}
