/* ================================================================
   SUMMIROW DENTAL — Warm, premium, approachable landing page
   Brand: navy #293E61 · wine #7E2C31
   Direction: Kalyan Hospital-style warmth — cream backgrounds,
   soft coral tints, big imagery, generous whitespace.
   ================================================================ */

:root {
  /* Brand */
  --navy:        #293E61;
  --navy-dark:   #1A2A48;
  --navy-mid:    #213354;
  --orange:      #7E2C31;
  --orange-h:    #62212A;
  --orange-soft: #F5DDDF;
  --gold:        #D4A017;
  --gold-soft:   #EAE7EE;

  /* Warm neutrals — wine-rose palette */
  --cream:       #FAF4F0;   /* page bg */
  --cream-2:     #F1E6DF;   /* section alt */
  --peach:       #F6DEDF;   /* rose-tinted accent */
  --ivory:       #FDF8F5;
  --paper:       #FFFFFF;

  /* Text */
  --ink:         #1A1A2E;
  --ink-m:       #3A3F52;
  --ink-l:       #6B7185;
  --rule:        #E7DECF;
  --rule-soft:   #F1E8D8;

  /* Active accent — driven by Tweaks panel */
  --accent:        var(--orange);
  --accent-h:      var(--orange-h);
  --accent-soft:   var(--orange-soft);
  --accent-ink:    #FFFFFF;

  /* Type scale */
  --display: clamp(40px, 6.2vw, 84px);
  --h1:      clamp(34px, 4.6vw, 60px);
  --h2:      clamp(28px, 3.4vw, 46px);
  --h3:      clamp(20px, 1.9vw, 26px);

  /* Shape */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Shadows — warm, soft */
  --sh-1: 0 1px 2px rgba(60, 40, 20, .04), 0 2px 8px rgba(60, 40, 20, .04);
  --sh-2: 0 4px 14px rgba(60, 40, 20, .08), 0 10px 30px rgba(60, 40, 20, .06);
  --sh-3: 0 12px 40px rgba(27, 48, 96, .12), 0 30px 80px rgba(60, 40, 20, .08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Geist", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* ------------------- LAYOUT ------------------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.wrap-tight { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; position: relative; }
.section--alt { background: var(--cream-2); }
.section--ivory { background: var(--ivory); }
.section--navy { background: var(--navy-dark); color: #fff; }
.section--peach { background: linear-gradient(180deg, var(--peach) 0%, var(--cream) 100%); }
@media (max-width: 720px) { .section { padding: 72px 0; } .wrap, .wrap-tight { padding: 0 20px; } }

/* ------------------- TYPE ------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  padding: 6px 0;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1.5px; background: var(--accent);
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: #E6A8AC; }
.eyebrow--light::before { background: #E6A8AC; }

.nav__logo-img{
    width:200px;
}
h1, h2, h3, h4 {
  font-family: "Fraunces", "Geist", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--h1); font-weight: 450; letter-spacing: -0.025em; }
h2 { font-size: var(--h2); font-weight: 450; }
h3 { font-size: var(--h3); font-weight: 500; }

.sans { font-family: "Geist", sans-serif !important; }
.serif { font-family: "Fraunces", serif !important; }
.italic-accent { font-style: italic; font-weight: 400; color: var(--accent); }
.under-accent {
  background-image: linear-gradient(transparent 62%, var(--accent-soft) 62%);
  padding: 0 2px;
}

p { margin: 0; color: var(--ink-m); line-height: 1.7; }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-m); line-height: 1.65; max-width: 60ch; }
.muted { color: var(--ink-l); }
.tnum { font-variant-numeric: tabular-nums; }

/* ------------------- BUTTONS ------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  height: 56px; padding: 0 26px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; stroke-width: 2; }
.btn--primary {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 8px 24px -8px rgba(126, 44, 49, .55);
}
.btn--primary:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 14px 32px -10px rgba(126, 44, 49, .65); }
.btn--ghost {
  background: transparent; color: var(--navy-dark);
  border: 1.5px solid rgba(27, 48, 96, .15);
}
.btn--ghost:hover { border-color: var(--navy-dark); background: var(--paper); }
.btn--dark { background: var(--navy-dark); color: #fff; }
.btn--dark:hover { background: var(--navy); }
.btn--wa { background: #25D366; color: #fff; }
.btn--wa:hover { background: #1da851; }
.btn--ivory { background: #fff; color: var(--navy-dark); }
.btn--lg { height: 64px; padding: 0 32px; font-size: 16px; }
.btn--sm { height: 44px; padding: 0 18px; font-size: 14px; }
.btn--block { width: 100%; }

/* ------------------- CARDS / SURFACES ------------------- */
.card {
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--rule-soft);
  box-shadow: var(--sh-1);
  padding: 28px;
}
.card--soft { background: var(--ivory); }
.card--peach { background: var(--peach); border-color: #E6CACB; }
.card--gold { background: var(--gold-soft); border-color: #F0E3B8; }

/* ------------------- CHIPS / BADGES ------------------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 32px; padding: 0 14px;
  border-radius: 999px;
  background: var(--ivory); border: 1px solid var(--rule);
  font-size: 13px; font-weight: 500;
  color: var(--ink-m);
}
.chip svg { width: 14px; height: 14px; color: var(--accent); }
.chip--accent { background: var(--accent-soft); border-color: rgba(126, 44, 49, .25); color: var(--orange-h); }
.chip--gold { background: var(--gold-soft); border-color: #ECD79A; color: #8B6914; }
.chip--ghost-dark { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.9); }

/* ------------------- ICONS ------------------- */
.ico { width: 22px; height: 22px; stroke-width: 1.75; }
.ico-bubble {
  width: 52px; height: 52px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ico-bubble svg { width: 24px; height: 24px; stroke-width: 1.75; }
.ico-bubble--gold { background: var(--gold-soft); color: #8B6914; }
.ico-bubble--navy { background: rgba(27,48,96,.08); color: var(--navy); }
.ico-bubble--ghost {
  background: rgba(255,255,255,.08); color: #F5DDDF;
  border: 1px solid rgba(255,255,255,.14);
}

/* ------------------- IMAGE PLACEHOLDERS (warm gradients) ------------------- */
.ph {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #FFE3CC 0%, #FFC7A0 45%, #F19164 100%);
  display: flex; align-items: flex-end;
  color: rgba(27,48,96,.55);
  isolation: isolate;
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 20% 20%, rgba(255,255,255,.55), transparent 55%),
              radial-gradient(80% 80% at 90% 80%, rgba(216,140,90,.4), transparent 60%);
  z-index: -1;
}
.ph__label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 16px;
  color: rgba(27,48,96,.7);
}
.ph--blue { background: linear-gradient(135deg, #DCE7FF 0%, #B6CBFC 45%, #7E9CE8 100%); color: rgba(27,48,96,.6); }
.ph--mint { background: linear-gradient(135deg, #DFF4EC 0%, #BFE9D6 45%, #84CCAE 100%); }
.ph--rose { background: linear-gradient(135deg, #FFE2E8 0%, #FFC4D2 45%, #F285A1 100%); }
.ph--gold { background: linear-gradient(135deg, #FFF1CF 0%, #F8DC93 45%, #E0B948 100%); }
.ph--sand { background: linear-gradient(135deg, #F8EEDC 0%, #EBD9B6 45%, #C8A86F 100%); }

/* ------------------- SCROLL-FADE-IN ------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 239, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, padding .25s;
}
.nav.is-scrolled {
  background: rgba(255, 252, 247, 0.92);
  border-bottom-color: var(--rule-soft);
  box-shadow: 0 4px 20px rgba(60, 40, 20, .05);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; max-width: 1280px; margin: 0 auto; padding: 0 28px;
  transition: height .25s;
}
.nav.is-scrolled .nav__inner { height: 64px; }
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__mark {
  width: 42px; height: 42px;
  background: var(--navy-dark);
  color: #fff;
  border-radius: 12px;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.nav__mark::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(126,44,49,.55), transparent 60%);
}
.nav__mark svg { width: 22px; height: 22px; position: relative; z-index: 1; }
.nav__name { font-family: "Fraunces", serif; font-size: 22px; font-weight: 500; color: var(--navy-dark); letter-spacing: -0.02em; line-height: 1; }
.nav__sub { font-size: 11px; color: var(--ink-l); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__links a { font-size: 14px; color: var(--ink-m); font-weight: 500; }
.nav__links a:hover { color: var(--navy-dark); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--navy-dark); }
.nav__phone svg { width: 16px; height: 16px; color: var(--accent); }
@media (max-width: 920px) { .nav__links { display: none; } .nav__phone span { display: none; } }
@media (max-width: 520px) { .nav__sub { display: none; } }

/* ================================================================
   HERO — base + 3 variations
   ================================================================ */
.hero { position: relative; overflow: hidden; }
.hero__inner { max-width: 1280px; margin: 0 auto; padding: 64px 28px 96px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  height: 46px; padding: 0 14px 0 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--rule);
  font-size: 13px; color: var(--ink-m); font-weight: 500;
}
.hero__tag .star {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
}
.hero__tag .star svg { width: 14px; height: 14px; }
.hero h1 .accent-w { color: var(--accent); font-style: italic; font-weight: 400; }
.hero h1 .navy-w { color: var(--navy); }
.hero__sub { font-size: clamp(16px, 1.3vw, 19px); color: var(--ink-m); line-height: 1.65; margin-top: 22px; max-width: 56ch; }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; align-items: center; }
.hero__quick { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-m); font-size: 14px; }
.hero__quick svg { width: 16px; height: 16px; color: var(--accent); }

/* Hero v1 — Split editorial */
.hero--v1 {
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(126,44,49,.10), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(41,62,97,.10), transparent 60%),
    var(--cream);
}
.hero--v1 .hero__grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
  margin-top: 36px;
}
.hero--v1 .hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-3);
}
.hero--v1 .hero__media img,
.hero--v1 .hero__media .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-xl); }
.hero--v1 .hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,42,72,.35) 100%);
  pointer-events: none;
}
.hero--v1 .float-card {
  position: absolute; background: rgba(255,255,255,.96);
  border-radius: var(--r);
  box-shadow: var(--sh-2);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--rule-soft);
  backdrop-filter: blur(8px);
}
.hero--v1 .float-card .ico-bubble { width: 40px; height: 40px; border-radius: 10px; }
.hero--v1 .float-card .ico-bubble svg { width: 20px; height: 20px; }
.hero--v1 .float-card strong { font-size: 14px; color: var(--navy-dark); display: block; }
.hero--v1 .float-card span { font-size: 12px; color: var(--ink-l); }
.hero--v1 .fc-1 { top: auto; bottom: 24px; left: 24px; right: 24px; }
.hero--v1 .fc-2 { display: none; }
.hero--v1 .fc-3 { display: none; }
@media (max-width: 900px) {
  .hero--v1 .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero--v1 .fc-1, .hero--v1 .fc-2, .hero--v1 .fc-3 { left: 16px; right: auto; }
  .hero--v1 .fc-1 { top: 16px; }
  .hero--v1 .fc-2 { bottom: 16px; left: auto; right: 16px; }
  .hero--v1 .fc-3 { display: none; }
}

/* Stat strip beneath hero */
.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 36px 0 0;
  border-top: 1px solid var(--rule-soft);
  margin-top: 64px;
}
.hero__stats .stat__num { font-family: "Fraunces", serif; font-size: clamp(30px, 3.4vw, 44px); font-weight: 500; color: var(--navy-dark); letter-spacing: -0.02em; line-height: 1; }
.hero__stats .stat__lbl { font-size: 13px; color: var(--ink-l); margin-top: 8px; }
.hero__stats .stat__num .accent-w { color: var(--accent); }
@media (max-width: 720px) { .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* Hero v2 — Centered editorial */
.hero--v2 {
  text-align: center;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(255,221,196,.6), transparent 60%),
    var(--cream);
}
.hero--v2 .hero__inner { padding-top: 88px; }
.hero--v2 h1 { max-width: 18ch; margin: 22px auto 0; }
.hero--v2 .hero__sub { margin: 24px auto 0; }
.hero--v2 .hero__cta-row { justify-content: center; }
.hero--v2 .hero__media {
  margin: 64px auto 0;
  max-width: 1080px;
  height: clamp(280px, 38vw, 460px);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.hero--v2 .hero__media .ph { position: absolute; inset: 0; border-radius: var(--r-xl); }
.hero--v2 .marquee {
  margin-top: 36px;
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
  color: var(--ink-l); font-size: 13px;
}
.hero--v2 .marquee svg { width: 14px; height: 14px; color: var(--accent); margin-right: 6px; }

/* Hero v3 — Full-bleed with B/A slider */
.hero--v3 {
  background:
    radial-gradient(1200px 700px at 50% 0%, rgba(27,48,96,.06), transparent 60%),
    linear-gradient(180deg, var(--ivory), var(--cream));
}
.hero--v3 .hero__grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center;
  margin-top: 28px;
}
.hero--v3 .ba-wrap { width: 100%; }
@media (max-width: 900px) { .hero--v3 .hero__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ================================================================
   FLOATING WHATSAPP FAB
   ================================================================ */
.wa-fab {
  position: fixed; bottom: 22px; right: 22px;
  z-index: 80;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 14px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .55);
  transition: transform .2s;
}
.wa-fab:hover { transform: translateY(-2px); }
.wa-fab svg { width: 20px; height: 20px; }
.wa-fab__pulse {
  position: absolute; inset: 0; border-radius: 999px;
  border: 2px solid #25D366; opacity: 0; animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { opacity: .8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.45); }
}
@media (max-width: 640px) { .wa-fab span { display: none; } .wa-fab { padding: 14px; } }

