/* Hospital XP — Mommy Makeover landing 3. Layout follows the PDF mock; tokens from hospitalxp-design-system.json */
:root {
  --hxp-coral: #EA435D;
  --hxp-coral-dark: #D6304A;
  --hxp-purple: #7A74D1;
  --hxp-navy: #100040;
  --hxp-peach: #F9A195;
  --hxp-salmon: #FF8A7A;
  --hxp-blush: #FBDBD7;
  --hxp-page: #FCF9F9;
  --hxp-blush-b: #FFF5F5;
  --hxp-white: #FFFFFF;
  --hxp-ink: #2B2B2B;
  --hxp-ink-soft: #5B5670;
  --hxp-muted: #8A85A0;
  --hxp-hairline: #EDE8EE;
  --hxp-lilac: #F1EFF9;
  --hxp-whatsapp: #25D366;
  --hxp-whatsapp-dark: #1DA851;

  --hxp-font: "Urbanist", system-ui, sans-serif;
  --hxp-font-script: "Great Vibes", "Pauline", cursive;

  --r-btn: 10px;
  --r-card: 16px;
  --r-form: 20px;
  --r-input: 10px;
  --r-pill: 40px;
  --r-tile: 18px;

  --shadow-card: 0 12px 34px rgba(16, 0, 64, 0.07);
  --shadow-soft: 0 6px 20px rgba(16, 0, 64, 0.06);
  --shadow-lift: 0 18px 44px rgba(16, 0, 64, 0.12);

  --container: 1360px;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--hxp-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--hxp-ink);
  background: var(--hxp-white);
  -webkit-font-smoothing: antialiased;
}

img, svg, video, iframe { display: block; max-width: 100%; }
img, video { height: auto; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, ul, ol, dl, dd, dt, figure, figcaption { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--hxp-coral); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--hxp-white);
  color: var(--hxp-navy);
  padding: 12px 20px;
  border-radius: 0 0 var(--r-btn) 0;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}

/* ---------- Type helpers ---------- */
.script {
  font-family: var(--hxp-font-script);
  font-weight: 400;
  color: var(--hxp-peach);
  font-size: 1.16em;
  line-height: 1;
}

.kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hxp-coral);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--hxp-navy);
}
.section-title em { font-style: italic; font-weight: 600; }

.section-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--hxp-ink-soft);
}

.center { text-align: center; }
.center.kicker, .center.section-body, .center.proof-line { margin-inline: auto; }
.narrow { max-width: 760px; }

.disclaimer {
  margin-top: 34px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--hxp-muted);
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}
.disclaimer.left { text-align: left; margin-inline: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--r-btn);
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: center;
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn-coral { background: var(--hxp-coral); color: var(--hxp-white); }
.btn-coral:hover { background: var(--hxp-coral-dark); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(234, 67, 93, .28); }
.btn-whatsapp { background: var(--hxp-whatsapp); color: var(--hxp-white); }
.btn-whatsapp:hover { background: var(--hxp-whatsapp-dark); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(37, 211, 102, .32); }
.btn-whatsapp img { width: 20px; height: 20px; flex-shrink: 0; }
.btn.is-loading { pointer-events: none; opacity: 0.88; }
.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
  flex-shrink: 0;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .25s ease, box-shadow .25s ease;
}
.site-header.is-stuck,
.site-header.is-nav-open {
  background: rgba(16, 0, 64, .93);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 18px rgba(16, 0, 64, .28);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.header-logo img { width: 150px; height: auto; }

.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, .92);
  font-size: 16px;
  font-weight: 500;
  padding-block: 6px;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--hxp-peach);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after { transform: scaleX(1); }

.header-right { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 2. Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 780px;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 44px);
  padding-bottom: 96px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(16, 0, 64, .92) 0%, rgba(16, 0, 64, .78) 45%, rgba(16, 0, 64, .62) 100%),
    rgba(16, 0, 64, .28);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 420px);
  gap: 64px;
  align-items: center;
}

