/* ============================================================
   Confident32 — design system
   Editorial luxury clinic: cream canvas, deep teal ink,
   coral accents. Fraunces (display) + Outfit (text).
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face { font-family: 'Fraunces'; src: url('../fonts/fraunces-v38-latin-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Fraunces'; src: url('../fonts/fraunces-v38-latin-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Fraunces'; src: url('../fonts/fraunces-v38-latin-900.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Fraunces'; src: url('../fonts/fraunces-v38-latin-italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../fonts/outfit-v15-latin-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../fonts/outfit-v15-latin-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../fonts/outfit-v15-latin-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../fonts/outfit-v15-latin-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --ink:        #10282b;
  --ink-soft:   #3d5457;
  --teal-deep:  #0e3b40;
  --teal:       #17646b;
  --mint:       #2bb3a3;
  --mint-light: #8fe3d9;
  --mint-pale:  #e2f4f1;
  --cream:      #f7f3ec;
  --cream-dark: #efe7da;
  --sand:       #e4d7bf;
  --coral:      #ff6b5e;
  --coral-dark: #e85546;
  --white:      #ffffff;
  --gold:       #d9a441;

  --font-display: 'Fraunces', Georgia, serif;
  --font-text:    'Outfit', 'Segoe UI', sans-serif;

  --fs-900: clamp(2.55rem, 3.4vw, 3rem);
  --fs-800: clamp(2.1rem, 4.6vw, 3.4rem);
  --fs-700: clamp(1.7rem, 3.2vw, 2.4rem);
  --fs-600: clamp(1.3rem, 2.2vw, 1.65rem);
  --fs-500: 1.17rem;
  --fs-400: 1rem;
  --fs-300: .88rem;
  --fs-200: .78rem;

  --space-1: .5rem; --space-2: 1rem; --space-3: 1.6rem;
  --space-4: 2.4rem; --space-5: 3.6rem; --space-6: 5.5rem;

  --radius-s: 10px; --radius-m: 18px; --radius-l: 28px;
  --shadow-soft: 0 10px 40px -12px rgba(14, 59, 64, .18);
  --shadow-lift: 0 24px 60px -20px rgba(14, 59, 64, .32);
  --container: 1180px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* iOS needs overflow clipping on html (body alone is ignored) — stops the
     off-canvas nav creating scrollable blank space on real devices */
  overflow-x: hidden;
  /* overscroll/rubber-band canvas: cream past the top, footer-teal past the
     bottom — no more white flash below the footer on phones */
  background: linear-gradient(#f7f3ec 50%, #0e3b40 50%);
}
body {
  font-family: var(--font-text);
  font-size: var(--fs-400);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  min-height: 100%;
}
/* subtle paper grain */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 3; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .028 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--coral-dark); }
ul, ol { list-style: none; }
strong { font-weight: 600; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -.015em;
}
h1 { font-size: var(--fs-900); font-weight: 900; }
h2 { font-size: var(--fs-800); }
h3 { font-size: var(--fs-600); }
.serif-i { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.accent-coral { color: var(--coral); }
.accent-mint { color: var(--mint); }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.4rem, 8vw, 6.5rem); position: relative; }
.section--tint { background: var(--cream-dark); }
.section--dark { background: var(--teal-deep); color: var(--mint-pale); }
.section--dark h2, .section--dark h3 { color: var(--white); }

/* eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--fs-200); font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: var(--space-2);
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--coral); border-radius: 2px; }
.section--dark .eyebrow { color: var(--mint-light); }

.lead { font-size: var(--fs-500); color: var(--ink-soft); max-width: 60ch; }
.section--dark .lead { color: #bcd9d4; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.9rem; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--font-text); font-size: 1.02rem; font-weight: 600; cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s, background .2s, color .2s, border-color .2s;
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:active { transform: scale(.97); }
.btn--coral { background: var(--coral); color: #fff; box-shadow: 0 12px 28px -10px rgba(232, 85, 70, .55); }
.btn--coral:hover { background: var(--coral-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(232, 85, 70, .6); }
.btn--dark { background: var(--teal-deep); color: #fff; }
.btn--dark:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.btn--ghost { border-color: rgba(14, 59, 64, .25); color: var(--teal-deep); background: transparent; }
.btn--ghost:hover { border-color: var(--teal-deep); color: var(--teal-deep); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--teal-deep); }
.btn--white:hover { color: var(--coral-dark); transform: translateY(-2px); }
.btn--wa { background: #22c15e; color: #fff; box-shadow: 0 12px 28px -10px rgba(34, 193, 94, .5); }
.btn--wa:hover { background: #1daf53; color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 1.15rem 2.4rem; font-size: 1.1rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 60;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding-block: 1.1rem;
}
.site-header.scrolled { background: rgba(247, 243, 236, .92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 6px 30px -12px rgba(14,59,64,.2); padding-block: .55rem; }
/* backdrop-filter turns the header into the containing block for the fixed
   off-canvas nav, collapsing the drawer to header height — drop it while open */
.site-header.nav-open { -webkit-backdrop-filter: none !important; backdrop-filter: none !important; background: #f7f3ec; }
.site-header .container { display: flex; align-items: center; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__icon { width: 42px; height: 42px; border-radius: 12px; box-shadow: 0 6px 18px -6px rgba(14,59,64,.4); }
.brand__logo { height: 44px; width: auto; display: block; }
@media (max-width: 640px) { .brand__logo { height: 34px; } }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.brand__name em { font-style: normal; color: var(--mint); }
.brand__tag { display: block; font-family: var(--font-text); font-size: .6rem; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; color: var(--coral); margin-top: .28rem; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 1.35rem; }
.main-nav a:not(.btn) { font-weight: 500; font-size: .97rem; color: var(--ink-soft); position: relative; white-space: nowrap; }
.main-nav a:not(.btn)::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--coral); border-radius: 2px; transition: width .25s var(--ease-out); }
.main-nav a:not(.btn):hover { color: var(--ink); }
.main-nav a:not(.btn):hover::after { width: 100%; }
.main-nav .btn { padding: .62rem 1.35rem; font-size: .93rem; }

