/* =========================================================
   Tunnel « Clients Garantis » · Yann Le Nen
   Design system repris à l'identique de /detailsprogramme/ :
   Inter Tight + Instrument Serif + jaune #FFCC00 sur blanc.

   Cette feuille est PARTAGÉE par les 5 pages rebrandées du tunnel
   (optin → VSL → page de vente → formulaire → merci). detailsprogramme
   garde son CSS en ligne : on ne touche pas à cette page, mais toute
   évolution du système doit être répercutée des deux côtés.

   Les blocs de detailsprogramme qu'aucune de ces 5 pages n'utilise
   (.stats, .cards, .cmp) ont été retirés : la feuille est chargée sur
   chaque page du parcours, autant ne pas y trimballer de mort. Les
   reprendre depuis detailsprogramme si une page en a besoin.
   ========================================================= */

:root {
  --yellow:       #FFCC00;
  --yellow-hover: #FFD633;
  --yellow-press: #E6B800;
  --yellow-tint:  #FFF8D6;

  --black: #0A0A0A;
  --ink:   #121212;

  --n-0:   #FFFFFF;
  --n-50:  #FAFAFA;
  --n-100: #F4F4F4;
  --n-200: #E8E8E8;
  --n-300: #D4D4D4;
  --n-400: #A3A3A3;
  --n-500: #737373;
  --n-600: #525252;
  --n-700: #2E2E2E;

  --bg:        var(--n-0);
  --bg-alt:    var(--n-50);
  --fg:        var(--ink);
  --fg-muted:  var(--n-600);
  --fg-subtle: var(--n-500);
  --border:    var(--n-200);

  --red: #D63B3B;

  --font-sans:  'Inter Tight', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;

  --container: 1100px;
  --narrow: 760px;
  --gutter: 24px;
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 17px; line-height: 1.55;
  color: var(--fg); background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4, p, li, span { overflow-wrap: break-word; }

/* ============ LAYOUT ============ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: var(--narrow); margin-left: auto; margin-right: auto; }
section { padding: clamp(56px, 7vw, 104px) 0; max-width: 100%; }
.alt { background: var(--n-100); border-top: 1px solid var(--n-200); border-bottom: 1px solid var(--n-200); }
.center { text-align: center; }

/* ============ TYPOGRAPHIE ============ */
.srule { width: 52px; height: 4px; background: var(--yellow); border-radius: 2px; margin: 0 0 24px; }
.center .srule { margin-left: auto; margin-right: auto; }
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg-muted); margin: 0 0 24px;
}
.display {
  font-weight: 700; font-size: clamp(34px, 6vw, 68px); line-height: 1.06;
  letter-spacing: -0.03em; margin: 0 0 28px; text-wrap: balance;
}
.h2 {
  font-weight: 700; font-size: clamp(28px, 4.2vw, 46px); line-height: 1.12;
  letter-spacing: -0.022em; margin: 0 0 24px; text-wrap: balance;
}
.h3 { font-weight: 700; font-size: clamp(20px, 2.2vw, 24px); line-height: 1.25; letter-spacing: -0.015em; margin: 0 0 10px; }
.display em, .h2 em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.005em;
}
.lead {
  font-size: clamp(18px, 1.9vw, 21px); line-height: 1.5;
  color: var(--fg-muted); margin: 0 0 36px; max-width: 780px;
}
.center .lead { margin-left: auto; margin-right: auto; }
mark {
  background: linear-gradient(180deg, transparent 55%, var(--yellow) 55%);
  color: inherit; padding: 0 0.08em;
}

/* Respiration en serif italique, centrée */
.pull {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(23px, 3vw, 34px); line-height: 1.32; letter-spacing: -0.005em;
  text-align: center; max-width: 820px; margin: 0 auto; color: var(--fg);
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.on { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }

/* ============ BOUTON ============ */
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  font-family: inherit; font-weight: 700; font-size: clamp(15px, 1.6vw, 18px); line-height: 1.2;
  letter-spacing: 0.01em; text-transform: uppercase;
  background: var(--yellow); color: var(--black);
  border: none; border-radius: 12px; padding: 21px 40px;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 0 0 6px rgba(255, 204, 0, 0.22);
  transition: background 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.cta-btn:hover { background: var(--yellow-hover); color: var(--black); box-shadow: 0 0 0 9px rgba(255, 204, 0, 0.26); }
.cta-btn:active { background: var(--yellow-press); transform: translateY(1px); }
.cta-btn:focus-visible { outline: 3px solid var(--black); outline-offset: 3px; }
.cta-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; background: var(--black); color: var(--yellow); flex-shrink: 0;
}
.cta-note { display: block; margin-top: 16px; font-size: 15px; color: var(--fg-subtle); }