/* ================================================================
   BEFORE/AFTER SLIDER
   ================================================================ */
.ba {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-2);
  user-select: none;
  touch-action: none;
  aspect-ratio: 4/3;
  background: #000;
}
.ba__pane { position: absolute; inset: 0; }
.ba__pane .ph { position: absolute; inset: 0; border-radius: 0; }
.ba__pane--after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__label {
  position: absolute; top: 16px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.92); color: var(--navy-dark);
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.ba__label--before { left: 16px; }
.ba__label--after { right: 16px; background: var(--navy-dark); color: #fff; }
.ba__handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos, 50%);
  transform: translateX(-50%);
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.1), 0 4px 14px rgba(0,0,0,.18);
  cursor: ew-resize;
}
.ba__knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: #fff; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--navy-dark);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.ba__knob svg { width: 22px; height: 22px; }

/* ================================================================
   SOCIAL PROOF BAND — animated stats + credential marquee
   ================================================================ */
.sp {
  position: relative;
  background:
    radial-gradient(800px 300px at 90% 0%, rgba(126,44,49,.06), transparent 60%),
    radial-gradient(700px 300px at 10% 100%, rgba(27,48,96,.04), transparent 60%),
    var(--ivory);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  overflow: hidden;
}
.sp__inner { max-width: 1280px; margin: 0 auto; padding: 64px 28px 28px; }

.sp__head {
  text-align: center;
  margin-bottom: 44px;
}
.sp__head .eyebrow { justify-content: center; display: inline-flex; }
.sp__head h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  margin-top: 14px;
  font-family: "Fraunces", serif;
  font-weight: 450;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
}
.sp__head h3 .accent-w { color: var(--accent); font-style: italic; font-weight: 400; }