/* ---- Services dropdown ---- */
.nav-item--drop { position: relative; }
.nav-item--drop > a .caret { margin-left: .3rem; transition: transform .25s var(--ease-out); }
.nav-item--drop:hover > a .caret, .nav-item--drop:focus-within > a .caret { transform: rotate(180deg); }
.nav-drop {
  position: absolute; top: calc(100% + .9rem); left: -0.9rem; min-width: 220px;
  background: #fff; border-radius: 14px; border: 1px solid rgba(14,59,64,.08);
  box-shadow: var(--shadow-lift); padding: .55rem;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility .25s;
}
/* hover bridge so the pointer can travel into the panel */
.nav-drop::before { content: ''; position: absolute; top: -1rem; left: 0; right: 0; height: 1rem; }
.nav-item--drop:hover .nav-drop, .nav-item--drop:focus-within .nav-drop {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.main-nav .nav-drop a { display: block; padding: .6rem .95rem; border-radius: 9px; font-size: .95rem; color: var(--ink); white-space: nowrap; }
.main-nav .nav-drop a::after { display: none; }
.main-nav .nav-drop a:hover { background: var(--mint-pale); color: var(--teal-deep); }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle svg { width: 30px; height: 30px; stroke: var(--ink); }

@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 84vw);
    background: var(--teal-deep); flex-direction: column; align-items: flex-start;
    padding: 5.4rem 2rem 2rem; gap: 1.4rem; transform: translateX(105%);
    transition: transform .35s var(--ease-out); box-shadow: -20px 0 60px rgba(0,0,0,.25); z-index: 70;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a:not(.btn) { color: var(--mint-pale); font-size: 1.12rem; }
  /* dropdown flattens into an always-visible indented group in the drawer */
  .nav-item--drop { position: static; }
  .nav-item--drop > a .caret { display: none; }
  .nav-drop {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: 0; box-shadow: none; min-width: 0;
    padding: .5rem 0 0 1.1rem; display: flex; flex-direction: column; gap: .7rem;
  }
  .nav-drop::before { display: none; }
  .main-nav .nav-drop a { color: var(--mint-light); font-size: 1rem; padding: 0; white-space: normal; }
  .main-nav .nav-drop a:hover { background: transparent; color: #fff; }
  .nav-close { position: absolute; top: 1.1rem; right: 1.1rem; background: none; border: 0; cursor: pointer; }
  .nav-close svg { width: 28px; height: 28px; stroke: var(--mint-pale); }
}
@media (min-width: 1101px) { .nav-close { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 6.5rem; padding-bottom: 7rem; /* bottom room for the pinned marquee */
  overflow: hidden;
  background: linear-gradient(115deg, var(--cream) 0%, var(--cream) 46%, var(--mint-pale) 100%);
}
.hero__blob {
  position: absolute; z-index: 0; border-radius: 50%; filter: blur(90px); opacity: .5; pointer-events: none;
}
.hero__blob--mint { width: 520px; height: 520px; background: var(--mint-light); top: -140px; right: -80px; }
.hero__blob--coral { width: 420px; height: 420px; background: #ffd7cf; bottom: -160px; left: -120px; opacity: .65; }
/* minmax(0,…) stops long headline text from inflating the copy track's auto
   minimum and starving the photo column (it was collapsing to ~300px) */
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid var(--cream-dark);
  border-radius: 999px; padding: .45rem 1.05rem .45rem .55rem; font-size: .85rem; font-weight: 600; color: var(--teal);
  box-shadow: var(--shadow-soft); margin-bottom: 1.6rem;
}
.hero__kicker .dot { width: 26px; height: 26px; border-radius: 50%; background: var(--coral); display: grid; place-items: center; color: #fff; font-size: .72rem; font-weight: 800; }
.hero h1 { margin-bottom: 1.3rem; }
.hero h1 .underline { position: relative; }
.hero h1 .underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: .06em; height: .3em; z-index: -1;
  background: linear-gradient(90deg, var(--mint-light), var(--mint)); border-radius: 4px; opacity: .55;
}
.hero__sub { font-size: var(--fs-500); color: var(--ink-soft); max-width: 54ch; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.6rem; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; }
.hero__proof div { display: flex; flex-direction: column; }
.hero__proof strong { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; color: var(--teal-deep); line-height: 1.1; }
.hero__proof span { font-size: .82rem; color: var(--ink-soft); letter-spacing: .04em; }

.hero__visual { position: relative; align-self: center; }
.hero__img-wrap {
  position: relative; border-radius: var(--radius-l) var(--radius-l) 200px 200px; overflow: hidden;
  box-shadow: var(--shadow-lift); aspect-ratio: 4 / 5; width: 100%;
  /* cap by viewport so the photo floats vertically centred in the hero
     instead of overrunning the fold on shorter screens (incl. marquee room) */
  max-height: min(640px, calc(100svh - 21.5rem));
}
.hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero__img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(43,179,163,.12), transparent 55%); }
.float-card {
  position: absolute; background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border-radius: var(--radius-m); box-shadow: var(--shadow-lift); padding: .95rem 1.25rem;
  display: flex; align-items: center; gap: .8rem; animation: floaty 5.5s ease-in-out infinite;
}
.float-card--price { bottom: 8%; left: -9%; animation-delay: .8s; }
.float-card--rating { top: 7%; right: -6%; }
.float-card .ic { width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center; }
.float-card--price .ic { background: var(--mint-pale); color: var(--teal); }
.float-card--rating .ic { background: #fff1ef; color: var(--coral); }
.float-card .ic svg { width: 22px; height: 22px; }
.float-card b { display: block; font-size: 1.02rem; line-height: 1.25; color: var(--ink); }
.float-card small { color: var(--ink-soft); font-size: .78rem; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 5.6rem; }
  .hero .container { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 430px; margin-inline: auto; width: 100%; }
  .hero__img-wrap { aspect-ratio: 5/5.4; }
  .float-card { padding: .7rem .95rem; gap: .6rem; }
  .float-card .ic { width: 36px; height: 36px; }
  .float-card b { font-size: .9rem; }
  .float-card small { font-size: .72rem; }
  .float-card--price { left: 2px; bottom: 4%; }
  .float-card--rating { right: 2px; }
}