/* ============ NAV COLLANTE ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 11px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(-110%); transition: transform 0.32s var(--ease); pointer-events: none;
}
.nav.on { transform: none; pointer-events: auto; }
.nav-name { font-weight: 700; font-size: 15px; letter-spacing: -0.02em; text-decoration: none; color: var(--fg); }
.nav .cta-btn { padding: 12px 22px; font-size: 13px; border-radius: 9px; box-shadow: none; }
.nav .cta-ico { width: 22px; height: 22px; }

/* ============ HERO ============ */
.hero {
  padding: clamp(56px, 7vw, 104px) 0 clamp(44px, 5vw, 72px); text-align: center;
  background: radial-gradient(ellipse 1000px 460px at 50% -6%, var(--yellow-tint) 0%, rgba(255,248,214,0) 72%);
  border-bottom: 1px solid var(--border);
}
.hero .container { max-width: 1000px; }
.hero .display { margin-left: auto; margin-right: auto; }
.hero .lead { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }

/* Marque en haut de page. Elle vit DANS le héros : posée au-dessus, elle
   découpait une bande blanche en travers du dégradé crème. */
.hero-logo { width: 104px; margin: 0 auto clamp(26px, 3vw, 38px); }

/* Pages sans héros (merci) : la marque se pose sur le fond uni. */
.brandbar { padding: 30px 0 0; text-align: center; }
.brandbar img { width: 104px; margin: 0 auto; }

/* ============ LISTE NUMEROTEE ============ */
.numlist { display: flex; flex-direction: column; gap: 14px; margin-top: 44px; }
.numitem {
  display: flex; gap: clamp(16px, 2.4vw, 30px); align-items: flex-start;
  background: var(--bg-alt);
  border-radius: 0 12px 12px 0;
  border-left: 4px solid var(--yellow);
  padding: clamp(20px, 2.4vw, 28px) clamp(20px, 2.6vw, 32px);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.alt .numitem { background: var(--n-0); border: 1px solid var(--border); border-left: 4px solid var(--yellow); }
.numitem:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(10,10,10,0.07); }
.numitem .num { font-weight: 800; font-size: clamp(22px, 2.6vw, 30px); color: var(--yellow-press); letter-spacing: -0.02em; line-height: 1.2; flex-shrink: 0; min-width: 44px; }
.numitem .body { flex: 1; min-width: 0; }
.numitem .body p { color: var(--fg-muted); font-size: 16.5px; }
.numitem .body p strong { color: var(--fg); font-weight: 700; }

/* ============ CITATIONS DE RECONNAISSANCE ============ */
.says { display: flex; flex-direction: column; gap: 11px; margin-top: 40px; }
.say {
  background: var(--n-0); border: 1px solid var(--border); border-left: 4px solid var(--yellow);
  border-radius: 0 12px 12px 0; padding: 18px 24px;
  font-size: 17px; color: var(--fg-muted); line-height: 1.5;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.say b { color: var(--fg); font-weight: 700; }
.say:hover { transform: translateX(4px); box-shadow: 0 8px 24px rgba(10,10,10,0.06); }

/* ============ LISTE À PUCES COCHÉES ============ */
.checks { list-style: none; margin: 36px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.checks li { display: flex; gap: 13px; align-items: flex-start; font-size: 16.5px; line-height: 1.5; color: var(--fg-muted); }
.checks li strong { color: var(--fg); font-weight: 700; }
.mk { flex-shrink: 0; width: 21px; height: 21px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-top: 3px; background: var(--yellow); color: var(--black); }
.mk svg { width: 12px; height: 12px; }
.mk.no { background: var(--n-200); color: var(--n-500); }

/* ============ TEMOIGNAGES ECRITS (carrousel d'images) ============ */
.written { background: var(--n-100); border-top: 1px solid var(--n-200); border-bottom: 1px solid var(--n-200); padding-bottom: clamp(48px, 6vw, 80px); }
.wslider-wrap { position: relative; margin-top: 40px; }
.wslider {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding: 4px clamp(18px, 5vw, 60px) 16px;
  scrollbar-width: none;
}
.wslider::-webkit-scrollbar { display: none; }
.wcard { flex: 0 0 auto; width: min(330px, 78vw); margin: 0; scroll-snap-align: center; }
.wcard img { width: 100%; height: auto; border-radius: 14px; display: block; background: var(--n-0); border: 1px solid var(--border); box-shadow: 0 4px 18px rgba(10,10,10,0.06); }
.warrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--yellow); color: var(--black);
  font-size: 26px; font-weight: 700; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(10,10,10,0.22);
  transition: transform 200ms var(--ease);
}
.warrow:hover { transform: translateY(-50%) scale(1.08); }
.warrow:focus-visible { outline: 3px solid var(--black); outline-offset: 3px; }
.warrow.left { left: 12px; }
.warrow.right { right: 12px; }
@media (max-width: 640px) { .warrow { display: none; } }

