:root {
  --brand: #0e9e92;
  --brand-dark: #0b7d74;
  --navy: #0c3a48;
  --navy-2: #10485a;
  --accent: #ff6f4d;
  --accent-dark: #ec5a38;
  --sun: #ffb020;
  --bg: #f4f9fa;
  --text: #12333d;
  --muted: #5b7683;
  --line: #e3edef;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(12, 58, 72, 0.10);
  --shadow-lg: 0 26px 60px rgba(12, 58, 72, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

/* Un element avec l'attribut hidden doit TOUJOURS etre masque,
   meme si une classe lui donne un display (flex/grid...). */
[hidden] { display: none !important; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-dark); }

.container { width: min(1140px, 92%); margin: 0 auto; }
.container--narrow { width: min(760px, 92%); }
.center { text-align: center; }
.hl { color: var(--brand); }

/* Boutons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer; font-weight: 700; border-radius: 12px; padding: 13px 22px; font-size: 1rem; text-decoration: none; transition: transform 0.08s, background 0.15s, box-shadow 0.15s; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 22px rgba(255, 111, 77, 0.35); }
.btn--primary:hover { background: var(--accent-dark); }
.btn--primary:active { transform: translateY(1px); }
.btn--soft { background: #e9f6f4; color: var(--brand-dark); }
.btn--soft:hover { background: #d8efec; }
.btn--light { background: #fff; color: var(--brand-dark); box-shadow: var(--shadow); }
.btn--light:hover { background: #f3faf9; }
.btn--sm { padding: 9px 16px; font-size: 0.9rem; }
.btn--lg { padding: 16px 28px; font-size: 1.08rem; }
.btn--block { width: 100%; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: #25d366;
  color: #fff;
  padding: 8px 22px 8px 8px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
  transition: transform 0.08s, background 0.15s, filter 0.15s;
}
.btn-wa:hover { background: #1ebe5a; filter: brightness(1.03); transform: translateY(-1px); }
.btn-wa:active { transform: translateY(1px); }
.btn-wa__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25d366;
  border: 3px solid #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  flex: 0 0 auto;
}
.btn-wa__logo svg { width: 26px; height: 26px; display: block; color: #fff; }
.btn-wa__text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.btn-wa__text strong { font-size: 1.05rem; font-weight: 800; letter-spacing: 0.01em; }
.btn-wa__text small { font-size: 0.82rem; font-weight: 500; opacity: 0.95; }

/* Annonce + Nav */
.announce { background: linear-gradient(90deg, var(--navy), var(--brand-dark)); color: #eafaf8; text-align: center; font-size: 0.85rem; padding: 8px 12px; }
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; gap: 18px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); }
.brand__logo { width: 40px; height: 40px; border-radius: 10px; }
.brand__name { font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; }
.nav__links { display: flex; gap: 22px; margin-left: auto; }
.nav__links a { color: var(--navy); text-decoration: none; font-weight: 600; font-size: 0.94rem; }
.nav__links a:hover { color: var(--brand); }
.nav .btn--primary { margin-left: 6px; }