.hero-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--hxp-peach);
  margin-bottom: 20px;
}
.hero-heading {
  font-size: clamp(38px, 4.5vw, 66px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-heading .script { font-size: 1.1em; color: var(--hxp-peach); }
.hero-sub {
  margin-top: 26px;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.68;
  color: rgba(255, 255, 255, .86);
  font-weight: 300;
}
.hero-copy .btn { margin-top: 34px; }

.hero-form-card {
  background: var(--hxp-white);
  border-radius: var(--r-form);
  padding: 34px 32px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .3);
}
.form-title {
  font-size: 29px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--hxp-navy);
}
.form-title .script { font-size: 1.2em; }
.form-subtitle {
  margin-top: 8px;
  font-size: 15px;
  color: var(--hxp-muted);
}

.form-field { margin-top: 20px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--hxp-ink-soft);
  margin-bottom: 7px;
}
.form-field label.sr-only { margin: -1px; }
.form-field > input,
.form-field > select,
.form-field > textarea,
.form-field .iti__tel-input {
  width: 100%;
  border: 1px solid #DDD8E4;
  border-radius: var(--r-input);
  padding: 14px 16px;
  color: var(--hxp-ink);
  background: var(--hxp-white);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-field textarea {
  min-height: 96px;
  resize: vertical;
}
.form-field > input::placeholder,
.form-field .iti__tel-input::placeholder,
.form-field textarea::placeholder { color: #A9A4BA; }
.form-field > input:focus,
.form-field > select:focus,
.form-field > textarea:focus,
.form-field .iti__tel-input:focus {
  outline: 0;
  border-color: var(--hxp-purple);
  box-shadow: 0 0 0 3px rgba(122, 116, 209, .16);
}

.form-field .iti,
.form-field .phone-iti {
  display: block;
  width: 100%;
  --iti-hover-color: rgba(122, 116, 209, .12);
  --iti-border-color: #DDD8E4;
  --iti-icon-color: var(--hxp-muted);
}
.iti--detached-country-selector,
.iti--fullscreen-popup.iti--detached-country-selector {
  z-index: 2000;
}

.field-error,
.phone-status {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
}
.field-error {
  display: none;
  color: var(--hxp-coral);
}
.phone-status { color: var(--hxp-muted); }
.phone-status.is-invalid { color: var(--hxp-coral); }
.phone-status.is-valid { color: #1F8A5B; }
.form-field.invalid > input,
.form-field.invalid .iti__tel-input { border-color: var(--hxp-coral); }
.form-field.is-valid .iti__tel-input { border-color: #1F8A5B; }
.form-field.invalid .field-error { display: block; }

.lead-form .btn-block { margin-top: 22px; }

.trust-list { margin-top: 20px; display: grid; gap: 11px; }
.trust-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--hxp-muted);
}
.trust-list svg { color: var(--hxp-coral); margin-top: 2px; }

.form-thanks { text-align: center; padding-block: 16px; }
.form-thanks h3 { font-size: 26px; color: var(--hxp-navy); font-weight: 700; }
.form-thanks p { margin-top: 12px; color: var(--hxp-ink-soft); }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .7);
}

/* ---------- 3a. Wavy ticker ---------- */
/* Two thin parallel salmon sine rules with salmon caps text on the midline.
   Geometry from the PDF crop: period 720, amplitude 23, rule gap 32 at 1512. */