/* ============ POUR QUI / OPTIONS ============ */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.fit-col { border-radius: 14px; padding: clamp(24px, 2.6vw, 32px); background: var(--n-0); border: 1px solid var(--border); }
.fit-col.yes { border-color: var(--yellow); border-width: 2px; }
.fit-h { font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.fit-col.yes .fit-h { color: var(--yellow-press); }
.fit-col.no .fit-h { color: var(--fg-subtle); }
.fit-col p { font-size: 16px; line-height: 1.55; color: var(--fg-muted); }
.fit-col.yes p { color: var(--fg); }
.fit-col p strong { color: var(--fg); font-weight: 700; }

/* ============ QUI SUIS-JE ============ */
.about { display: flex; gap: clamp(26px, 3.6vw, 48px); align-items: center; margin-top: 44px; }
.about-photo { width: clamp(260px, 34vw, 420px); flex-shrink: 0; }
.about-photo img { border-radius: 14px; }
.about-photo.plain img { border-radius: 0; }
.about.rev { flex-direction: row-reverse; }
.about-photo.wide { width: clamp(280px, 42vw, 480px); }
.about-text p { font-size: 17px; color: var(--fg-muted); margin-bottom: 14px; }
.about-text strong { color: var(--fg); font-weight: 700; }
.step-n { font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow-press); margin: 0 0 10px; }
.tags { display: grid; grid-template-columns: repeat(2, max-content); gap: 8px; margin-top: 20px; }
.tag { padding: 7px 13px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 20px; background: var(--yellow-tint); border: 1px solid rgba(230,184,0,0.35); color: var(--n-700); }

/* ============ TEMOIGNAGES VIDEO ============ */
.tgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 44px; }
.tcard:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: calc(50% - 12px); margin: 0 auto; }
.tcard { background: var(--n-0); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform 220ms var(--ease), box-shadow 220ms var(--ease); }
.tcard:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,10,10,0.08); }
.tvid { position: relative; padding-bottom: 56.25%; height: 0; background: var(--n-100); }
.tvid iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tinfo { padding: 16px 20px 20px; }
.tname { font-weight: 700; font-size: 15px; }
.trole { font-size: 13px; color: var(--fg-subtle); margin: 2px 0 9px; }
.tquote { font-size: 14.5px; color: var(--fg-muted); line-height: 1.5; }

/* ============ FAQ ============ */
.faq { max-width: var(--narrow); margin: 42px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--n-0); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color 200ms var(--ease); }
.faq-item.open { border-color: var(--yellow); }
.faq-q {
  width: 100%; padding: 20px 24px; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-family: inherit; font-weight: 700; font-size: 17px; letter-spacing: -0.01em;
  color: inherit; text-align: left; line-height: 1.35;
}
.faq-q:hover { color: var(--yellow-press); }
.faq-sign { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--yellow-tint); color: var(--n-700); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 17px; line-height: 1; transition: transform 320ms var(--ease); }
.faq-item.open .faq-sign { transform: rotate(45deg); background: var(--yellow); }
.faq-a { max-height: 0; overflow: hidden; padding: 0 24px; font-size: 16px; color: var(--fg-muted); line-height: 1.6; transition: max-height 0.4s var(--ease), padding 0.35s var(--ease); }
.faq-item.open .faq-a { max-height: 900px; padding: 0 24px 22px; }

/* ============ CTA FINAL ============ */
.final { background: var(--ink); color: var(--n-0); text-align: center; }
.final .h2 { color: var(--n-0); line-height: 1.22; }
.final .lead { color: var(--n-300); }
.final mark {
  background: var(--yellow); color: var(--ink);
  padding: 0.02em 0.16em; border-radius: 4px;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}