.sp__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.sp__stat {
  padding: 8px 32px;
  position: relative;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.sp__stat + .sp__stat::before {
  content: "";
  position: absolute; top: 12%; bottom: 12%; left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--rule) 30%, var(--rule) 70%, transparent 100%);
}
.sp__stat-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.sp__stat:hover .sp__stat-ico { transform: translateY(-3px) rotate(-4deg); }
.sp__stat-ico svg { width: 22px; height: 22px; stroke-width: 1.75; }
.sp__stat-num {
  font-family: "Fraunces", serif;
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 450;
  color: var(--navy-dark);
  line-height: 1;
  letter-spacing: -0.025em;
  display: inline-flex; align-items: baseline; gap: 2px;
}
.sp__stat-num .pre { font-size: .55em; color: var(--ink-l); }
.sp__stat-num .suf {
  font-size: .45em;
  color: var(--accent);
  font-weight: 500;
  margin-left: 4px;
  align-self: flex-start;
  margin-top: 6px;
}
.sp__stat-num .star { font-size: .5em; color: var(--accent); margin-left: 4px; }
.sp__stat-lbl {
  font-size: 13px;
  color: var(--ink-l);
  margin-top: 14px;
  max-width: 24ch;
  line-height: 1.45;
}
.sp__stat-bar {
  height: 2px; width: 32px;
  background: var(--accent);
  margin-top: 18px;
  border-radius: 999px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(.4,0,.2,1) .3s;
}
.sp.is-in .sp__stat-bar { transform: scaleX(1); }

@media (max-width: 820px) {
  .sp__stats { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .sp__stat + .sp__stat::before { display: none; }
  .sp__stat:nth-child(odd) + .sp__stat::before {
    display: block;
    top: 12%; bottom: 12%; left: 0;
  }
}
@media (max-width: 480px) {
  .sp__stats { grid-template-columns: 1fr; gap: 28px; }
  .sp__stat:nth-child(odd) + .sp__stat::before { display: none; }
}

/* ---- marquee ---- */
.sp__marq-wrap {
  margin-top: 56px;
  padding: 24px 0;
  border-top: 1px solid var(--rule-soft);
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.sp__marq {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: sp-marq 38s linear infinite;
}
.sp__marq:hover { animation-play-state: paused; }
@keyframes sp-marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.sp__pill {
  display: inline-flex; align-items: center; gap: 10px;
  height: 44px; padding: 0 18px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-m);
  font-weight: 500;
  white-space: nowrap;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.sp__pill:hover { border-color: var(--accent); transform: translateY(-1px); box-shadow: var(--sh-1); }
.sp__pill svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.sp__pill .flag { font-size: 16px; }
.sp__pill strong { color: var(--navy-dark); font-weight: 600; }
.sp__pill--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.sp__pill--accent svg, .sp__pill--accent strong { color: #fff; }
.sp__pill--accent:hover { color: #fff; }

/* ---- background subtle motion ---- */
.sp::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(126,44,49,.10), transparent 70%);
  border-radius: 50%;
  animation: sp-orb 18s ease-in-out infinite;
  pointer-events: none;
}
.sp::after {
  content: "";
  position: absolute;
  bottom: -30%; right: -10%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(27,48,96,.08), transparent 70%);
  border-radius: 50%;
  animation: sp-orb 22s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes sp-orb {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(40px, 30px); }
}

/* ================================================================
   SECTION HEADER
   ================================================================ */
.sec-head { max-width: 760px; margin: 0 auto; text-align: center; margin-bottom: 64px; }
.sec-head--left { text-align: left; margin-left: 0; }
.sec-head p { margin-top: 18px; font-size: 17px; line-height: 1.65; }

/* ================================================================
   BONE LOSS TIMELINE (animated)
   ================================================================ */
.bl-wrap {
  background: var(--paper);
  border-radius: var(--r-xl);
  border: 1px solid var(--rule-soft);
  padding: 48px;
  box-shadow: var(--sh-2);
}
.bl-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; margin-bottom: 36px; }
.bl-head h3 { font-size: clamp(22px, 2.2vw, 32px); }
.bl-head p { margin-top: 8px; max-width: 50ch; }
.bl-timeline { position: relative; }
.bl-track {
  height: 6px;
  background: var(--rule-soft);
  border-radius: 999px;
  position: relative;
}
.bl-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, #B86D72 0%, var(--accent) 70%, var(--navy-dark) 100%);
  border-radius: 999px;
  width: var(--bl, 0%);
  transition: width 1.8s cubic-bezier(.4, 0, .2, 1);
}
.bl-marks { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 36px; }
.bl-mark { text-align: center; padding: 0 8px; position: relative; }
.bl-mark::before {
  content: ""; position: absolute; top: -42px; left: 50%;
  width: 14px; height: 14px;
  background: #fff;
  border: 3px solid var(--rule);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.bl-mark.is-on::before { background: var(--accent); border-color: var(--accent); }
.bl-mark__t { font-family: "Fraunces", serif; font-size: clamp(22px, 2vw, 30px); color: var(--navy-dark); font-weight: 500; }
.bl-mark__l { font-size: 12px; color: var(--ink-l); margin-top: 4px; }
.bl-mark__loss { font-size: 13px; color: var(--accent); font-weight: 600; margin-top: 6px; }
.bl-controls { display: flex; gap: 12px; margin-top: 36px; align-items: center; flex-wrap: wrap; }
.bl-scrub { flex: 1; min-width: 200px; }
.bl-cap {
  background: var(--peach);
  border-radius: var(--r);
  padding: 14px 18px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-m);
  display: flex; align-items: center; gap: 12px;
}
.bl-cap svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
@media (max-width: 720px) {
  .bl-wrap { padding: 28px; }
  .bl-marks { grid-template-columns: repeat(5, 1fr); font-size: 11px; }
  .bl-mark__t { font-size: 18px; }
  .bl-mark__l, .bl-mark__loss { font-size: 11px; }
}

/* ================================================================
   PROBLEM GRID — bento with numbered editorial cards
   ================================================================ */
.prob-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 20px;
}
.pc {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-lg);
  padding: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s, border-color .25s;
}
.pc:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: rgba(126,44,49, .25); }
.pc__num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.05em;
  position: absolute;
  top: 24px; right: 28px;
  opacity: .9;
}
.pc__ico {
  width: 52px; height: 52px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .25s;
}
.pc:hover .pc__ico { transform: rotate(-6deg) scale(1.08); }
.pc__ico svg { width: 24px; height: 24px; stroke-width: 1.75; }
.pc__t {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--navy-dark);
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.pc__d {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-m);
  margin: 0;
}
.pc__stat {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px dashed var(--rule);
}
.pc__stat-num {
  font-family: "Fraunces", serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pc__stat-lbl {
  font-size: 12.5px;
  color: var(--ink-l);
  margin-top: 8px;
  line-height: 1.5;
}
.pc__deco {
  position: absolute;
  inset: auto -40px -60px auto;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126,44,49,.10), transparent 70%);
  pointer-events: none;
  transition: transform .5s ease;
}
.pc:hover .pc__deco { transform: scale(1.2); }