/* ---------- Trust marquee ---------- */
.marquee { background: var(--teal-deep); padding-block: .95rem; overflow: hidden; position: relative; }
/* inside the hero: pinned to its bottom edge, part of the first screen */
.hero .marquee { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; }
.marquee__track { display: flex; gap: 3.2rem; width: max-content; animation: marquee 30s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: .6rem; color: var(--mint-pale); font-size: .9rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.marquee span::before { content: '✦'; color: var(--coral); font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Generic cards / grids ---------- */
.grid { display: grid; gap: var(--space-3); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border-radius: var(--radius-m); padding: 1.9rem;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(14,59,64,.06);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card .ic {
  width: 52px; height: 52px; border-radius: 14px; background: var(--mint-pale); color: var(--teal);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .55rem; font-size: 1.22rem; }
.card p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Calculator ---------- */
.calc {
  background: radial-gradient(1200px 600px at 85% -10%, rgba(43,179,163,.25), transparent 60%), var(--teal-deep);
  border-radius: var(--radius-l); padding: clamp(1.6rem, 4vw, 3.2rem); color: var(--mint-pale);
  box-shadow: var(--shadow-lift); position: relative; overflow: hidden;
}
.calc::before { content: ''; position: absolute; right: -70px; bottom: -90px; width: 320px; height: 320px; border: 2px dashed rgba(143,227,217,.2); border-radius: 50%; }
.calc__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.6rem, 4vw, 3rem); position: relative; z-index: 1; }
@media (max-width: 900px) { .calc__grid { grid-template-columns: 1fr; } }
.calc h3 { color: #fff; font-size: var(--fs-700); margin-bottom: .6rem; }
.calc label { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--mint-light); margin: 1.3rem 0 .5rem; }
.calc select {
  width: 100%; padding: .95rem 1.1rem; border-radius: 12px; border: 1px solid rgba(143,227,217,.35);
  background: rgba(255,255,255,.07); color: #fff; font-family: var(--font-text); font-size: 1rem; font-weight: 500;
  appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%238fe3d9' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; cursor: pointer;
}
.calc select option { color: var(--ink); background: #fff; }
.calc__note { font-size: .8rem; color: rgba(188,217,212,.75); margin-top: 1.2rem; }

.calc__result { background: rgba(255,255,255,.06); border: 1px solid rgba(143,227,217,.18); border-radius: var(--radius-m); padding: clamp(1.3rem, 3vw, 2rem); }
.calc__bars { display: flex; flex-direction: column; gap: 1.15rem; margin-bottom: 1.5rem; }
.calc__bar-row small { display: flex; justify-content: space-between; font-size: .85rem; color: var(--mint-light); margin-bottom: .4rem; font-weight: 600; }
.calc__bar { height: 16px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
.calc__bar i { display: block; height: 100%; border-radius: inherit; transition: width 1s var(--ease-out); }
.calc__bar--home i { background: linear-gradient(90deg, #b45309, var(--gold)); }
.calc__bar--india i { background: linear-gradient(90deg, var(--mint), var(--mint-light)); }
.calc__save { text-align: center; padding: 1.2rem; border-radius: var(--radius-m); background: linear-gradient(120deg, rgba(255,107,94,.16), rgba(255,107,94,.05)); border: 1px solid rgba(255,107,94,.35); }
.calc__save b { display: block; font-family: var(--font-display); font-size: clamp(1.35rem, 2.6vw, 2rem); font-weight: 900; color: #fff; line-height: 1.15; }
.calc__save span { font-size: .88rem; color: var(--mint-light); font-weight: 600; letter-spacing: .05em; }
.calc__perk { display: flex; align-items: center; gap: .7rem; margin-top: 1.1rem; font-size: .92rem; color: #ffd9d3; }
.calc__perk svg { width: 20px; height: 20px; flex: none; color: var(--coral); }
.calc__disclaimer { font-size: .74rem; color: rgba(188,217,212,.6); margin-top: 1rem; }

/* ---------- Steps (journey) ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; background: #fff; border-radius: var(--radius-m); padding: 2rem 1.6rem 1.7rem; box-shadow: var(--shadow-soft); border-top: 4px solid var(--mint); }
.step::before {
  counter-increment: step; content: '0' counter(step);
  position: absolute; top: -1.05rem; right: 1.2rem;
  font-family: var(--font-display); font-style: italic; font-size: 2.6rem; font-weight: 400;
  color: rgba(14,59,64,.14);
}
.step h3 { font-size: 1.13rem; margin: .9rem 0 .5rem; }
.step p { font-size: .92rem; color: var(--ink-soft); }
.step .step__ic { width: 54px; height: 54px; border-radius: 16px; background: var(--mint-pale); display: grid; place-items: center; color: var(--teal); }
.step .step__ic svg { width: 28px; height: 28px; }
.step .chip { display: inline-block; margin-top: .8rem; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--coral-dark); background: #fff1ef; border-radius: 999px; padding: .28rem .7rem; }

/* ---------- Comparison table ---------- */
.compare { overflow-x: auto; border-radius: var(--radius-m); box-shadow: var(--shadow-soft); }
.compare table { width: 100%; border-collapse: collapse; background: #fff; min-width: 640px; }
.compare th, .compare td { padding: 1.05rem 1.3rem; text-align: left; font-size: .95rem; border-bottom: 1px solid var(--cream-dark); }
.compare thead th { background: var(--teal-deep); color: #fff; font-family: var(--font-text); font-weight: 600; font-size: .9rem; letter-spacing: .04em; }
.compare thead th:nth-child(2) { background: var(--mint); }
.compare tbody th { font-weight: 600; color: var(--ink); background: var(--cream); white-space: nowrap; }
.compare td.good { color: var(--teal); font-weight: 600; }
.compare td.bad { color: #b3532f; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }

/* ---------- Testimonials ---------- */
.testi { background: #fff; border-radius: var(--radius-m); padding: 2rem; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 1.2rem; position: relative; }
.testi::before { content: '“'; position: absolute; top: .4rem; right: 1.4rem; font-family: var(--font-display); font-size: 4.6rem; line-height: 1; color: var(--mint-pale); }
.testi__stars { color: var(--gold); letter-spacing: .12em; font-size: .95rem; }
.testi p { font-size: .98rem; color: var(--ink-soft); font-style: italic; }
.testi footer { display: flex; align-items: center; gap: .85rem; margin-top: auto; }
.testi footer img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi footer b { display: block; font-size: .95rem; }
.testi footer small { color: var(--ink-soft); font-size: .78rem; }

/* ---------- Gallery / travel ---------- */
.travel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
@media (max-width: 900px) { .travel-grid { grid-template-columns: 1fr; } }
.travel-card { position: relative; border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4/4.6; }
.travel-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.travel-card:hover img { transform: scale(1.07); }
.travel-card figcaption {
  position: absolute; inset-inline: 0; bottom: 0; padding: 2.4rem 1.4rem 1.2rem;
  background: linear-gradient(transparent, rgba(14,40,43,.85)); color: #fff;
}
.travel-card figcaption b { font-family: var(--font-display); font-size: 1.25rem; display: block; }
.travel-card figcaption span { font-size: .85rem; color: var(--mint-light); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: .9rem; }
.faq details { background: #fff; border-radius: var(--radius-s); box-shadow: var(--shadow-soft); border: 1px solid rgba(14,59,64,.05); overflow: hidden; }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem; cursor: pointer; font-weight: 600; font-size: 1.02rem; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--mint-pale) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none'%3E%3Cpath d='M6 1v10M1 6h10' stroke='%2317646b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / 12px no-repeat;
  transition: transform .3s var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); background-color: #ffe4e0; }
.faq details p { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Lead form ---------- */
.lead-form { background: #fff; border-radius: var(--radius-l); box-shadow: var(--shadow-lift); padding: clamp(1.6rem, 4vw, 2.6rem); }
.lead-form h3 { font-size: var(--fs-600); margin-bottom: .4rem; }
.lead-form .sub { color: var(--ink-soft); font-size: .93rem; margin-bottom: 1.5rem; }
.lead-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
@media (max-width: 560px) { .lead-form .row { grid-template-columns: 1fr; } }
.field { margin-bottom: .95rem; }
.field label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .05em; color: var(--ink-soft); margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 12px; border: 1.5px solid var(--cream-dark);
  background: var(--cream); font-family: var(--font-text); font-size: .98rem; color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--mint); background: #fff; box-shadow: 0 0 0 4px rgba(43,179,163,.14);
}
.field textarea { min-height: 92px; resize: vertical; }
.lead-form .btn { width: 100%; margin-top: .4rem; }
.lead-form .privacy { font-size: .74rem; color: var(--ink-soft); text-align: center; margin-top: .8rem; }
.form-msg { display: none; padding: .9rem 1.1rem; border-radius: 12px; font-size: .92rem; font-weight: 500; margin-bottom: 1rem; }
.form-msg.err { display: block; background: #fdecea; color: #a33325; }
.form-msg.ok { display: block; background: var(--mint-pale); color: var(--teal); }
/* honeypot */
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; overflow: hidden; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--coral) 0%, var(--coral-dark) 100%);
  border-radius: var(--radius-l); padding: clamp(2rem, 5vw, 3.4rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem;
  color: #fff; box-shadow: 0 30px 70px -25px rgba(232,85,70,.55); position: relative; overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; top: -60px; right: -40px; width: 240px; height: 240px; border: 2px dashed rgba(255,255,255,.25); border-radius: 50%; }
.cta-band h2 { color: #fff; font-size: var(--fs-700); max-width: 20ch; }
.cta-band p { color: #ffe0db; margin-top: .4rem; max-width: 44ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-deep); color: #9fc4bf; padding: 4rem 0 2rem; margin-top: 0; position: relative; }
.site-footer::before { /* smile curve divider — overlays the bottom of the preceding
  section so its transparent area shows that section's own background (no pale strip) */
  content: ''; position: absolute; top: 0; inset-inline: 0; height: 56px;
  /* sink 3px into the footer: the solid part of the wave overlaps the footer bg,
     killing the subpixel seam that showed as a thin line above the footer */
  transform: translateY(calc(-100% + 3px));
  pointer-events: none; z-index: 1;
  /* stretch (100% 100%), never crop: `cover` was cropping the wave flat on wide
     screens, leaving a straight teal edge that read as a border above the footer */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 56h1440V20C1180 -8 900 -4 720 14 540 32 260 40 0 20z' fill='%230e3b40'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
}
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.4rem; margin-bottom: 2.6rem; }
@media (max-width: 900px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .cols { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-text); font-size: .85rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer a { color: #9fc4bf; font-size: .93rem; }
.site-footer a:hover { color: var(--mint-light); }
.site-footer li { margin-bottom: .55rem; }
.site-footer .brand__name { color: #fff; }
.site-footer .about { font-size: .9rem; margin-top: 1rem; max-width: 34ch; }
.site-footer .fineprint { padding-top: .4rem; font-size: .78rem; color: #6f9a94; }
.site-footer .fineprint p { margin-bottom: .5rem; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  /* floats above the hero's bottom trust ticker instead of overlapping it */
  position: fixed; right: clamp(.9rem, 3vw, 1.6rem); bottom: clamp(4.4rem, 7vh, 5rem); z-index: 55;
  display: flex; align-items: center; gap: .7rem; background: #22c15e; color: #fff;
  border-radius: 999px; padding: .8rem 1.35rem .8rem .9rem; font-weight: 600; font-size: .95rem;
  box-shadow: 0 14px 34px -8px rgba(34,193,94,.55); transition: transform .25s var(--ease-out), box-shadow .25s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); color: #fff; box-shadow: 0 20px 44px -8px rgba(34,193,94,.65); }
.wa-float svg { width: 26px; height: 26px; flex: none; }
.wa-float::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: #22c15e; animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .55; } 80%, 100% { transform: scale(1.45); opacity: 0; } }
@media (max-width: 640px) { .wa-float span { display: none; } .wa-float { padding: .9rem; } }

/* ---------- Slide-in mini form ---------- */
.mini-lead {
  position: fixed; left: 1.2rem; bottom: 1.2rem; z-index: 54; width: min(340px, calc(100vw - 5.5rem));
  background: #fff; border-radius: var(--radius-m); box-shadow: var(--shadow-lift); padding: 1.4rem;
  transform: translateY(130%); opacity: 0; transition: transform .5s var(--ease-out), opacity .5s;
}
.mini-lead.show { transform: translateY(0); opacity: 1; }
.mini-lead h4 { font-family: var(--font-display); font-size: 1.12rem; margin-bottom: .3rem; }
.mini-lead p { font-size: .82rem; color: var(--ink-soft); margin-bottom: .9rem; }
.mini-lead .close { position: absolute; top: .6rem; right: .6rem; background: var(--cream); border: 0; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; color: var(--ink-soft); font-size: 1rem; line-height: 1; }
@media (max-width: 640px) { .mini-lead { display: none; } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; } .reveal-d2 { transition-delay: .24s; } .reveal-d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 8.5rem 0 3.4rem; background: linear-gradient(115deg, var(--cream) 30%, var(--mint-pale)); }
.page-hero h1 { font-size: var(--fs-800); max-width: 22ch; }
.page-hero .lead { margin-top: 1rem; }
.breadcrumbs { font-size: .8rem; color: var(--ink-soft); margin-bottom: 1.2rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.breadcrumbs a { color: var(--teal); }

/* ---------- Article / prose ---------- */
.prose { max-width: 760px; margin-inline: auto; font-size: 1.05rem; }
.prose h2 { font-size: var(--fs-700); margin: 2.6rem 0 1rem; }
.prose h3 { margin: 2rem 0 .8rem; }
.prose p { margin-bottom: 1.15rem; color: var(--ink-soft); }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.3rem; color: var(--ink-soft); }
.prose ul { list-style: disc; } .prose ol { list-style: decimal; }
.prose li { margin-bottom: .5rem; }
.prose img { border-radius: var(--radius-m); box-shadow: var(--shadow-soft); margin: 1.8rem 0; }
.prose blockquote { border-left: 4px solid var(--mint); padding: .6rem 1.4rem; background: #fff; border-radius: 0 var(--radius-s) var(--radius-s) 0; margin-bottom: 1.2rem; font-style: italic; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.4rem; background: #fff; border-radius: var(--radius-s); overflow: hidden; box-shadow: var(--shadow-soft); font-size: .95rem; }
.prose th, .prose td { padding: .8rem 1rem; border-bottom: 1px solid var(--cream-dark); text-align: left; }
.prose thead th { background: var(--teal-deep); color: #fff; }
.prose .note { background: var(--mint-pale); border-radius: var(--radius-s); padding: 1rem 1.3rem; font-size: .93rem; margin-bottom: 1.2rem; }
/* in-article patient story */
.review-box {
  position: relative; background: #fff; border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius-m) var(--radius-m) 0; box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.7rem 1.2rem; margin: 2rem 0;
}
.review-box::after { content: '“'; position: absolute; top: .2rem; right: 1.1rem; font-family: var(--font-display); font-size: 3.4rem; line-height: 1; color: var(--mint-pale); }
.review-box .rb-label { display: inline-flex; align-items: center; gap: .45rem; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--coral-dark); margin-bottom: .6rem; }
.review-box .rb-label::before { content: '★★★★★'; letter-spacing: .1em; color: var(--gold); font-size: .8rem; }
.review-box p { font-style: italic; color: var(--ink); font-size: 1rem; margin-bottom: .6rem; }
.review-box footer { font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
/* no-JS fallback: tables scroll inside their own box on small screens */
@media (max-width: 760px) {
  .prose table:not(.stacked) { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .prose table:not(.stacked) thead, .prose table:not(.stacked) tbody { min-width: 540px; display: table; width: 100%; }
}

/* ---------- Stacked tables: rows become cards on phones ---------- */
@media (max-width: 700px) {
  .compare { overflow: visible; box-shadow: none; border-radius: 0; }
  table.stacked { display: block; min-width: 0; background: transparent; box-shadow: none; border-collapse: separate; }
  table.stacked thead { display: none; }
  table.stacked tbody { display: block; min-width: 0; }
  table.stacked tbody tr {
    display: block; background: #fff; border-radius: var(--radius-m);
    box-shadow: var(--shadow-soft); border: 1px solid rgba(14,59,64,.06);
    margin-bottom: .9rem; overflow: hidden;
  }
  table.stacked tbody tr:hover td { background: transparent; }
  /* row-label cell (th, or a td whose column header is blank) = card title */
  table.stacked tbody th,
  table.stacked td[data-label=""] {
    display: block; width: 100%; padding: .85rem 1.1rem .6rem; white-space: normal;
    background: var(--cream); font-weight: 700; font-size: .98rem; color: var(--ink);
    border-bottom: 2px solid var(--mint-pale); text-align: left;
  }
  table.stacked td[data-label=""]::before { display: none; }
  /* value cells = "label · value" lines */
  table.stacked td {
    display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
    padding: .6rem 1.1rem; border-bottom: 1px solid var(--cream-dark);
    font-size: .93rem; text-align: right;
  }
  table.stacked td::before {
    content: attr(data-label); flex: none; max-width: 48%;
    font-size: .78rem; font-weight: 600; letter-spacing: .02em;
    color: var(--ink-soft); text-align: left; white-space: normal;
  }
  /* first line of each card doubles as its header */
  table.stacked tbody tr > td:first-child:not([data-label=""]) {
    background: var(--cream); font-weight: 700; font-size: .95rem;
  }
  table.stacked tbody tr > *:last-child { border-bottom: 0; }
  table.stacked tbody tr:last-child { margin-bottom: 0; }
}

/* blog cards */
.post-card { background: #fff; border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .3s var(--ease-out), box-shadow .3s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.post-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.post-card .body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.post-card .cat { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-dark); }
.post-card h3 { font-size: 1.18rem; line-height: 1.3; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--teal); }
.post-card p { font-size: .9rem; color: var(--ink-soft); }
.post-card .more { margin-top: auto; font-weight: 600; font-size: .88rem; color: var(--teal); }

/* utility */
.mt-2 { margin-top: var(--space-2); } .mt-3 { margin-top: var(--space-3); } .mt-4 { margin-top: var(--space-4); } .mt-5 { margin-top: var(--space-5); }
.mb-2 { margin-bottom: var(--space-2); } .mb-3 { margin-bottom: var(--space-3); } .mb-4 { margin-bottom: var(--space-4); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.img-stack { position: relative; }
.img-stack img { border-radius: var(--radius-m); box-shadow: var(--shadow-lift); }
.img-stack::before { content: ''; position: absolute; inset: 1.4rem -1.4rem -1.4rem 1.4rem; border: 2px solid var(--mint); border-radius: var(--radius-m); z-index: -1; opacity: .5; }