/* ============ PIED ============ */
footer { background: var(--ink); color: var(--n-400); text-align: center; padding: 34px 20px 44px; font-size: 13px; line-height: 1.9; border-top: 1px solid rgba(255,255,255,0.08); }
footer a { color: var(--n-300); text-decoration: underline; text-underline-offset: 3px; }
footer a:hover { color: var(--yellow); }
footer .legal { max-width: 800px; margin: 14px auto 0; font-size: 12px; color: var(--n-500); line-height: 1.7; }
footer .flogo { width: 96px; margin: 0 auto 18px; }

/* =========================================================
   BLOCS PROPRES AU TUNNEL (absents de detailsprogramme)
   ========================================================= */

/* ---- Bandeau de preuve sociale (rangée d'avatars) ---- */
.avatars { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 34px; }
.avatars img { width: min(340px, 80vw); }
.avatars span { font-size: 14px; color: var(--fg-subtle); font-weight: 500; }

/* ---- Bandeau logos presse ---- */
.press { margin-top: 34px; }
.press img { width: min(560px, 100%); margin: 0 auto; }
@media (max-width: 860px) { .press img { margin: 0 auto; } }

/* ---- Lecteur vidéo (VSL) ----
   Structure imposée par Vidalytics :

     .vsl-frame
       #vidalytics_embed_…              ← padding-top 56,25 % = la zone vidéo
         .ui-player-container           ← le lecteur, en absolu sur cette zone
         .vidalytics-cta-button-container ← le bouton, EN DESSOUS, même conteneur

   Le bouton vit donc dans le même bloc que la vidéo. Encadrer .vsl-frame
   l'enfermait dans un grand rectangle blanc à angles arrondis. Le cadre est
   donc posé sur le LECTEUR seul ; le bouton, lui, se retrouve sur le fond de
   page, sous la vidéo, sans décor autour. */
.vsl { max-width: 940px; margin: 0 auto; }
.vsl-frame { position: relative; }

.vsl-frame .ui-player-container,
.vsl-frame .bitmovinplayer-container,
.vsl-frame [class*="Tech__wrapper"] {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(10,10,10,0.14), 0 0 0 8px rgba(255,204,0,0.16);
}

/* Vidalytics réserve 200 px sous la vidéo pour son bouton (displayMode
   « reserveSpace »). Tant que le conteneur n'a aucun enfant on l'aplatit ;
   dès que le bouton est injecté (à 10:10) il n'est plus :empty et reprend
   sa hauteur, sur le fond blanc de la page. */
.vsl-frame .vidalytics-cta-button-container:empty { height: 0 !important; min-height: 0 !important; }

/* ---- Popup d'optin ---- */
.mig-backdrop-brand { background: rgba(10,10,10,0.72) !important; backdrop-filter: blur(3px); }
.optin {
  display: none;
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 2147483001;
  width: min(520px, calc(100vw - 32px)); max-height: 92vh; overflow-y: auto;
  background: var(--n-0); border-radius: 16px;
  box-shadow: 0 30px 90px rgba(10,10,10,0.4);
  padding: 34px clamp(22px, 5vw, 40px) clamp(28px, 5vw, 38px);
  text-align: center;
}
.optin.on { display: block; }
.optin-progress { height: 26px; border-radius: 6px; background: var(--n-100); overflow: hidden; margin-bottom: 26px; }
.optin-progress i {
  display: flex; align-items: center; justify-content: center;
  width: 50%; height: 100%; background: var(--yellow); color: var(--black);
  font-style: normal; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; white-space: nowrap;
}
.optin h2 {
  font-weight: 700; font-size: clamp(22px, 4.6vw, 28px); line-height: 1.2;
  letter-spacing: -0.02em; margin: 0 0 22px; text-wrap: balance;
}
.optin label { display: block; text-align: left; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 8px; }
.optin input[type="email"] {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--fg);
  padding: 16px 18px; border: 1px solid var(--n-300); border-radius: 10px;
  background: var(--n-50); margin-bottom: 20px; -webkit-appearance: none; appearance: none;
}
.optin input[type="email"]::placeholder { color: var(--n-400); }
.optin input[type="email"]:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255,204,0,0.25); background: var(--n-0); }
.optin input.mig-error { border-color: var(--red) !important; outline: none !important; box-shadow: 0 0 0 4px rgba(214,59,59,0.18); }
.optin .cta-btn { width: 100%; box-shadow: none; }
.optin-note { margin: 16px 0 0; font-size: 13px; color: var(--fg-subtle); line-height: 1.5; }
.optin-close {
  position: absolute; top: 12px; right: 14px;
  width: 34px; height: 34px; border: none; border-radius: 50%;
  background: var(--n-100); color: var(--fg-muted);
  font-size: 19px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.optin-close:hover { background: var(--n-200); color: var(--fg); }

/* ---- Encart d'avertissement (page formulaire) ---- */
.notice {
  background: var(--n-0); border: 1px solid var(--border); border-left: 4px solid var(--yellow);
  border-radius: 0 12px 12px 0; padding: clamp(22px, 3vw, 30px) clamp(22px, 3.2vw, 34px);
  max-width: var(--narrow); margin: 0 auto; text-align: left;
}
.notice-h { font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow-press); margin-bottom: 12px; }
.notice p { font-size: 16.5px; color: var(--fg-muted); line-height: 1.55; }
.notice strong { color: var(--fg); font-weight: 700; }