/* ----- featured large card (2×2) ----- */
.pc--feat {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(155deg, var(--peach) 0%, #FBF1F1 100%);
  border: 1px solid #E6CACB;
  padding: 44px;
}
.pc--feat .pc__num { font-size: 28px; top: 32px; right: 38px; }
.pc--feat .pc__ico { width: 64px; height: 64px; border-radius: 18px; }
.pc--feat .pc__ico svg { width: 30px; height: 30px; }
.pc--feat .pc__t {
  font-size: clamp(28px, 2.6vw, 38px);
  margin: 0 0 18px;
  max-width: 14ch;
}
.pc--feat .pc__d { font-size: 17px; max-width: 38ch; line-height: 1.7; }
.pc--feat .pc__stat-num { font-size: 48px; }
.pc--feat .pc__stat-lbl { font-size: 14px; max-width: 42ch; }
.pc--feat .pc__deco {
  background: radial-gradient(circle, rgba(126,44,49,.18), transparent 70%);
  width: 320px; height: 320px;
  inset: auto -80px -100px auto;
}

/* ----- wide dark accent card (4×1) ----- */
.pc--dark {
  grid-column: span 4;
  background: var(--navy-dark);
  color: #fff;
  border-color: transparent;
  padding: 38px 44px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 28px;
}
.pc--dark .pc__num { color: rgba(255,255,255,.45); position: static; }
.pc--dark .pc__ico {
  margin: 0;
  background: rgba(255,255,255,.08);
  color: #E6A8AC;
  border: 1px solid rgba(255,255,255,.12);
}
.pc--dark .pc__t { color: #fff; font-size: 24px; margin: 0 0 6px; }
.pc--dark .pc__d { color: rgba(255,255,255,.7); font-size: 15px; max-width: 60ch; }
.pc--dark .pc__cta { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.pc--dark .pc__cta-stat {
  font-family: "Fraunces", serif;
  font-size: 36px;
  color: #E6A8AC;
  line-height: 1;
  letter-spacing: -0.02em;
}
.pc--dark .pc__cta-lbl { font-size: 12px; color: rgba(255,255,255,.55); letter-spacing: .12em; text-transform: uppercase; }
.pc--dark .pc__deco {
  background: radial-gradient(circle, rgba(255,217,196,.10), transparent 70%);
  width: 400px; height: 400px;
  inset: -100px -120px auto auto;
}
.pc--dark:hover { border-color: transparent; }

/* ----- reveal animation ----- */
.pc { opacity: 0; transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s, border-color .25s, background .25s; }
.pc.in { animation: pc-in .65s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes pc-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pc.in:hover { transform: translateY(-4px); }
.pc--dark.in:hover { transform: translateY(-2px); }

/* ----- responsive ----- */
@media (max-width: 920px) {
  .prob-bento { grid-template-columns: repeat(2, 1fr); }
  .pc--feat { grid-column: span 2; grid-row: auto; }
  .pc--dark { grid-column: span 2; grid-template-columns: 1fr; text-align: left; padding: 32px; }
  .pc--dark .pc__cta { align-items: flex-start; margin-top: 12px; }
}
@media (max-width: 560px) {
  .prob-bento { grid-template-columns: 1fr; }
  .pc--feat, .pc--dark { grid-column: span 1; }
  .pc { padding: 28px; }
  .pc--feat { padding: 32px; }
}

/* ================================================================
   DREAM / OUTCOME (warm spread)
   ================================================================ */
.dream { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.dream__copy p { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.65; margin-bottom: 22px; color: var(--ink); font-weight: 400; }
.dream__media { position: relative; height: 520px; }
.dream__media .ph,
.dream__media img {
  position: absolute;
  border-radius: var(--r-lg);
  object-fit: cover;
}
.dream__media .ph-1 { top: 0; left: 0; width: 60%; aspect-ratio: 3/4; box-shadow: var(--sh-2); }
.dream__media .ph-2 { bottom: 0; right: 0; width: 60%; aspect-ratio: 3/4; box-shadow: var(--sh-2); }
.dream__media .ph-3 { top: 30%; right: 8%; width: 30%; aspect-ratio: 1; border: 6px solid var(--cream); box-shadow: var(--sh-2); z-index: 2; }
@media (max-width: 900px) {
  .dream { grid-template-columns: 1fr; }
  .dream__media { height: 380px; }
}

/* ================================================================
   PATIENT GALLERY — X-ray B/A horizontal scroller
   ================================================================ */
.xr-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.xr-nav { display: flex; gap: 10px; flex-shrink: 0; }
.xr-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--navy-dark);
  display: grid; place-items: center;
  transition: all .15s;
}
.xr-arrow:hover { background: var(--navy-dark); color: #fff; border-color: var(--navy-dark); transform: translateY(-1px); }
.xr-arrow svg { width: 18px; height: 18px; }

.xr-track { position: relative; }
.xr-arrow--side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px; height: 52px;
  background: #fff;
  box-shadow: 0 8px 24px -6px rgba(60, 40, 20, .25);
  border-color: transparent;
}
.xr-arrow--side:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}
.xr-arrow--left { left: -10px; }
.xr-arrow--right { right: -10px; }
@media (max-width: 720px) {
  .xr-arrow--side { display: none; }
}
.xr-scroller {
  display: grid; grid-auto-flow: column; grid-auto-columns: 360px;
  gap: 24px;
  overflow-x: auto; overflow-y: hidden;
  padding: 8px 28px 28px;
  margin: 0 -28px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 28px;
  scrollbar-width: thin;
  scrollbar-color: var(--rule) transparent;
}
.xr-scroller::-webkit-scrollbar { height: 8px; }
.xr-scroller::-webkit-scrollbar-track { background: transparent; }
.xr-scroller::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 999px; }
.xr-scroller::-webkit-scrollbar-thumb:hover { background: var(--ink-l); }
.xr-card {
  scroll-snap-align: start;
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--rule-soft);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.xr-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--accent); }
.xr-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0a0a0a;
  overflow: hidden;
}
.xr-card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.xr-card__body {
  padding: 22px 20px 20px;
  display: flex; flex-direction: column;
  gap: 14px;
  flex: 1;
}
.xr-card__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.xr-card__outcome {
  font-family: "Fraunces", serif;
  font-size: 17px; line-height: 1.4;
  color: var(--navy-dark);
  font-weight: 500;
  flex: 1;
}
.xr-card__meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
  font-size: 13px;
  gap: 12px; flex-wrap: wrap;
}
.xr-card__meta strong { color: var(--navy-dark); }
.xr-card__price { display: flex; align-items: baseline; gap: 6px; }
.xr-cta { text-align: center; margin-top: 36px; }
@media (max-width: 540px) {
  .xr-scroller { grid-auto-columns: 84vw; }
  .xr-nav { display: none; }
}

/* ================================================================
   DOCTOR (Dr. Ushma) — magazine spread
   ================================================================ */
.doc {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.doc__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: visible;
  box-shadow: var(--sh-3);
}
.doc__media img,
.doc__media .ph {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
}
.doc__media::after {
  content: ""; position: absolute; inset: 0;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, transparent 65%, rgba(26,42,72,.25) 100%);
  pointer-events: none;
}
.doc__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  left: auto;
  max-width: 280px;
  background: #fff;
  border-radius: var(--r);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh-2);
  border: 1px solid var(--rule-soft);
  z-index: 2;
}
@media (max-width: 540px) {
  .doc__badge { right: 16px; bottom: -28px; max-width: calc(100% - 32px); }
}
.doc__badge .ring {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy-dark); color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.doc__badge .ring svg { width: 22px; height: 22px; }
.doc__badge strong { font-size: 13px; color: var(--navy-dark); display: block; line-height: 1.3; }
.doc__badge span { font-size: 11px; color: var(--ink-l); display: block; margin-top: 2px; line-height: 1.4; }
.doc__name { font-size: clamp(36px, 4vw, 56px); margin: 16px 0 8px; }
.doc__title { font-size: 16px; color: var(--ink-m); margin-bottom: 28px; }
.doc__quote {
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.45;
  color: var(--navy-dark);
  font-weight: 400;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin: 28px 0;
  font-style: italic;
}
.doc__cite { display: block; margin-top: 12px; font-size: 13px; color: var(--ink-l); font-style: normal; }
.doc__creds { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 28px 0; }
.doc__cred { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-m); }
.doc__cred svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.doc__cred strong { color: var(--navy-dark); font-weight: 600; display: block; }
@media (max-width: 900px) { .doc { grid-template-columns: 1fr; gap: 40px; } }

/* ================================================================
   PRICING — tabs + table + calculator
   ================================================================ */
