/* Dr. Joshi's landing pages — design system mirrored from drjoshis.in */

:root {
  --ink: #0a1b32;
  --ink-2: #18314f;
  --body: #3b4a5f;
  --muted: #6b7f97;
  --navy: #1b3a6b;
  --navy-glass: rgba(27, 58, 107, 0.88);
  --blue: #2e5b9a;
  --blue-hover: #244a80;
  --blue-deep: #1f3d63;
  --forest: #2d6a4f;
  --forest-light: #3a9e72;
  --forest-soft: #e8f5ee;
  --mint: #9fd3b8;
  --bg: #eef4fb;
  --line: #d9e5f2;
  --glass: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.7);
  --danger: #b42318;
  --whatsapp: #25d366;
  --grad: linear-gradient(180deg, #edf4fb 0%, #dbe6f2 55%, #c7d8ea 100%);
  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius-xl: 32px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow-soft: 0 18px 50px rgba(46, 91, 154, 0.08);
  --shadow-card: 0 10px 30px rgba(27, 58, 107, 0.07);
  --max: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(40px, 6vw, 72px); }
.section--tight { padding-block: clamp(24px, 4vw, 40px); }
.section--grad { background: var(--grad); }

/* Big frosted panel that holds most sections, as on drjoshis.in */
.panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.5));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 5vw, 64px);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* ---------- Type ---------- */
.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
}
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(46px, 7.2vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 24px;
}
.display em { font-style: normal; color: var(--forest); }
.display--sm { font-size: clamp(40px, 5.6vw, 68px); }
.h2 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 18px;
}
.h2 em, .h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--forest); letter-spacing: -0.01em; }
.h3 { font-weight: 400; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 10px; }
.lead { font-size: clamp(16px, 1.6vw, 18px); line-height: 1.65; color: var(--body); max-width: 60ch; margin: 0 0 28px; }
.section-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px; font-weight: 500; letter-spacing: 0.02em;
  text-decoration: none; cursor: pointer;
  transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 14px 40px rgba(46, 91, 154, 0.24); }
.btn--primary:hover { background: var(--blue-hover); transform: translateY(-1px); }
.btn--ghost { background: rgba(255, 255, 255, 0.55); color: var(--blue-deep); border-color: rgba(255, 255, 255, 0.8); box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.85); }
.btn--light { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(255, 255, 255, 0.22); }
.btn--light:hover { background: rgba(255, 255, 255, 0.18); }
.btn--whatsapp { background: var(--whatsapp); color: #06301a; box-shadow: 0 14px 34px rgba(37, 211, 102, 0.25); }
.btn--whatsapp:hover { transform: translateY(-1px); background: #20c15d; }
.btn--block { width: 100%; }
.btn--sm { padding: 12px 24px; font-size: 14px; }
.btn[disabled] { opacity: .7; cursor: progress; transform: none; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Navbar ---------- */
.nav-wrap {
  position: fixed; inset-inline: 0; top: calc(12px + env(safe-area-inset-top, 0px));
  z-index: 50; padding-inline: 12px; display: flex; justify-content: center; pointer-events: none;
}
.nav {
  pointer-events: auto;
  width: 100%; max-width: var(--max); height: 74px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-inline: clamp(18px, 3vw, 40px);
  border-radius: 999px;
  background: var(--navy-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(27, 58, 107, 0.18);
  backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
}
.nav__logo img { height: 44px; width: auto; }
.nav__links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: rgba(255, 255, 255, 0.88); text-decoration: none; font-size: 14px; transition: color .2s; }
.nav__links a:hover { color: #fff; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__call {
  display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font-size: 14px;
  padding: 10px 16px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.16);
}
.nav__call svg { width: 16px; height: 16px; }
.nav .btn { padding: 12px 26px; font-size: 14px; box-shadow: 0 12px 28px rgba(46, 91, 154, 0.18); }
@media (max-width: 960px) { .nav__links { display: none; } }
@media (max-width: 560px) {
  .nav { height: 64px; padding-inline: 14px 8px; }
  .nav__logo img { height: 36px; }
  .nav__call span { display: none; }
  .nav__call { padding: 10px; }
  .nav .btn { padding: 10px 16px; font-size: 13px; }
}

/* ---------- Hero ---------- */
.hero { padding-top: calc(110px + env(safe-area-inset-top, 0px)); padding-bottom: clamp(24px, 4vw, 48px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 70px rgba(27, 58, 107, 0.18); aspect-ratio: 4 / 4.2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 18px;
  background: rgba(255, 255, 255, 0.78); border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  color: var(--ink-2); font-size: 14px; line-height: 1.4;
}
.hero__badge strong { font-family: var(--serif); font-weight: 400; font-size: 34px; color: var(--forest); line-height: 1; }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 16 / 11; }
}

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: clamp(28px, 4vw, 44px); }
.stat { padding: 18px 20px; border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.55); border: 1px solid var(--glass-border); }
.stat__num { font-family: var(--serif); font-weight: 300; font-size: clamp(34px, 4vw, 46px); line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.stat__label { margin-top: 8px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 520px) { .stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; } .stat { padding: 14px 12px; } .stat__label { font-size: 10px; letter-spacing: 0.1em; } }