.ticker {
  background: var(--hxp-page);
  overflow: hidden;
  padding-block: 8px 12px;
}
/* Floor width keeps type legible on narrow screens; surplus is clipped. */
.ticker svg { display: block; width: 100%; min-width: 1200px; height: auto; }
.ticker-rule {
  fill: none;
  stroke: var(--hxp-salmon);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ticker-text {
  fill: var(--hxp-salmon);
  font-family: var(--hxp-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

/* ---------- 3b. Stats + trust ---------- */
.stats-band { background: var(--hxp-page); padding: 26px 0 74px; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat { text-align: center; padding: 14px 20px; position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: #E6DFE6;
}
.stat dt {
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700;
  line-height: 1;
  color: var(--hxp-navy);
  letter-spacing: -0.02em;
}
.stat dt .plus { color: var(--hxp-coral); }
.stat dd { margin-top: 10px; font-size: 16px; color: var(--hxp-ink-soft); }

.trust-row { margin-top: 52px; display: flex; justify-content: center; }
.tp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
  background: var(--hxp-white);
  border-radius: var(--r-pill);
  padding: 14px 26px;
  box-shadow: var(--shadow-soft);
  font-size: 15px;
  color: var(--hxp-ink-soft);
  text-align: center;
}
.tp-badge strong { color: var(--hxp-navy); }

/* ---------- Section shells ---------- */
.section { padding-block: 96px; }
.section-white { background: var(--hxp-white); }
.section-blush { background: var(--hxp-blush-b); }
.section-flush-top { padding-top: 24px; }

/* ---------- 4. Why Hospital XP ---------- */
.num-cards {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.num-card {
  background: var(--hxp-white);
  border: 1px solid var(--hxp-hairline);
  border-radius: var(--r-card);
  padding: 30px 26px 32px;
  box-shadow: var(--shadow-soft);
}
.num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hxp-blush);
  color: var(--hxp-coral);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.num-card h3 {
  margin-top: 22px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--hxp-navy);
}
.num-card p { margin-top: 12px; font-size: 15.5px; line-height: 1.65; color: var(--hxp-ink-soft); }

/* ---------- 5. Patient stories ---------- */
.story-row {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.story-card { margin: 0; }
.story-media {
  position: relative;
  border-radius: var(--r-tile);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--hxp-navy);
  box-shadow: var(--shadow-card);
}
.story-media video { width: 100%; height: 100%; object-fit: cover; }
.story-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(16, 0, 64, .12);
  transition: background-color .2s ease;
}
.story-play:hover { background: rgba(16, 0, 64, .24); }
.story-play span {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
}
.story-play span::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 19px solid var(--hxp-navy);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}
.story-media.is-playing .story-play { display: none; }
.story-card figcaption {
  margin-top: 16px;
  text-align: center;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--hxp-navy);
}

.center-cta { margin-top: 48px; display: flex; justify-content: center; }

/* ---------- 6. Journey steps ---------- */
.step-cards {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.step-card {
  position: relative;
  overflow: hidden;
  background: var(--hxp-white);
  border-radius: var(--r-card);
  padding: 30px 28px 32px;
  box-shadow: var(--shadow-card);
}
.step-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--hxp-coral);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.step-ghost {
  position: absolute;
  top: -18px;
  right: 14px;
  font-size: 118px;
  font-weight: 800;
  line-height: 1;
  color: var(--hxp-blush);
  opacity: .5;
  pointer-events: none;
}
.step-label {
  position: relative;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hxp-coral);
}
.step-card h3 {
  position: relative;
  margin-top: 8px;
  font-size: 21px;
  font-weight: 700;
  color: var(--hxp-navy);
}
.step-card > p:last-child {
  position: relative;
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--hxp-ink-soft);
}

/* ---------- 7. Our doctors ---------- */
.doctors-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 60px;
  align-items: center;
}
.doctors-copy .section-body { margin-top: 20px; }
.doctors-copy .btn { margin-top: 32px; }

.doctor-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.doctor-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-card);
  overflow: hidden;
  text-align: left;
  background: var(--hxp-navy);
  box-shadow: var(--shadow-card);
}
.doctor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.doctor-card:hover img { transform: scale(1.04); }
.doctor-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16, 0, 64, .1) 30%, rgba(16, 0, 64, .84) 100%);
}
.doctor-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--hxp-purple);
  display: grid;
  place-items: center;
}
.doctor-meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: grid;
  gap: 4px;
}
.doctor-meta strong { font-size: 20px; font-weight: 700; color: #fff; }
.doctor-meta em { font-style: normal; font-size: 14.5px; color: rgba(255, 255, 255, .78); }

/* ---------- 8. What is included ---------- */
.proof-line {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 600;
  color: var(--hxp-navy);
}
.section-blush .section-body.center { margin-top: 14px; }

.inc-cards {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.inc-card {
  background: var(--hxp-white);
  border: 1px solid var(--hxp-peach);
  border-radius: var(--r-card);
  padding: 28px 26px 30px;
}
.inc-check { display: block; color: var(--hxp-coral); }
.inc-card h3 {
  margin-top: 18px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--hxp-navy);
}
.inc-card p { margin-top: 11px; font-size: 15.5px; line-height: 1.65; color: var(--hxp-ink-soft); }

/* ---------- 9. Before & after ---------- */
.ba-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 60px;
  align-items: center;
}
.ba-compare {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-card);
  overflow: hidden;
  background: #fff;
  user-select: none;
}
.ba-frame {
  position: absolute;
  inset: 0;
}
.ba-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.ba-after {
  clip-path: inset(0 0 0 var(--split));
}
.ba-tag {
  position: absolute;
  top: 16px;
  padding: 7px 15px;
  border-radius: var(--r-pill);
  background: rgba(16, 0, 64, .82);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ba-tag-before { left: 16px; }
.ba-tag-after { right: 16px; }

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-x;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  z-index: 3;
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 46px; height: 100%; }
.ba-range::-moz-range-thumb { width: 46px; height: 100%; border: 0; background: transparent; }