/* Hero */
.hero { background: radial-gradient(1100px 500px at 12% -10%, #14586a 0%, var(--navy) 55%); color: #e9f5f6; padding: 60px 0 80px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: start; }
.hero__eyebrow { display: inline-block; background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; padding: 9px 20px; border-radius: 999px; font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.01em; }
.hero__eyebrow::before { content: ""; display: inline-block; width: 8px; height: 8px; margin: 0 9px 1px 0; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 4px rgba(255, 176, 32, 0.18); }
.hero__copy h1 { font-size: 2.65rem; line-height: 1.1; margin: 0 0 16px; color: #fff; letter-spacing: -0.02em; }
.hero__lead { font-size: 1.12rem; color: #cfe4e6; margin: 0 0 22px; }
.hero__points { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.hero__points li { position: relative; padding-left: 30px; color: #eaf5f6; }
.hero__points li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: #eab308; color: #3d2c00; font-size: 0.72rem; font-weight: 800; display: grid; place-items: center; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; }
.hbadge { background: rgba(255, 255, 255, 0.10); border: 1px solid rgba(255, 255, 255, 0.18); color: #eaf5f6; font-size: 0.82rem; font-weight: 600; padding: 7px 13px; border-radius: 999px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero__logo { margin-top: 30px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero__logo img { width: 230px; height: 230px; border-radius: 28px; background: #fff; padding: 14px; box-shadow: var(--shadow-lg); }
.hero__logo-name { margin-top: 14px; font-weight: 800; font-size: 2rem; color: #fff; letter-spacing: -0.02em; }

/* Carte formulaire */
.card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.form-card { padding: 26px; color: var(--text); scroll-margin-top: 90px; }
.form-card__title { margin: 0 0 4px; font-size: 1.4rem; }
.form-card__sub { margin: 0 0 18px; color: var(--muted); font-size: 0.94rem; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field > span { font-size: 0.82rem; font-weight: 600; color: #2c4a54; }
.field input, .field select { padding: 12px; border: 1px solid var(--line); border-radius: 11px; font-size: 0.95rem; background: #fff; color: var(--text); transition: border-color 0.15s, box-shadow 0.15s; }
.field input:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(14, 158, 146, 0.18); }
.nohealth { font-size: 0.78rem; color: var(--muted); background: #f2f8f9; border: 1px dashed var(--line); padding: 9px 11px; border-radius: 10px; margin: 4px 0 14px; }
.consent { display: flex; gap: 10px; align-items: flex-start; background: #eef8f7; border: 1px solid #d3ece9; border-radius: 11px; padding: 12px; margin-bottom: 16px; cursor: pointer; }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--brand); flex: 0 0 auto; }
.consent span { font-size: 0.82rem; color: #234; }
.form-note { font-size: 0.74rem; color: var(--muted); margin: 12px 0 0; }
.form-message { margin-top: 12px; font-size: 0.9rem; }
.form-message.ok { color: #04724d; background: #e8f8f1; border: 1px solid #a9e6cd; padding: 12px; border-radius: 10px; }
.form-message.err { color: #b3261e; background: #fdecea; border: 1px solid #f6c7c2; padding: 12px; border-radius: 10px; }

/* Préremplissage social — barre SSO type capture (Continue with Google / Facebook / Apple) */
.social-fill {
  margin: 18px 0 0;
  padding: 18px 0 4px;
  border-radius: 0;
  background: transparent; /* plus de fond bleu */
  border: none;
}
.social-fill__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.social-fill__divider::before,
.social-fill__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.social-fill__label {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}
.social-fill__btns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* Boutons pleine largeur — fond BLANC strict, hauteur 48px, logos 20×20 */
.sso-btn,
#btn-google,
#btn-facebook,
#btn-apple {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  padding: 0 44px;
  border: 1px solid #12333d;
  border-radius: 4px;
  background: #ffffff !important; /* fond blanc forcé */
  background-color: #ffffff !important;
  color: #12333d;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.sso-btn:hover,
#btn-google:hover,
#btn-facebook:hover,
#btn-apple:hover {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #12333d;
}
.sso-btn:focus-visible {
  outline: 2px solid #12333d;
  outline-offset: 2px;
}

/* Logo fixe à gauche — taille STRICTEMENT 20×20 pour les 3 */
.sso-btn__logo {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.sso-btn__logo svg {
  display: block;
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
}

.sso-btn__logo--google {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #fff;
  padding: 0;
}

.sso-btn__text {
  pointer-events: none;
  text-align: center;
  white-space: nowrap;
  color: #12333d;
}

/* Apple : logo NOIR sur fond blanc */
.sso-btn--apple .sso-btn__logo,
.sso-btn__logo--apple,
#btn-apple .sso-btn__logo {
  color: #000000 !important;
}
#btn-apple .sso-btn__logo svg path {
  fill: #000000 !important;
}

.social-fill__hint {
  margin: 12px 0 0;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
}
.social-fill .form-message {
  margin-top: 10px;
}
.social-fill .form-message.ok,
.social-fill .form-message.err {
  text-align: left;
}
.manual-tag {
  display: inline-block;
  margin-left: 6px;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  color: #9a3412;
  background: #ffedd5;
  border: 1px solid #fdba74;
  border-radius: 999px;
  padding: 2px 7px;
  vertical-align: middle;
}

/* Vous êtes où ? */
.islands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.island {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: var(--shadow);
  transition: transform 0.12s, box-shadow 0.15s, border-color 0.15s;
}
.island:hover {
  transform: translateY(-3px);
  border-color: #9ad9d2;
  box-shadow: var(--shadow-lg);
}
.island.is-active {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(14, 158, 146, 0.18), var(--shadow);
}
.island__flag { font-size: 2rem; line-height: 1; }
.island__name { font-size: 1.15rem; font-weight: 800; color: var(--navy); }
.island__desc { font-size: 0.86rem; color: var(--muted); }
.island__cta { margin-top: 8px; font-size: 0.9rem; font-weight: 700; color: var(--brand-dark); }

/* Barre de stats */
.stats-band { background: #fff; border-bottom: 1px solid var(--line); }
.stats-band__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 22px 0; text-align: center; }
.stat b { display: block; font-size: 1.7rem; color: var(--navy); font-weight: 800; }
.stat span { font-size: 0.82rem; color: var(--muted); }

/* Sections */
.section { padding: 68px 0; }
.section--alt { background: #fff; }
.section__title { text-align: center; font-size: 2rem; margin: 0 0 10px; color: var(--navy); letter-spacing: -0.02em; }
.section__sub { text-align: center; color: var(--muted); margin: 0 auto 36px; max-width: 620px; }

/* Chiffres & graphiques */
.charts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.chart-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); text-align: center; display: flex; flex-direction: column; justify-content: center; }
.chart-card h3 { margin: 0 0 12px; color: var(--navy); font-size: 1.05rem; }
.chart-card > p { color: var(--muted); font-size: 0.9rem; margin: 14px 0 0; }
.donut { width: 180px; height: 180px; border-radius: 50%; margin: 0 auto; background: conic-gradient(var(--brand) calc(var(--val) * 1%), #e6eef0 0); display: grid; place-items: center; }
.donut__hole { width: 128px; height: 128px; border-radius: 50%; background: #fff; display: grid; place-items: center; align-content: center; text-align: center; }
.donut__hole b { font-size: 1.9rem; color: var(--navy); line-height: 1; }
.donut__hole span { font-size: 0.72rem; color: var(--muted); padding: 4px 14px 0; }
.barchart { display: grid; gap: 14px; margin-top: 6px; }
.bar-row { display: grid; grid-template-columns: 92px 1fr 46px; align-items: center; gap: 10px; }
.bar-row > span { font-size: 0.85rem; color: var(--muted); text-align: left; }
.bar-track { height: 14px; background: #eef4f5; border-radius: 8px; overflow: hidden; }
.bar-track i { display: block; height: 100%; background: linear-gradient(90deg, var(--brand), var(--sun)); border-radius: 8px; }
.bar-row > b { color: var(--navy); font-size: 0.9rem; text-align: right; }
.stat-list { gap: 18px; text-align: left; }
.stat-line b { font-size: 1.7rem; color: var(--brand-dark); display: block; line-height: 1.1; }
.stat-line span { color: var(--muted); font-size: 0.9rem; }

/* Segments */
.segments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.segment { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.segment--featured { border-color: var(--brand); box-shadow: 0 20px 44px rgba(14, 158, 146, 0.20); transform: translateY(-6px); }
.segment__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.segment__visual { height: 164px; overflow: hidden; margin: -26px -22px 20px; border-radius: var(--radius) var(--radius) 14px 14px; background: #d8efec; }
.segment__visual img { width: 100%; height: 100%; object-fit: cover; }
.segment__icon { width: 48px; height: 48px; margin-bottom: 8px; padding: 11px; border-radius: 14px; background: #e9f6f4; color: var(--brand-dark); stroke: currentColor; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.segment--featured .segment__icon { background: #d7f1ed; }
.segment h3 { margin: 10px 0 6px; font-size: 1.25rem; color: var(--navy); }
.segment p { color: var(--muted); margin: 0 0 14px; }
.segment ul { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 8px; }
.segment ul li { position: relative; padding-left: 26px; font-size: 0.92rem; }
.segment ul li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }
.segment__saving { margin: 0 0 20px !important; padding: 10px 12px; border-radius: 10px; background: #fff6e8; color: #8a4b00 !important; font-size: 0.85rem; line-height: 1.35; }
.segment__saving strong { color: #b85d00; font-size: 1.05rem; }
.segment .btn { margin-top: auto; }

/* Pourquoi */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.why__media img { width: 100%; min-height: 420px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.why__item { display: flex; gap: 14px; margin-top: 18px; }
.why__item span { font-size: 1.6rem; flex: 0 0 auto; }
.why__item b { color: var(--navy); }
.why__item p { margin: 2px 0 0; color: var(--muted); font-size: 0.95rem; }

/* Garanties */
.guarantees { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guarantee { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; text-align: center; box-shadow: var(--shadow); }
.guarantee span { font-size: 2rem; }
.guarantee b { display: block; margin: 8px 0 2px; color: var(--navy); }
.guarantee p { margin: 0; color: var(--muted); font-size: 0.88rem; }

/* Etapes */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 34px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px 22px; text-align: center; box-shadow: var(--shadow); }
.step__n { width: 44px; height: 44px; margin: 0 auto 12px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; font-size: 1.2rem; display: grid; place-items: center; }
.step b { color: var(--navy); }
.step p { color: var(--muted); margin: 6px 0 0; font-size: 0.92rem; }

/* Avis */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; box-shadow: var(--shadow); }
.review__person { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.review__person img { width: 58px; height: 58px; object-fit: cover; border: 3px solid #d7f1ed; border-radius: 50%; }
.review p { margin: 0; font-style: italic; color: #234; }
.review footer { color: var(--brand-dark); font-weight: 700; font-size: 0.95rem; }
.review footer span { display: block; margin-top: 1px; color: var(--muted); font-size: 0.78rem; font-weight: 600; }
.reviews__note { text-align: center; color: var(--muted); font-size: 0.78rem; margin-top: 16px; }

/* FAQ */
.faq { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--navy); }
.faq p { color: var(--muted); margin: 10px 0 0; }

/* CTA final */
.cta-final { background: linear-gradient(90deg, var(--brand-dark), var(--brand)); color: #fff; padding: 60px 0; text-align: center; }
.cta-final h2 { margin: 0 0 8px; font-size: 1.9rem; }
.cta-final p { margin: 0 0 22px; color: #e6f7f5; }

/* Legal */
.legal { padding: 30px 0 50px; }
.legal details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; }
.legal summary { cursor: pointer; font-weight: 600; color: #2c4a54; }
.legal__list { margin: 16px 0 0; padding-left: 18px; color: var(--muted); font-size: 0.85rem; display: grid; gap: 8px; }

/* Footer */
.footer { background: var(--navy); color: #b9d3d8; padding: 28px 0 34px; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; }
.footer__brand img { width: 34px; height: 34px; border-radius: 8px; }
.footer__links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__links a { color: #cfe3e6; text-decoration: none; font-size: 0.9rem; }
.footer__links a:hover { color: #fff; }
.footer__legal { margin-top: 16px; font-size: 0.78rem; color: #8fb0b6; }

/* WhatsApp flottant */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; font-size: 1.7rem; display: grid; place-items: center; text-decoration: none; box-shadow: 0 12px 26px rgba(37, 211, 102, 0.45); }
.wa-float:hover { background: #1ebe5a; }

.social-fill--inline {
  margin: 8px 0 14px;
  padding: 0;
}

/* Multi-étapes formulaire */
.form-progress {
  margin: 0 0 16px;
}
.form-progress__bar {
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}
.form-progress__bar span {
  display: block;
  height: 100%;
  width: 33.333%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: inherit;
  transition: width 0.25s ease;
}
.form-progress__label {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.form-step__q {
  margin: 0 0 14px;
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--navy);
  line-height: 1.35;
}
.form-step__nav {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}
.form-step__nav .btn--primary {
  flex: 1;
}
.form-step[hidden] {
  display: none !important;
}

/* CTA sticky mobile */
.mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .hero__grid, .why { grid-template-columns: 1fr; gap: 20px; }
  .hero { padding: 28px 0 40px; }
  .hero__grid {
    display: flex;
    flex-direction: column;
  }
  /* Formulaire EN PREMIER sur mobile (TikTok / Meta ads) */
  .hero__copy { order: 2; }
  .form-card { order: 1; margin-top: 0; }
  .hero__copy h1 { font-size: 1.55rem; margin-bottom: 10px; }
  .hero__lead { font-size: 0.98rem; margin-bottom: 12px; }
  .hero__points { display: none; } /* allège above-the-fold */
  .hero__badges { margin-bottom: 12px; gap: 6px; }
  .hero__logo { display: none; }
  .hero__cta .btn--lg { width: 100%; }
  .segments, .guarantees, .steps, .reviews, .charts, .islands { grid-template-columns: 1fr; }
  .segment--featured { transform: none; }
  .nav__links { display: none; }
  .stats-band__inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  .mobile-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(12, 58, 72, 0.12);
    backdrop-filter: blur(8px);
  }
  .mobile-cta.is-hidden { display: none; }
  .wa-float { bottom: 78px; }
  body { padding-bottom: 78px; }
}