.price-tabs { display: inline-flex; padding: 4px; background: var(--paper); border-radius: 999px; border: 1px solid var(--rule); margin: 0 auto 32px; box-shadow: var(--sh-1); }
.price-tab { padding: 10px 22px; border-radius: 999px; font-size: 14px; color: var(--ink-m); font-weight: 500; transition: all .2s; }
.price-tab.is-active { background: var(--navy-dark); color: #fff; }
.tabs-wrap { display: flex; justify-content: center; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  border: 1px solid var(--rule-soft);
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.price-card--featured {
  border-color: var(--accent);
  box-shadow: 0 12px 40px -12px rgba(126,44,49,.25);
  background: linear-gradient(180deg, var(--paper), #FBF4F4);
}
.price-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.price-card__tier { font-size: 13px; color: var(--ink-l); letter-spacing: .1em; text-transform: uppercase; }
.price-card__name { font-family: "Fraunces", serif; font-size: 28px; margin: 6px 0 10px; color: var(--navy-dark); }
.price-card__price { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 22px; }
.price-card__price .amt { font-family: "Fraunces", serif; font-size: 44px; font-weight: 500; color: var(--navy-dark); letter-spacing: -0.02em; }
.price-card__price .unit { font-size: 14px; color: var(--ink-l); }
.price-card__feats { list-style: none; padding: 0; margin: 0 0 24px; }
.price-card__feats li { display: flex; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--ink-m); border-top: 1px dashed var(--rule-soft); }
.price-card__feats li:first-child { border-top: none; }
.price-card__feats li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 920px) { .price-grid { grid-template-columns: 1fr; } }

/* Pricing calculator */
.pcalc {
  background: var(--navy-dark); color: #fff;
  border-radius: var(--r-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pcalc::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 90% 10%, rgba(126,44,49,.30), transparent 60%),
              radial-gradient(500px 300px at 10% 100%, rgba(41,62,97,.30), transparent 60%);
  pointer-events: none;
}
.pcalc > * { position: relative; z-index: 1; }
.pcalc h3 { color: #fff; font-size: clamp(24px, 2.4vw, 34px); }
.pcalc__row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.pcalc__row label { font-size: 12px; color: rgba(255,255,255,.55); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.pcalc__opts { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.pcalc__opt {
  padding: 14px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  font-size: 13px; color: rgba(255,255,255,.85);
  text-align: center; font-weight: 500;
  transition: all .15s;
}
.pcalc__opt:hover { background: rgba(255,255,255,.1); }
.pcalc__opt.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.pcalc__display { text-align: center; }
.pcalc__display .total { font-family: "Fraunces", serif; font-size: clamp(48px, 6vw, 84px); font-weight: 400; letter-spacing: -0.03em; color: #fff; line-height: 1; }
.pcalc__display .label { font-size: 13px; color: rgba(255,255,255,.6); letter-spacing: .12em; text-transform: uppercase; margin-top: 12px; }
.pcalc__display .emi { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 15px; color: rgba(255,255,255,.8); }
.pcalc__display .emi strong { color: #E6A8AC; font-family: "Fraunces", serif; font-size: 24px; font-weight: 500; margin: 0 4px; }
@media (max-width: 760px) { .pcalc { grid-template-columns: 1fr; padding: 32px; } .pcalc__opts { grid-template-columns: 1fr 1fr; } }

/* EMI calculator */
.emi-calc {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid var(--rule-soft);
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-top: 40px;
}
.emi-row { margin-bottom: 24px; }
.emi-row label { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-l); margin-bottom: 12px; font-weight: 500; }
.emi-row label strong { color: var(--navy-dark); font-family: "Fraunces", serif; font-size: 18px; }
.emi-slider { width: 100%; -webkit-appearance: none; background: transparent; }
.emi-slider::-webkit-slider-runnable-track { height: 6px; background: var(--rule); border-radius: 999px; }
.emi-slider::-moz-range-track { height: 6px; background: var(--rule); border-radius: 999px; }
.emi-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; background: var(--accent); border-radius: 50%; margin-top: -8px; cursor: pointer; box-shadow: 0 2px 8px rgba(126,44,49,.4); }
.emi-slider::-moz-range-thumb { width: 22px; height: 22px; background: var(--accent); border-radius: 50%; cursor: pointer; border: none; }
.emi-result { background: linear-gradient(135deg, var(--peach), var(--cream)); border-radius: var(--r-lg); padding: 32px; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.emi-result .big { font-family: "Fraunces", serif; font-size: clamp(40px, 5vw, 56px); color: var(--navy-dark); font-weight: 500; letter-spacing: -0.02em; }
.emi-result .small { font-size: 13px; color: var(--ink-l); letter-spacing: .1em; text-transform: uppercase; margin-top: 6px; }
.emi-result .total-line { margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--rule); font-size: 14px; color: var(--ink-m); }
@media (max-width: 760px) { .emi-calc { grid-template-columns: 1fr; padding: 28px; } }

/* EMI logos */
.emi-logos { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; justify-content: center; }
.emi-logo { padding: 10px 18px; background: var(--paper); border: 1px solid var(--rule); border-radius: 10px; font-size: 13px; color: var(--ink-m); font-weight: 500; }

/* ================================================================
   BRANDS
   ================================================================ */
.brands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.brand-card { background: var(--paper); border-radius: var(--r-lg); padding: 36px; border: 1px solid var(--rule-soft); transition: transform .2s, box-shadow .2s; }
.brand-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.brand-flag { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; font-size: 28px; margin-bottom: 18px; background: var(--cream-2); }
.brand-card h4 { font-family: "Fraunces", serif; font-size: 24px; margin: 0 0 6px; color: var(--navy-dark); }
.brand-card .tier { font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
@media (max-width: 920px) { .brands { grid-template-columns: 1fr; } }

/* ================================================================
   DIFFERENTIATORS — bento style
   ================================================================ */
.diff-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.diff-card { background: var(--paper); border-radius: var(--r-lg); padding: 32px; border: 1px solid var(--rule-soft); transition: transform .2s, box-shadow .2s; }
.diff-card:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.diff-card h4 { font-family: "Fraunces", serif; font-size: 22px; font-weight: 500; margin: 20px 0 10px; color: var(--navy-dark); line-height: 1.2; }
.diff-card p { font-size: 14.5px; }
.diff-card--lg { grid-column: span 4; background: var(--peach); border-color: #E6CACB; }
.diff-card--md { grid-column: span 2; }
.diff-card--gold { background: var(--gold-soft); border-color: #ECD79A; grid-column: span 3; }
.diff-card--navy { background: var(--navy-dark); color: #fff; grid-column: span 3; }
.diff-card--navy h4, .diff-card--navy p { color: #fff; }
.diff-card--navy p { color: rgba(255,255,255,.8); }
@media (max-width: 920px) {
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .diff-card--lg, .diff-card--md, .diff-card--gold, .diff-card--navy { grid-column: span 1; }
}
@media (max-width: 560px) { .diff-grid { grid-template-columns: 1fr; } }

/* ================================================================
   WHAT IS A DENTAL IMPLANT — editorial anatomy explainer
   ================================================================ */
.wi {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
.wi__copy h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 2.2vw, 30px);
  margin-bottom: 18px;
  color: var(--navy-dark);
}
.wi__photo {
  position: relative;
  margin-bottom: 28px;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--sh-2);
}
.wi__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.wi__photo-cap {
  position: absolute;
  bottom: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 10px;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  color: var(--navy-dark);
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}
.wi__photo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: wi-ping 1.8s ease-in-out infinite;
}
@keyframes wi-ping {
  0%, 100% { box-shadow: 0 0 0 0 rgba(126,44,49,.5); }
  50% { box-shadow: 0 0 0 5px rgba(126,44,49,0); }
}
.wi__copy p { font-size: 16px; line-height: 1.75; }
.wi__copy p + p { margin-top: 16px; }
.wi__term {
  background: var(--accent-soft);
  color: var(--orange-h);
  padding: 1px 8px; border-radius: 6px;
  font-weight: 600;
  font-family: "Geist", sans-serif;
  font-size: .95em;
}
.wi__keys {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 28px;
}
.wi__key {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: 12px;
  font-size: 13px;
}
.wi__key svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.wi__key strong { color: var(--navy-dark); display: block; margin-bottom: 2px; }
.wi__key span { color: var(--ink-l); line-height: 1.5; }

/* ---- anatomy diagram ---- */
.wi__anatomy {
  background: linear-gradient(155deg, #FBF1F1 0%, var(--peach) 100%);
  border-radius: var(--r-xl);
  border: 1px solid #E6CACB;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex; flex-direction: column;
}
.wi__anatomy::before {
  content: "";
  position: absolute; inset: -50% -50% 50% 50%;
  background: radial-gradient(circle, rgba(126,44,49,.10), transparent 65%);
  pointer-events: none;
}
.wi__anatomy::after {
  content: "";
  position: absolute; inset: 50% 50% -50% -50%;
  background: radial-gradient(circle, rgba(41,62,97,.10), transparent 65%);
  pointer-events: none;
}
.wi__anatomy-h {
  position: relative;
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 8px;
}
.wi__anatomy-h .pill {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--ink-l);
}
.wi__anatomy-h .ring {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px dashed var(--accent);
  display: grid; place-items: center;
  color: var(--accent);
  animation: rotate 14s linear infinite;
}
.wi__anatomy-h .ring svg { width: 16px; height: 16px; animation: rotate 14s linear infinite reverse; }
@keyframes rotate { to { transform: rotate(360deg); } }
.wi__anatomy svg.diagram {
  flex: 1;
  width: 100%; height: 100%;
  position: relative; z-index: 1;
}
.wi__anatomy-photo {
  flex: 1;
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  margin: 8px 0 4px;
  box-shadow: var(--sh-2);
  min-height: 460px;
}
.wi__anatomy-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.diagram .label-text {
  font-family: "Geist", sans-serif;
  font-size: 11px; font-weight: 600;
  fill: var(--navy-dark);
  letter-spacing: 0.02em;
}
.diagram .label-sub {
  font-family: "Geist", sans-serif;
  font-size: 9px; font-weight: 500;
  fill: var(--ink-l);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.diagram .lead-line { stroke: var(--accent); stroke-width: 1; }
.diagram .lead-dot  { fill: var(--accent); }
.diagram .gum { fill: #E5BCBE; stroke: #B88587; stroke-width: 1; }
.diagram .crown-shape { fill: #FAFAFA; stroke: var(--navy-dark); stroke-width: 1.5; }
.diagram .abutment { fill: #C9CDD6; stroke: var(--navy-dark); stroke-width: 1.5; }
.diagram .implant-body {
  fill: url(#g-titanium);
  stroke: var(--navy-dark);
  stroke-width: 1.5;
}
.diagram .thread { stroke: var(--navy-dark); stroke-width: 1; fill: none; }
.diagram .bone-bg { fill: #EFD8C0; }
.diagram .bone-hatch { stroke: rgba(27,48,96,.18); stroke-width: 1; fill: none; }

/* ---- bottom callout ---- */
.wi__callout {
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .55);
  border-radius: 12px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--ink-m);
  position: relative; z-index: 1;
  border: 1px solid rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
}
.wi__callout svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.wi__callout strong { color: var(--navy-dark); }

@media (max-width: 900px) {
  .wi { grid-template-columns: 1fr; gap: 40px; }
  .wi__anatomy { aspect-ratio: auto; min-height: 540px; }
}

/* ================================================================
   COMPARISON — Implant vs Bridge vs Denture as 3 cards
   ================================================================ */
.vs-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.vs {
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--rule-soft);
  padding: 28px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.vs:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.vs--win {
  background: linear-gradient(155deg, #FBF1F1, #F5DDDF);
  border-color: rgba(126,44,49,.3);
}
.vs--win .vs__badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.vs__viz {
  height: 180px;
  margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, #FBF1F1, var(--peach));
  border-radius: var(--r);
  overflow: hidden;
}
.vs__viz svg { max-height: 100%; max-width: 100%; }
.vs__viz img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vs--win .vs__viz { background: linear-gradient(155deg, #FFFFFF, #FBF1F1); }
.vs__t {
  font-family: "Fraunces", serif;
  font-size: 22px; font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.vs__sub {
  font-size: 12px; color: var(--ink-l);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.vs__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.vs__list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px; color: var(--ink-m);
  line-height: 1.5;
}
.vs__list li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rule); margin-top: 7px; flex-shrink: 0;
}
.vs--win .vs__list li::before { background: var(--accent); }
.vs__bottom {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px dashed var(--rule);
  display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-l);
}
.vs__bottom strong { color: var(--navy-dark); font-family: "Fraunces", serif; font-size: 16px; font-weight: 500; }
.vs--win .vs__bottom strong { color: var(--accent); }
@media (max-width: 820px) { .vs-cards { grid-template-columns: 1fr; } }

/* ================================================================
   TYPES OF IMPLANTS — visual cards with mini jaw diagrams
   ================================================================ */
.types-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.tp {
  background: var(--paper);
  border-radius: var(--r);
  border: 1px solid var(--rule-soft);
  padding: 22px 18px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.tp:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--accent); }
.tp__viz {
  height: 64px;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.tp__viz svg { max-height: 100%; max-width: 100%; }
.tp__t {
  font-family: "Fraunces", serif;
  font-size: 16px; font-weight: 500;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 6px;
}
.tp__implants {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 8px; border-radius: 999px;
  margin-bottom: 10px;
}
.tp__price {
  font-family: "Fraunces", serif;
  font-size: 15px; font-weight: 500;
  color: var(--navy-dark);
  margin: 0;
}
.tp__use {
  font-size: 12px; color: var(--ink-l);
  margin-top: 6px; line-height: 1.5;
}
@media (max-width: 1080px) { .types-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .types-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }
.cmp { background: var(--paper); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--rule-soft); box-shadow: var(--sh-1); }
.cmp table { width: 100%; border-collapse: collapse; }
.cmp th, .cmp td { padding: 18px 20px; text-align: left; font-size: 14.5px; }
.cmp thead th { font-family: "Fraunces", serif; font-weight: 500; color: var(--ink-l); font-size: 14px; background: var(--cream-2); border-bottom: 1px solid var(--rule); }
.cmp thead th.win { background: var(--navy-dark); color: #fff; position: relative; }
.cmp thead th.win .name { font-size: 18px; color: #fff; }
.cmp thead th .sub { display: block; font-size: 11px; color: var(--ink-l); font-family: "Geist", sans-serif; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }
.cmp thead th.win .sub { color: rgba(255,255,255,.6); }
.cmp tbody tr { border-bottom: 1px solid var(--rule-soft); }
.cmp tbody tr:last-child { border-bottom: 0; }
.cmp tbody td { color: var(--ink-m); }
.cmp tbody td:first-child { color: var(--navy-dark); font-weight: 500; }
.cmp tbody td.win { background: rgba(126,44,49,.06); color: var(--navy-dark); font-weight: 500; }
.cmp .x { color: #C4404A; font-size: 18px; }
.cmp .v { color: #2D9C5A; font-size: 18px; }
.cmp-wrap { overflow-x: auto; }

/* ================================================================
   MULTI-STEP BOOKING FORM
   ================================================================ */
.book {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 48px;
  border: 1px solid var(--rule-soft);
  box-shadow: var(--sh-2);
  max-width: 720px;
  margin: 0 auto;
}
.book__progress { display: flex; align-items: center; gap: 10px; margin-bottom: 36px; }
.book__step-dot {
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cream-2);
  color: var(--ink-l);
  font-size: 13px; font-weight: 600;
  display: grid; place-items: center;
  border: 2px solid transparent;
}
.book__step-dot.is-done { background: var(--accent); color: #fff; }
.book__step-dot.is-active { background: #fff; color: var(--accent); border-color: var(--accent); }
.book__step-line { flex: 1; height: 2px; background: var(--cream-2); }
.book__step-line.is-done { background: var(--accent); }
.book h3 { font-size: clamp(22px, 2.2vw, 30px); margin-bottom: 8px; }
.book__step-cap { font-size: 13px; color: var(--ink-l); margin-bottom: 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; color: var(--navy-dark); font-weight: 500; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; height: 52px; padding: 0 16px;
  border: 1.5px solid var(--rule); border-radius: 12px;
  background: var(--cream); color: var(--ink); font-size: 15px;
  transition: border-color .15s, background .15s;
}
.field textarea { height: auto; padding: 14px 16px; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.opt-tile {
  padding: 16px;
  background: var(--cream); border: 1.5px solid var(--rule);
  border-radius: 12px;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: all .15s;
  text-align: left; font-size: 14px; color: var(--ink-m); font-weight: 500;
}
.opt-tile:hover { border-color: rgba(126,44,49,.4); }
.opt-tile.is-on { background: var(--accent-soft); border-color: var(--accent); color: var(--navy-dark); }
.opt-tile svg { width: 20px; height: 20px; color: var(--accent); }
.book__nav { display: flex; justify-content: space-between; margin-top: 28px; gap: 12px; }
.book__success { text-align: center; padding: 24px 0; }
.book__success .check {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 18px;
  background: #2D9C5A; color: #fff;
  display: grid; place-items: center;
}
.book__success .check svg { width: 36px; height: 36px; stroke-width: 3; }
.book__success h3 { margin-bottom: 12px; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--rule); padding: 4px 0; }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  padding: 24px 0;
  font-family: "Fraunces", serif;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500; color: var(--navy-dark);
}
.faq-q__ico {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--cream-2); color: var(--navy-dark);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all .25s;
}
.faq-q__ico svg { width: 16px; height: 16px; transition: transform .25s; }
.faq-item.is-open .faq-q__ico { background: var(--accent); color: #fff; }
.faq-item.is-open .faq-q__ico svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s ease; }
.faq-item.is-open .faq-a { max-height: 400px; padding: 0 0 24px; }
.faq-a p { font-size: 16px; line-height: 1.7; max-width: 65ch; }

/* ================================================================
   FINAL CTA — slot-availability + value-stack
   ================================================================ */
.final {
  background: var(--navy-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(126,44,49,.28), transparent 60%),
    radial-gradient(700px 400px at 10% 100%, rgba(126,44,49,.16), transparent 60%);
  pointer-events: none;
}
.final::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}
.final__inner {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
  padding: 100px 28px 100px;
}
.final__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.final__head .eyebrow { display: inline-flex; justify-content: center; }
.final__head h2 { color: #fff; font-size: clamp(38px, 5.2vw, 64px); margin-top: 20px; }
.final__head h2 .accent-w { color: #E6A8AC; font-style: italic; font-weight: 400; }
.final__head p { color: rgba(255,255,255,.72); margin: 22px auto 0; font-size: 17px; max-width: 60ch; line-height: 1.65; }
.final__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 920px) { .final__grid { grid-template-columns: 1fr; } }

/* ----- value-stack card ----- */
.vstack {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-xl);
  padding: 36px 36px 32px;
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column;
}
.vstack__t {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-weight: 600; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.vstack__t::before { content: ""; width: 24px; height: 1px; background: rgba(255,255,255,.3); }
.vstack__row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(255,255,255,.10);
}
.vstack__row:last-of-type { border-bottom: none; }
.vstack__row .check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: rgba(126,44,49,.28);
  color: #E6A8AC;
  border-radius: 50%;
  display: grid; place-items: center;
}
.vstack__row .check svg { width: 14px; height: 14px; stroke-width: 2.5; }
.vstack__row .item { flex: 1; }
.vstack__row .item strong { color: #fff; font-weight: 500; font-size: 15.5px; display: block; line-height: 1.35; }
.vstack__row .item span { color: rgba(255,255,255,.55); font-size: 12.5px; }
.vstack__row .price { font-family: "Fraunces", serif; font-size: 16px; color: rgba(255,255,255,.55); }
.vstack__row .price del { color: rgba(255,255,255,.4); }
.vstack__total {
  margin-top: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(126,44,49,.32), rgba(126,44,49,.10));
  border: 1px solid rgba(126,44,49,.45);
  border-radius: var(--r);
  display: flex; justify-content: space-between; align-items: center;
}
.vstack__total .lbl { color: rgba(255,255,255,.85); font-weight: 500; font-size: 15px; }
.vstack__total .lbl small { display: block; font-size: 12px; color: rgba(255,255,255,.5); font-weight: 400; margin-top: 2px; }
.vstack__total .amt { text-align: right; }
.vstack__total .amt del { display: block; color: rgba(255,255,255,.4); font-size: 14px; font-family: "Fraunces", serif; }
.vstack__total .amt strong { font-family: "Fraunces", serif; font-size: 32px; font-weight: 500; color: #E6A8AC; letter-spacing: -0.02em; line-height: 1; }
.vstack .btn { margin-top: 22px; width: 100%; }

/* ----- slots availability card ----- */
.slots {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-xl);
  padding: 36px;
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column;
}
.slots__h {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.slots__h-l {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.slots__live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: #6EE7B7; font-weight: 600;
}
.slots__live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #6EE7B7;
  animation: ping 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(110, 231, 183, .5);
}
@keyframes ping {
  0%, 100% { box-shadow: 0 0 0 0 rgba(110, 231, 183, .5); }
  50% { box-shadow: 0 0 0 6px rgba(110, 231, 183, 0); }
}
.slots__count {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 22px;
}
.slots__count .num {
  font-family: "Fraunces", serif;
  font-size: 64px; font-weight: 500;
  color: #fff; line-height: 1; letter-spacing: -0.03em;
}
.slots__count .div {
  font-family: "Fraunces", serif;
  font-size: 32px; color: rgba(255,255,255,.4); font-weight: 400;
}
.slots__count .of {
  color: rgba(255,255,255,.55); font-size: 14px;
  font-weight: 500;
}
.slots__count .of strong { color: rgba(255,255,255,.85); font-weight: 600; }
.slots__bar {
  height: 8px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 28px;
  position: relative;
}
.slots__bar-fill {
  position: absolute; inset: 0 var(--bar-empty, 67%) 0 0;
  background: linear-gradient(90deg, #B86D72, var(--accent));
  border-radius: 999px;
  transition: inset 1.2s cubic-bezier(.4,0,.2,1);
}
.slots__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-bottom: 22px;
}
.slot {
  padding: 10px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  font-size: 12px; color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: 6px;
  font-weight: 500;
  transition: all .15s;
}
.slot.open {
  background: rgba(110, 231, 183, .08);
  border-color: rgba(110, 231, 183, .3);
  color: #A5F3D0;
  cursor: pointer;
}
.slot.open:hover {
  background: rgba(110, 231, 183, .15);
  border-color: rgba(110, 231, 183, .5);
  transform: translateY(-1px);
}
.slot.taken {
  color: rgba(255,255,255,.35);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,.25);
}
.slot .dot {
  width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255,255,255,.3);
}
.slot.open .dot { background: #6EE7B7; }
.slot.taken .dot { background: rgba(255,255,255,.15); }

.slots__cd {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto;
  padding: 16px 18px;
  background: rgba(255,255,255,.05);
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.10);
}
.slots__cd-ico { color: var(--accent); flex-shrink: 0; }
.slots__cd-l { font-size: 12px; color: rgba(255,255,255,.55); letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.slots__cd-v {
  display: flex; gap: 6px; align-items: baseline;
  font-family: "Fraunces", serif;
  margin-top: 2px;
}
.slots__cd-unit { display: flex; flex-direction: column; align-items: center; }
.slots__cd-num {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.02em;
  min-width: 30px;
  text-align: center;
}
.slots__cd-lbl {
  font-family: "Geist", sans-serif;
  font-size: 9px;
  color: rgba(255,255,255,.45);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.slots__cd-sep { color: rgba(255,255,255,.3); font-size: 18px; }
.slots .btn { margin-top: 18px; width: 100%; }

/* ----- bottom trust row ----- */
.final__bottom-cta {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 40px;
}
.final__bottom {
  margin-top: 48px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
  font-size: 13px; color: rgba(255,255,255,.55);
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.final__bottom span { display: inline-flex; align-items: center; gap: 8px; }
.final__bottom svg { width: 14px; height: 14px; color: #E6A8AC; }

/* ================================================================
   GUARANTEE BOX (Booking)
   ================================================================ */
.guarantee {
  max-width: 720px;
  margin: 0 auto 36px;
  background: linear-gradient(155deg, #EFF6F0, #DCEEDC);
  border: 1px solid #B7DCB8;
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex; align-items: flex-start; gap: 20px;
}
.guarantee__ring {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #2D9C5A;
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -6px rgba(45, 156, 90, .45);
}
.guarantee__ring svg { width: 26px; height: 26px; }
.guarantee__body h3 {
  font-family: "Fraunces", serif;
  font-size: 22px; font-weight: 500;
  color: #1B5E20;
  margin-bottom: 8px;
}
.guarantee__body p {
  font-size: 14.5px; line-height: 1.7;
  color: #2E5232;
}
.guarantee__body strong { color: #1B5E20; }
@media (max-width: 540px) {
  .guarantee { padding: 24px; flex-direction: column; gap: 14px; }
}

/* ================================================================
   VIDEO TESTIMONIALS
   ================================================================ */
.vids {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.vid-card { display: flex; flex-direction: column; gap: 12px; }
.vid-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  box-shadow: var(--sh-1);
}
.vid-card__media:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.vid-card__media img,
.vid-card__media iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  border: 0;
}
.vid-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,42,72,.05) 0%, rgba(26,42,72,.55) 100%);
  pointer-events: none;
  transition: opacity .2s;
}
.vid-card__media:hover::after { opacity: .65; }
.vid-card__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--accent);
  display: grid; place-items: center;
  z-index: 2;
  transition: transform .2s, background .2s;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.vid-card__media:hover .vid-card__play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.vid-card__play svg { width: 24px; height: 24px; margin-left: 3px; }
.vid-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.95);
  color: var(--navy-dark);
  font-size: 11px; font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  z-index: 2;
  letter-spacing: .02em;
}
.vid-card__cap {
  font-size: 13px;
  color: var(--ink-l);
  font-weight: 500;
  padding: 0 4px;
}
@media (max-width: 960px) { .vids { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .vids { grid-template-columns: 1fr 1fr; gap: 14px; } }

/* ================================================================
   FOOTER
   ================================================================ */
.foot { background: #08152B; color: rgba(255,255,255,.6); padding: 32px 28px; font-size: 13px; text-align: center; }
.foot a { color: rgba(255,255,255,.8); }


/* === MOBILE RESPONSIVE FIXES (appended) === */
/* Kill horizontal scroll caused by any overflowing child */
html, body { overflow-x: hidden; max-width: 100vw; }
img, video, iframe { max-width: 100%; height: auto; }

@media (max-width: 600px){
  /* Global safety: nothing should exceed viewport */
  *, *::before, *::after { box-sizing: border-box; }
  .container, .wrap, section > .inner, section { max-width: 100vw; }

  /* Hero typography scaling */
  .hero h1 { font-size: clamp(26px, 8.5vw, 40px) !important; line-height: 1.08 !important; word-break: break-word; }
  .hero p, .hero__sub { font-size: 15px !important; line-height: 1.45 !important; }
  .hero { padding-left: 16px !important; padding-right: 16px !important; }

  /* Slot grid: 3 cols -> 2 cols on mobile (slots are too narrow at 3 cols) */
  .slots__grid, .slots-grid, .slot-grid, .cd-grid, .countdown-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  .slots__slot, .slot, .cd-cell, .countdown-cell { font-size: 13px !important; padding: 10px 8px !important; min-width: 0 !important; }

  /* Pricing card rows: stop strike-through prices from being clipped */
  .pc__inner, .pc__card, .pc__row, .pc__list, .pc__item, .pc__pricing { min-width: 0 !important; max-width: 100% !important; }
  .pc__pricing, .pc__price-row, .pc__price-cmp { display: flex !important; flex-wrap: wrap !important; gap: 6px !important; align-items: baseline !important; }
  .pc__price-old, .pc__strike, del { word-break: keep-all; white-space: nowrap; }

  /* Marquee containment: page-wide overflow killer + per-marquee */
  .sp, .sp__marq, [class*=marquee], [class*=marq] { overflow: hidden !important; max-width: 100vw; }

  /* Doctor / credentials card: prevent absolute-positioned credential from poking out */
  [class*=doctor] [class*=cred], [class*=doctor] [class*=stat], [class*=doctor] [class*=badge] { position: static !important; max-width: 100% !important; margin-top: 12px; }
  [class*=doctor] img { max-width: 100% !important; height: auto !important; }

  /* Section padding safety */
  section[class] { padding-inline: 16px; }
}

@media (max-width: 380px){
  .hero h1 { font-size: 24px !important; }
  .slots__slot, .slot { font-size: 12px !important; padding: 8px 6px !important; }
}


/* === MOBILE PASS 2 (targeted fixes) === */
@media (max-width: 600px){
  .float-card, .float-card.fc-1, .float-card.fc-2, .float-card.fc-3 {
    top: auto !important;
    left: auto !important;
    bottom: 12px !important;
    right: 12px !important;
    width: 62% !important;
    max-width: 200px !important;
    height: auto !important;
    padding: 10px 12px !important;
    font-size: 12px !important;
  }
  .float-card h3, .float-card h4, .float-card strong { font-size: 13px !important; line-height: 1.2 !important; }
  .float-card p, .float-card span, .float-card div { font-size: 11px !important; line-height: 1.3 !important; }
  .sp__head { margin: 0 12px !important; padding: 8px 14px !important; }
  .eyebrow { padding: 6px 4px !important; }
  section.final { padding-left: 16px !important; padding-right: 16px !important; }
  section.final * { max-width: 100% !important; }
  footer.foot { padding-left: 16px !important; padding-right: 16px !important; }
  footer.foot * { max-width: 100%; }
  .wa-fab { right: 16px !important; }
}

/* === MOBILE PASS 3 (hero float-card specificity fix) === */
@media (max-width: 600px){
  .hero.hero--v1 .float-card,
  .hero--v1 .float-card.fc-1 {
    top: auto !important;
    left: auto !important;
    bottom: 12px !important;
    right: 12px !important;
    width: 60% !important;
    max-width: 200px !important;
    height: auto !important;
    padding: 10px 12px !important;
    gap: 8px !important;
  }
  .hero.hero--v1 .float-card .ico-bubble { width: 32px !important; height: 32px !important; }
  .hero.hero--v1 .float-card strong { font-size: 12px !important; }
  .hero.hero--v1 .float-card span { font-size: 10px !important; }
  .hero--v1 .float-card.fc-2,
  .hero--v1 .float-card.fc-3 { display: none !important; }
  .hero--v1 .hero__media img { width: 100% !important; height: auto !important; }
}

/* === MOBILE PASS 4 (eyebrow width + nowrap button) === */
@media (max-width: 600px){
  /* Eyebrow chip: keep narrow side margin, let chip be wider, allow text wrap */
  .sp__head { margin: 0 8px !important; padding: 8px 12px !important; min-width: 0 !important; }
  .sp__head .eyebrow { white-space: normal !important; word-break: break-word !important; line-height: 1.3 !important; }

  /* CTA buttons: allow wrapping instead of overflowing viewport */
  .btn, .btn--primary, .btn--lg, .btn--sm, a.btn, button.btn {
    white-space: normal !important;
    word-break: break-word !important;
    max-width: 100% !important;
    text-align: center !important;
    line-height: 1.2 !important;
  }
  /* Specifically the wide CTAs in compare/dream/etc. */
  .xr-cta .btn, .xr-cta a, .hero__cta-row .btn {
    white-space: normal !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}