.ba-compare::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 3px;
  margin-left: -1.5px;
  background: #fff;
  z-index: 2;
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--split);
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--hxp-navy);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(16, 0, 64, .22);
  z-index: 2;
  pointer-events: none;
}
.ba-range:focus-visible ~ .ba-handle { outline: 2px solid var(--hxp-coral); outline-offset: 3px; }

/* ---------- 10. Reviews ---------- */
.rv-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
}
.rv-head .section-body { margin-top: 16px; }
.rv-badge-wrap { display: grid; justify-items: end; gap: 12px; }
.rv-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--hxp-white);
  border-radius: 14px;
  padding: 14px 22px;
  box-shadow: var(--shadow-soft);
  font-size: 15px;
  color: var(--hxp-navy);
}
.rv-link { font-size: 14.5px; font-weight: 600; color: var(--hxp-coral); }
.rv-link:hover { text-decoration: underline; }

.rv-stars { display: inline-flex; gap: 3px; }
.rv-stars i {
  width: 15px;
  height: 15px;
  background: #F5B640;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.rv-stars i.half { background: linear-gradient(90deg, #F5B640 50%, #DDD8E4 50%); }

.rv-cards {
  margin-top: 48px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.rv-cards::-webkit-scrollbar { display: none; }
.rv-card {
  scroll-snap-align: start;
  background: var(--hxp-white);
  border-radius: var(--r-card);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rv-card p { font-size: 15.5px; line-height: 1.68; color: var(--hxp-ink); flex: 1; }
.rv-card footer { display: flex; align-items: center; gap: 12px; }
.rv-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--hxp-blush);
  color: var(--hxp-coral);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex: none;
}
.rv-card footer > span:last-child { display: grid; }
.rv-card footer strong { font-size: 15px; color: var(--hxp-navy); }
.rv-card footer em { font-style: normal; font-size: 13.5px; color: var(--hxp-muted); }

.rv-foot {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.rv-dots { display: flex; gap: 4px; }
.rv-dots button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: transparent;
}
.rv-dots button::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #DDD8E4;
  transition: background-color .18s ease, transform .18s ease;
}
.rv-dots button.is-active::before { background: var(--hxp-coral); transform: scale(1.2); }

/* ---------- 11. International guests ---------- */
.guests-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 60px;
  align-items: center;
}
.guests-copy .section-body { margin-top: 14px; }

.avatar-row { margin-top: 30px; display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}
.avatar-stack img + img { margin-left: -14px; }
.avatar-row > span:last-child { font-size: 15px; color: var(--hxp-muted); }

.check-list { margin-top: 26px; display: grid; gap: 14px; }
.check-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-size: 16.5px;
  color: var(--hxp-ink);
}
.check-list svg { color: var(--hxp-coral); margin-top: 3px; }

.time-cards { display: grid; gap: 20px; }
.time-card {
  background: var(--hxp-white);
  border-radius: var(--r-card);
  padding: 28px 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.time-card strong {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--hxp-coral);
  letter-spacing: -0.01em;
  flex: none;
}
.time-card p { font-size: 15.5px; line-height: 1.6; color: var(--hxp-ink-soft); }