/* ---- Formulaire Tally embarqué ---- */
.tally-wrap {
  max-width: var(--narrow); margin: 0 auto;
  background: var(--n-0); border: 1px solid var(--border); border-radius: 14px;
  padding: clamp(18px, 3vw, 30px);
  box-shadow: 0 12px 40px rgba(10,10,10,0.06);
}
/* Le badge « Made with Tally » est découpé en bas à droite du cadre, comme
   sur la page d'origine. */
.tally-clip { position: relative; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 62px), calc(100% - 210px) calc(100% - 62px), calc(100% - 210px) 100%, 0 100%); }
.tally-wrap iframe { width: 100%; border: 0; display: block; }
@media (max-width: 560px) {
  .tally-clip { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 58px), calc(100% - 150px) calc(100% - 58px), calc(100% - 150px) 100%, 0 100%); }
}

/* ---- Page de remerciement ---- */
.thanks { min-height: 100vh; display: flex; flex-direction: column; }
.thanks main { flex: 1; display: flex; align-items: center; padding: clamp(48px, 8vw, 96px) 0; }
.thanks-card {
  max-width: 700px; margin: 0 auto; text-align: center;
  background: var(--n-0); border: 1px solid var(--border); border-radius: 18px;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4.5vw, 52px);
  box-shadow: 0 18px 50px rgba(10,10,10,0.07);
}
.thanks-badge {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 26px;
  background: var(--yellow); color: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.thanks-badge svg { width: 30px; height: 30px; }
.thanks-card .h2 { margin-bottom: 20px; }
.thanks-card p { font-size: 17px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 18px; }
.thanks-card p strong { color: var(--fg); font-weight: 700; }
.thanks-sep { width: 52px; height: 3px; background: var(--n-200); border-radius: 2px; margin: 30px auto; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .tgrid { grid-template-columns: 1fr; }
  .tcard:last-child:nth-child(odd) { grid-column: auto; max-width: none; margin: 0; }
}
@media (max-width: 860px) {
  .fit { grid-template-columns: 1fr; }
  .about, .about.rev { flex-direction: column; text-align: center; }
  .about-photo { width: 100%; max-width: 320px; margin: 0 auto; }
  .about-photo.wide { max-width: 440px; }
  .about-text .step-n, .about-text h3 { text-align: center; }
  .about-text .checks li { text-align: left; }
  .tags { justify-content: center; }
}
@media (max-width: 640px) {
  :root { --gutter: 18px; }
  .eyebrow { font-size: 12px; letter-spacing: 0.09em; margin-bottom: 18px; }
  .cta-btn { padding: 18px 24px; width: 100%; }
  .nav .cta-btn { width: auto; padding: 11px 16px; font-size: 12px; }
  .numitem { gap: 14px; }
  .numitem .num { min-width: 34px; }
  .faq-q { font-size: 16px; padding: 17px 18px; }
  .faq-item.open .faq-a { padding: 0 18px 18px; max-height: 1100px; }
  .say { font-size: 16px; padding: 16px 18px; }
  .vsl-frame .ui-player-container,
  .vsl-frame .bitmovinplayer-container,
  .vsl-frame [class*="Tech__wrapper"] {
    border-radius: 12px; box-shadow: 0 14px 34px rgba(10,10,10,0.14), 0 0 0 5px rgba(255,204,0,0.16);
  }
}
@media (max-width: 340px) {
  .tags { grid-template-columns: 1fr; justify-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto !important; }
}