/* ---------- Problem / callout ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.quote-card {
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px);
  background: var(--navy); color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 60px rgba(27, 58, 107, 0.2);
}
.quote-card p { margin: 0; }
.quote-card .big { font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; color: #fff; margin-bottom: 18px; }
.quote-card .big em { color: var(--mint); }
.pain-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.pain-list li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 16px; background: rgba(255, 255, 255, 0.6); border: 1px solid var(--glass-border); color: var(--ink-2); }
.pain-list svg { flex: none; width: 20px; height: 20px; margin-top: 2px; color: #c2532f; }

/* ---------- Pillars ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; } }
.card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(255, 255, 255, 0.7); border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.card__img { aspect-ratio: 16 / 10; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__kicker { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--forest); font-weight: 500; }
.card__body p { margin: 0 0 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.tag { font-size: 12px; padding: 6px 12px; border-radius: 999px; background: var(--forest-soft); color: var(--forest); }

/* ---------- Dark outcomes band ---------- */
.dark { background: var(--ink); color: rgba(255, 255, 255, 0.72); }
.dark .eyebrow { color: rgba(255, 255, 255, 0.55); }
.dark .h2 { color: #fff; }
.dark .h2 em { color: var(--mint); }
.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.1); border-radius: var(--radius-lg); overflow: hidden; }
.outcome { background: var(--ink); padding: clamp(24px, 4vw, 40px); }
.outcome__num { font-family: var(--serif); font-weight: 300; font-size: clamp(52px, 6vw, 76px); line-height: 1; color: #fff; letter-spacing: -0.02em; }
.outcome__num span { color: var(--mint); }
.outcome p { margin: 14px 0 0; max-width: 30ch; }
.fineprint { font-size: 12px; color: rgba(255, 255, 255, 0.45); margin-top: 20px; }
@media (max-width: 760px) { .outcomes { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stories--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .stories, .stories--2 { grid-template-columns: 1fr; } }
.story { border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.72); border: 1px solid var(--glass-border); box-shadow: var(--shadow-card); overflow: hidden; display: flex; flex-direction: column; }
.story__img { aspect-ratio: 16 / 9; overflow: hidden; }
.story__img img { width: 100%; height: 100%; object-fit: cover; }
.story__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.story__tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.story__metric { font-family: var(--serif); font-size: 40px; font-weight: 400; line-height: 1.05; color: var(--forest); margin-top: 10px; }
.story__metric-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.story blockquote { margin: 0 0 18px; color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.story__who { margin-top: auto; font-size: 14px; color: var(--ink); font-weight: 500; }
.story__who span { display: block; color: var(--muted); font-weight: 400; font-size: 13px; }

/* ---------- Comparison ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 860px) { .compare { grid-template-columns: 1fr; } }
.compare__col { border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 36px); }
.compare__col--std { background: rgba(255, 255, 255, 0.55); border: 1px solid var(--glass-border); }
.compare__col--ours { background: var(--navy); color: rgba(255, 255, 255, 0.85); box-shadow: 0 30px 60px rgba(27, 58, 107, 0.22); }
.compare__col--ours .h3 { color: #fff; }
.compare__col > p { margin: 0 0 20px; }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.5; }
.checks svg { flex: none; width: 20px; height: 20px; margin-top: 2px; }
.checks--x svg { color: #a3aebd; }
.checks--ok svg { color: var(--mint); }
.checks--forest svg { color: var(--forest); }

/* ---------- Biomarkers ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip { padding: 10px 18px; border-radius: 999px; background: rgba(255, 255, 255, 0.72); border: 1px solid var(--glass-border); color: var(--ink-2); font-size: 14px; box-shadow: 0 6px 16px rgba(27, 58, 107, 0.05); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; list-style: none; margin: 0; padding: 0; }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps, .steps--3 { grid-template-columns: 1fr; } }
.step { position: relative; padding: 24px; border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.7); border: 1px solid var(--glass-border); }
.step__num { font-family: var(--serif); font-size: 44px; line-height: 1; font-weight: 300; color: var(--blue); opacity: .85; }
.step h3 { font-size: 18px; font-weight: 500; color: var(--ink); margin: 14px 0 8px; letter-spacing: -0.01em; }
.step p { margin: 0; font-size: 14.5px; line-height: 1.55; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px, 5vw, 64px); align-items: start; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } }
.faq { display: grid; gap: 12px; }
.faq details { border-radius: 18px; background: rgba(255, 255, 255, 0.72); border: 1px solid var(--glass-border); padding: 0 22px; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 36px 20px 0; position: relative; font-weight: 500; color: var(--ink); line-height: 1.4; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 300; color: var(--blue); transition: transform .25s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { margin: 0 0 20px; }

/* ---------- Form ---------- */
.book-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; } }
.trust { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.trust li { display: flex; gap: 12px; align-items: center; color: var(--ink-2); }
.trust svg { width: 20px; height: 20px; color: var(--forest); flex: none; }

.form-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
.form-card__title { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3vw, 34px); line-height: 1.1; color: var(--ink); margin: 0 0 6px; letter-spacing: -0.01em; }
.form-card__sub { margin: 0 0 22px; font-size: 14px; color: var(--muted); }
.lead-form { display: grid; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.field label, .field .label { display: block; font-size: 13px; font-weight: 500; color: var(--ink-2); }
.field .opt { color: var(--muted); font-weight: 400; }
.input, .select, .textarea {
  width: 100%; margin-top: 8px;
  padding: 13px 16px;
  border-radius: 12px; border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink-2); font-size: 15px;
  outline: none; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.input::placeholder, .textarea::placeholder { color: #94a7bb; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(46, 91, 154, 0.12); }
.select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%236b7f97' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.textarea { min-height: 96px; resize: vertical; }
.phone-group { display: flex; margin-top: 8px; }
.phone-group .prefix { display: inline-flex; align-items: center; padding: 0 14px; border: 1px solid var(--line); border-right: 0; border-radius: 12px 0 0 12px; background: rgba(238, 244, 251, 0.9); color: var(--muted); font-size: 15px; }
.phone-group .input { margin-top: 0; border-radius: 0 12px 12px 0; }
.field.has-error .input, .field.has-error .select { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.08); }
.field.has-error .phone-group .prefix { border-color: var(--danger); }
.error-msg { display: none; margin-top: 6px; font-size: 12.5px; color: var(--danger); }
.field.has-error .error-msg { display: block; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.5; color: var(--body); cursor: pointer; }
.consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--blue); flex: none; }
.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { display: none; padding: 14px 16px; border-radius: 12px; font-size: 14px; line-height: 1.5; }
.form-status.is-error { display: block; background: #fdecea; color: #7a1c14; border: 1px solid #f5c2bc; }
.form-status a { font-weight: 600; }
.form-foot { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12.5px; color: var(--muted); margin: 0; text-align: center; }
.form-foot svg { width: 14px; height: 14px; }
.spinner { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; animation: spin .8s linear infinite; display: none; }
.is-sending .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Final CTA ---------- */
.cta-band { text-align: center; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, 0.66); padding-block: 56px calc(40px + env(safe-area-inset-bottom, 0px)); font-size: 14px; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; } }
.footer img { height: 44px; width: auto; margin-bottom: 14px; }
.footer h4 { color: #fff; font-size: 13px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__legal { border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 36px; padding-top: 24px; font-size: 12px; line-height: 1.6; color: rgba(255, 255, 255, 0.45); }
.footer--mini { padding-block: 32px calc(96px + env(safe-area-inset-bottom, 0px)); }
.footer--mini .footer__legal { margin-top: 0; border-top: 0; padding-top: 0; }

/* ---------- Floating WhatsApp + sticky mobile CTA ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--whatsapp); color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform .25s ease, bottom .3s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: none; gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.86); border-top: 1px solid var(--line);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transform: translateY(110%); transition: transform .3s ease;
}
.sticky-cta .btn { flex: 1; padding: 14px 12px; }
@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  .sticky-cta.is-visible { transform: none; }
  body.sticky-on .wa-float { bottom: calc(86px + env(safe-area-inset-bottom, 0px)); }
}

/* ---------- Short page specifics ---------- */
.hero--quick .hero__grid { grid-template-columns: 1fr 460px; grid-template-areas: "copy form" "points form"; align-items: start; row-gap: 8px; }
.hero__copy { grid-area: copy; }
.hero__form { grid-area: form; }
.hero__points { grid-area: points; }
.hero--quick .form-card { background: rgba(255, 255, 255, 0.82); }
.hero--quick .display { font-size: clamp(40px, 5.8vw, 72px); }
.bullets { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 12px; }
.bullets li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); font-size: 16px; line-height: 1.5; }
.bullets svg { flex: none; width: 22px; height: 22px; color: var(--forest); margin-top: 1px; }
.hero__thumb { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16 / 8; box-shadow: var(--shadow-card); }
.hero__thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 960px) {
  .hero--quick .hero__grid { grid-template-columns: 1fr; grid-template-areas: "copy" "form" "points"; row-gap: 24px; }
  .hero--quick .lead { margin-bottom: 0; }
  .hero--quick .hero__thumb { display: none; }
}

/* ---------- Thank-you ---------- */
.ty { min-height: 100vh; display: grid; place-items: center; padding: calc(110px + env(safe-area-inset-top, 0px)) var(--gutter) 48px; }
.ty .panel { max-width: 880px; text-align: center; }
.ty__icon { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 24px; display: grid; place-items: center; background: var(--forest-soft); color: var(--forest); }
.ty__icon svg { width: 34px; height: 34px; }
.ty .steps { text-align: left; margin: 32px 0; }
.ty .btn-row { justify-content: center; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
.sticky-cta .btn--ghost { border-color: var(--line); background: #fff; }