/* ---------- 12. Featured treatments ---------- */
.tx-filters { margin-top: 34px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.tx-pill {
  border: 1px solid var(--hxp-navy);
  border-radius: var(--r-pill);
  padding: 10px 26px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--hxp-navy);
  background: transparent;
  transition: background-color .18s ease, color .18s ease;
}
.tx-pill:hover { background: rgba(16, 0, 64, .06); }
.tx-pill.is-active { background: var(--hxp-navy); color: #fff; }

.tx-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.tx-card {
  position: relative;
  background: var(--hxp-white);
  border-radius: var(--r-card);
  padding: 26px 22px 28px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.tx-card[hidden] { display: none; }
.tx-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tx-core { background: var(--hxp-coral); color: #fff; }
.tx-optional { background: var(--hxp-lilac); color: #5C527F; }
.tx-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FBEAEA;
  color: var(--hxp-navy);
  display: grid;
  place-items: center;
  margin-top: 26px;
}
.tx-card h3 {
  margin-top: 26px;
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.32;
  color: var(--hxp-navy);
}
.tx-card p { margin-top: 9px; font-size: 14.5px; line-height: 1.6; color: var(--hxp-ink-soft); }
.tx-card > div { min-width: 0; padding-right: 72px; }

/* ---------- 13. Who is suitable ---------- */
.suit-card {
  margin-top: 56px;
  background: var(--hxp-white);
  border-radius: var(--r-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
}
.suit-card h3 { font-size: 27px; font-weight: 700; color: var(--hxp-navy); }
.suit-lead { margin-top: 10px; font-size: 16px; color: var(--hxp-muted); }
.suit-card .disclaimer { margin-top: 22px; }

/* ---------- 14. FAQ ---------- */
.faq-list {
  margin-top: 48px;
  max-width: 940px;
  margin-inline: auto;
  border-top: 1px solid var(--hxp-hairline);
}
.faq-item { border-bottom: 1px solid var(--hxp-hairline); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: var(--hxp-ink);
  transition: color .18s ease;
}
.faq-q:hover { color: var(--hxp-coral); }
.faq-icon {
  position: relative;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--hxp-coral);
  color: var(--hxp-coral);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease, transform .2s ease;
}
.faq-icon::before { width: 13px; height: 1.6px; }
.faq-icon::after { width: 1.6px; height: 13px; }
.faq-q[aria-expanded="true"] { color: var(--hxp-navy); font-weight: 600; }
.faq-q[aria-expanded="true"] .faq-icon { background: var(--hxp-coral); color: #fff; }
.faq-q[aria-expanded="true"] .faq-icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.faq-a { padding: 0 46px 28px 4px; }
.faq-a p { font-size: 16px; line-height: 1.72; color: var(--hxp-ink-soft); }

/* ---------- 15. Footer ---------- */
.site-footer { background: var(--hxp-navy); color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.05fr 0.75fr 1.05fr;
  gap: 48px;
  padding-block: 78px 62px;
}
.footer-brand img { width: 180px; height: auto; }
.footer-brand p {
  margin-top: 20px;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
}
.footer-social { margin-top: 22px; display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
  transition: background-color .18s ease;
}
.footer-social a:hover { background: var(--hxp-coral); }

.site-footer h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-list { display: grid; gap: 12px; }
.footer-list a,
.footer-list li {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
}
.footer-list a:hover { color: #fff; text-decoration: underline; }

.footer-map {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
}
.footer-map iframe { width: 100%; height: 168px; border: 0; filter: grayscale(.2); }
.footer-map-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .72);
}
.footer-map-link:hover { color: #fff; text-decoration: underline; }

.footer-legal { border-top: 1px solid rgba(255, 255, 255, .22); }
.footer-legal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-block: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, .66);
}
.footer-legal-links { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.footer-legal-links a:hover { color: #fff; text-decoration: underline; }

/* ---------- WhatsApp popup ---------- */
.wa-popup {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(16, 0, 64, .58);
  display: grid;
  place-items: center;
  align-items: start;
  padding: 12vh 24px 24px;
  overflow-y: auto;
}
.wa-popup[hidden] { display: none; }
.wa-modal {
  position: relative;
  width: 100%;
  max-width: 430px;
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: var(--r-form);
  padding: 36px 32px 30px;
  box-shadow: var(--shadow-lift);
}
.wa-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 30px;
  line-height: 1;
  color: var(--hxp-muted);
}
.wa-modal h4 { font-size: 23px; font-weight: 700; color: var(--hxp-navy); }
.wa-lead { margin-top: 10px; font-size: 15px; color: var(--hxp-ink-soft); }
.wa-modal form { margin-top: 6px; }
.wa-modal .btn-block { margin-top: 20px; }
.wa-security { margin-top: 14px; font-size: 13px; color: var(--hxp-muted); text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .num-cards, .story-row, .inc-cards, .tx-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px; }
}

@media (max-width: 1024px) {
  :root { --header-h: 72px; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(16, 0, 64, .97);
    backdrop-filter: blur(12px);
    padding: 12px 32px 24px;
    box-shadow: 0 18px 34px rgba(16, 0, 64, .3);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .site-nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav a { padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); font-size: 17px; }
  .site-nav a::after { display: none; }
  .nav-toggle { display: flex; }

  .hero { min-height: 0; padding-bottom: 72px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .hero-form-card { max-width: 480px; width: 100%; margin-inline: auto; }
  .scroll-cue { display: none; }

  .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 26px; }
  .stat:nth-child(odd)::before { display: none; }

  .doctors-inner, .ba-inner, .guests-inner { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .doctor-cards, .tx-grid { grid-template-columns: minmax(0, 1fr); }
  .rv-head { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .rv-badge-wrap { justify-items: start; }
  .rv-cards { grid-auto-columns: calc((100% - 24px) / 2); }
  .suit-card { grid-template-columns: minmax(0, 1fr); gap: 28px; justify-items: start; }

  .story-row {
    grid-auto-flow: column;
    grid-auto-columns: 74%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -32px;
    padding-inline: 32px;
  }
  .story-row::-webkit-scrollbar { display: none; }
  .story-card { scroll-snap-align: center; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container { padding-inline: 20px; }
  .section { padding-block: 64px; }
  .section-flush-top { padding-top: 16px; }

  .header-logo img { width: 118px; }
  .site-nav { padding: 12px 20px 24px; }
  .hero { padding-top: calc(var(--header-h) + 32px); }
  .hero-heading { font-size: clamp(32px, 8.6vw, 42px); }
  .hero-sub { font-size: 16.5px; }
  .hero-form-card { padding: 26px 22px; }
  .form-title { font-size: 25px; }

  .stats-band { padding-bottom: 56px; }
  .stat dt { font-size: 34px; }
  .trust-row { margin-top: 36px; }
  .tp-badge { font-size: 14px; padding: 12px 18px; }

  .inc-cards, .tx-grid, .doctor-cards {
    grid-template-columns: minmax(0, 1fr);
  }
  .num-cards, .step-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .inc-cards, .tx-grid { gap: 18px; }

  .num-card { padding: 20px 14px 22px; }
  .num-card h3 { margin-top: 14px; font-size: 16px; }
  .num-card p { margin-top: 8px; font-size: 13.5px; }
  .num-badge { width: 36px; height: 36px; font-size: 13px; }

  .step-card { padding: 20px 14px 22px; }
  .step-ghost { top: -8px; right: 4px; font-size: 72px; }
  .step-dot { width: 32px; height: 32px; font-size: 14px; }
  .step-label { margin-top: 14px; }
  .step-card h3 { font-size: 16.5px; }
  .step-card > p:last-child { margin-top: 8px; font-size: 13.5px; }

  .story-row { margin-inline: -20px; padding-inline: 20px; }
  .story-play span { width: 54px; height: 54px; }
  .story-play span::after { border-left-width: 15px; border-top-width: 10px; border-bottom-width: 10px; }

  .center-cta .btn, .rv-foot .btn, .suit-card .btn,
  .hero-copy .btn, .doctors-copy .btn { width: 100%; }
  .rv-cards { grid-auto-columns: 88%; margin-inline: -20px; padding-inline: 20px; }
  .rv-foot { justify-content: center; }

  .time-card { flex-direction: column; gap: 8px; }
  .suit-card { padding: 28px 24px; }
  .suit-card h3 { font-size: 23px; }

  .faq-q { font-size: 16.5px; padding: 22px 2px; gap: 16px; }
  .faq-a { padding: 0 8px 24px 2px; }

  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 38px; padding-block: 56px 44px; }
  .footer-legal-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
