/* =========================================================
   Sachi Homeopathic Clinic — Premium DARK Design System
   Warm near-black base · emerald/gold accents · depth via
   surface-lightening + hairlines + ambient glow (not shadow)
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand accents (True Emerald/Mint Green - trending 2026 wellness tones) */
  --emerald-200: #d1f4e0;  /* soft mint wash */
  --emerald-300: #a2ebd0;  /* bright mint */
  --emerald-400: #34d399;  /* vibrant emerald accent */
  --emerald-500: #10b981;  /* medium emerald green */
  --emerald-600: #059669;  /* deep forest emerald */
  --gold-300:    #f3d9a3;
  --gold-400:    #eac07a;
  --gold-500:    #d9a857;

  /* Elegant Maroon Palette */
  --maroon-200:  #fecdd3;  /* soft rose/maroon wash */
  --maroon-300:  #fda4af;  /* bright rose/maroon tint */
  --maroon-400:  #fb7185;  /* light vibrant maroon */
  --maroon-500:  #be123c;  /* rich medium maroon */
  --maroon-600:  #9f1239;  /* deep wine maroon */
  --maroon-700:  #881337;  /* deepest wine maroon */

  /* Luxurious organic Forest Obsidian scale (Warm dark theme base) */
  --base:    #060a08;  /* page background */
  --base-2:  #09100d;  /* alternating section */
  --elev-1:  #0e1713;  /* card / raised surface */
  --elev-2:  #15241d;  /* hover / higher elevation */
  --night:   #030504;  /* deepest black (hero/footer) */

  /* Hairlines & overlays */
  --hair:      rgba(255,255,255,.07);
  --hair-2:    rgba(255,255,255,.11);
  --fill-1:    rgba(255,255,255,.035);
  --fill-2:    rgba(255,255,255,.06);
  --tint:      rgba(52,211,153,.12); /* true emerald/mint wash */
  --tint-soft: rgba(52,211,153,.07);

  /* Warm organic text colors (Optimized for maximum legibility and appeal on dark backgrounds) */
  --text:    #f1f7f3;  /* crisp warm-white */
  --heading: #ffffff;  /* pure clear white */
  --muted:   #a2b7a8;  /* highly visible light grey-green */
  --muted-2: #809686;  /* secondary subtext with proper WCAG contrast */

  /* Semantic */
  --bg: var(--base);
  --primary: var(--emerald-400);
  --primary-strong: var(--emerald-500);
  --accent: var(--maroon-400);

  /* Gradients */
  --grad-emerald: linear-gradient(135deg, var(--emerald-400), var(--emerald-600));
  --grad-text: linear-gradient(100deg, var(--emerald-300) 0%, var(--emerald-400) 45%, var(--maroon-400) 100%);
  --grad-card: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));

  /* Radii */
  --r-sm: 12px; --r-md: 18px; --r-lg: 26px; --r-xl: 36px; --r-pill: 999px;

  /* Shadows (deep, for dark) + glows */
  --sh-1: 0 1px 0 rgba(255,255,255,.03), 0 14px 30px -18px rgba(0,0,0,.7);
  --sh-2: 0 24px 50px -26px rgba(0,0,0,.8);
  --sh-3: 0 40px 80px -34px rgba(0,0,0,.85);
  --glow: 0 0 0 1px rgba(52,211,153,.25), 0 22px 60px -22px rgba(5,150,105,.5);
  --sh-glow: 0 16px 44px -14px rgba(5,150,105,.55);

  /* Type */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing (8px scale) */
  --s-1: 8px; --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 48px; --s-6: 64px; --s-7: 96px; --s-8: 128px;

  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  color-scheme: dark;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* soft ambient field behind everything */
body::before {
  content: ""; position: fixed; inset: -10%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 40% at 80% 10%, rgba(16, 185, 129, 0.12), transparent 60%),
    radial-gradient(50% 40% at 10% 90%, rgba(190, 18, 60, 0.1), transparent 60%);
  animation: ambientDrift 24s ease-in-out infinite;
  will-change: transform;
}
/* Global premium noise texture overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035; /* ultra-subtle tactile grain */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes ambientDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3vw, -2vh) scale(1.05); }
  66% { transform: translate(-2vw, 3vh) scale(0.95); }
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
::selection { background: rgba(56,182,240,.3); color: #fff; }
:focus-visible { outline: 3px solid var(--emerald-400); outline-offset: 3px; border-radius: 6px; }
::placeholder { color: var(--muted-2); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; border-top: 1px solid var(--hair); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

/* ---------- Typography ---------- */
.display { font-family: var(--font-display); font-weight: 700; line-height: 1.02; letter-spacing: -0.015em; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; color: var(--heading); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--emerald-300);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-emerald); border-radius: 2px; }
.eyebrow--light { color: var(--emerald-300); }
.eyebrow--center { justify-content: center; }

.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-top: 14px; }
.section-head p { color: var(--muted); margin-top: 18px; font-size: 1.075rem; }

.grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text); opacity: .92; }

.reveal-line, .reveal-word, .reveal-char { display: inline-block; will-change: transform, opacity; }
/* SplitText wraps gradient text in child divs, which breaks the parent's
   background-clip — re-apply the gradient on each split word */
.grad-text .reveal-word { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: var(--r-pill);
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), background .3s, border-color .3s;
  will-change: transform;
}
.btn i { font-size: 1.05em; }
.btn-primary { background: var(--grad-emerald); color: #04101e; box-shadow: var(--sh-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 60px -14px rgba(16, 185, 129, 0.7); }
.btn-ghost { background: rgba(255,255,255,.05); color: var(--text); border: 1px solid var(--hair-2); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(52, 211, 153, 0.4); transform: translateY(-2px); }
.btn-light { background: #f3f8ff; color: #060b15; }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn-outline { background: var(--fill-1); color: var(--text); border: 1px solid var(--hair-2); }
.btn-outline:hover { transform: translateY(-2px); border-color: rgba(52, 211, 153, 0.45); background: var(--fill-2); }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn .arrow { transition: transform .35s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Scroll progress ---------- */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-emerald); z-index: 1200; box-shadow: 0 0 14px rgba(52, 211, 153, 0.8);
}

/* ---------- Announcement bar ---------- */
#announce { background: #050a13; color: #c9dcee; font-size: .85rem; font-weight: 500; position: relative; z-index: 60; border-bottom: 1px solid var(--hair); }
#announce .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; }
#announce a { color: #d8e8f5; opacity: .9; display: inline-flex; align-items: center; gap: 7px; transition: opacity .2s, color .2s; }
#announce a:hover { opacity: 1; color: var(--emerald-300); }
#announce .ann-left { display: flex; gap: 22px; }
#announce .ann-soc { display: flex; gap: 16px; }
@media (max-width: 720px){ #announce .ann-left a:not(:first-child){ display:none; } #announce .ann-soc{ display:none; } }

/* ---------- Header ---------- */
/* ---------- Header ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s, padding .4s, backdrop-filter .4s, border-color .4s, transform .4s, width .4s, top .4s, margin .4s;
  padding-block: 14px;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  padding-block: 8px;
  background: rgba(8, 13, 24, 0.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--hair);
}
#site-header.scrolled .brand-logo {
  padding: 4px 14px;
}
#site-header.scrolled .brand-logo img {
  height: 48px;
}

/* Floating capsule design for desktop screens on scroll */
@media (min-width: 1121px) {
  #site-header.scrolled {
    top: 12px;
    margin-inline: auto;
    width: calc(100% - 48px);
    max-width: var(--container);
    background: rgba(11, 20, 38, 0.75);
    backdrop-filter: saturate(160%) blur(20px);
    -webkit-backdrop-filter: saturate(160%) blur(20px);
    border: 1px solid rgba(56, 182, 240, 0.16);
    border-radius: 50px;
    box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(23, 121, 184, 0.08);
  }
  #site-header.scrolled .nav-wrap {
    padding-inline: clamp(12px, 3vw, 24px);
  }
}

/* Compressing header for medium desktops to prevent text overlapping */
@media (min-width: 1121px) and (max-width: 1360px) {
  .brand .brand-sub {
    display: none; /* Hide tagline to save space */
  }
  .brand .brand-name {
    font-size: 1.05rem;
  }
  .brand-logo {
    padding: 4px 12px;
  }
  .brand-logo img {
    height: 48px;
  }
  .nav-wrap {
    gap: 12px;
  }
  .nav-links {
    gap: 2px;
  }
  .nav-links a {
    padding: 7px 10px;
    font-size: 0.86rem;
  }
  .nav-cta {
    gap: 8px;
  }
  .nav-cta .btn {
    padding: 10px 18px;
    font-size: 0.86rem;
  }
}

.nav-wrap { display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 13px; margin-right: auto; flex-shrink: 0; }
.brand-logo {
  flex: none;
  background: #fff;
  border-radius: 16px;
  padding: 8px 24px;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-1), inset 0 0 0 1px rgba(0,0,0,.05);
  transition: transform 0.3s var(--ease), padding 0.3s var(--ease);
}
.brand-logo img {
  height: 80px;
  width: auto;
  display: block;
  transition: height 0.3s var(--ease);
}
.brand:hover .brand-logo {
  transform: scale(1.04);
}
.brand .brand-txt { display: flex; flex-direction: column; justify-content: center; line-height: 1.15; gap: 2px; }
.brand .brand-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--heading); white-space: nowrap; letter-spacing: -.015em; }
.brand .brand-sub { display: block; font-size: .68rem; letter-spacing: .14em; color: var(--emerald-300); font-weight: 700; white-space: nowrap; text-transform: uppercase; }
@media (max-width: 480px){ .brand .brand-txt { display: none; } .brand-logo { padding: 4px 12px; } .brand-logo img { height: 48px; } }

/* Branded visual panel (placeholder where a real photo isn't available) */
.brand-visual { position: relative; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; text-align: center; padding: 36px; background: radial-gradient(120% 90% at 50% 0%, #1e0b10 0%, #0a1712 55%, #050a08 100%); overflow: hidden; transform-style: preserve-3d; }
.brand-visual::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(52,211,153,.16) 1px, transparent 1px); background-size: 22px 22px; opacity:.5; mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent); }
.brand-visual::after { content:""; position:absolute; width:75%; height:60%; top:-10%; background: radial-gradient(circle, rgba(52,211,153,.22) 0%, rgba(190,18,60,.2) 50%, transparent 70%); filter: blur(30px); }
.brand-visual .bv-mark {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 22px 50px -16px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(0,0,0,.05);
}
.brand-visual .bv-mark img {
  width: 88%;
  height: auto;
  display: block;
}
.brand-visual .bv-name { position: relative; font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; color: #fff; letter-spacing: -.01em; }
.brand-visual .bv-sub { position: relative; font-size: .92rem; color: #aec3d6; font-weight: 600; letter-spacing: .04em; }
.brand-visual .bv-chip { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: var(--r-pill); background: rgba(255,255,255,.08); border: 1px solid var(--hair-2); color: #d8e8f5; font-size: .82rem; font-weight: 600; backdrop-filter: blur(6px); }
.brand-visual .bv-chip i { color: var(--emerald-300); }
.nav-links { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.nav-links a { padding: 9px 14px; border-radius: var(--r-pill); font-weight: 600; font-size: .95rem; color: var(--muted); transition: color .25s, background .25s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--emerald-200); background: var(--tint); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 14px; background: var(--fill-2); border: 1px solid var(--hair); align-items: center; justify-content: center; font-size: 1.5rem; color: var(--text); }

@media (max-width: 1120px){
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
    flex-direction: column; align-items: stretch; gap: 6px;
    background: var(--elev-1); border-left: 1px solid var(--hair);
    padding: 96px 24px 32px; box-shadow: -20px 0 60px rgba(0,0,0,.5);
    transform: translateX(105%); transition: transform .5s var(--ease-out); z-index: 110;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 14px 16px; font-size: 1.1rem; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(3,7,16,.6); opacity: 0; visibility: hidden; transition: .4s; z-index: 105; }
  .nav-scrim.show { opacity: 1; visibility: visible; }
}

/* ---------- Hero ---------- */
#hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 80% -10%, #0b1a14 0%, #14050a 40%, var(--night) 75%, #030605 100%);
  color: #eaf3fb; padding-block: clamp(90px, 14vw, 170px); isolation: isolate;
}
#hero .hero-bg { position: absolute; inset: 0; z-index: -3; background: url("../img/hero-bg.jpg") center/cover no-repeat; opacity: .09; filter: hue-rotate(80deg) saturate(.7) brightness(.85); }
#hero::before {
  content: ""; position: absolute; z-index: -2; width: 62vw; height: 62vw; left: 56%; top: -22%;
  background: 
    radial-gradient(circle at 40% 40%, rgba(52,211,153,.32), transparent 60%),
    radial-gradient(circle at 60% 60%, rgba(190,18,60,.25), transparent 60%);
  filter: blur(40px); border-radius: 50%;
  animation: glowPulse 10s ease-in-out infinite;
  will-change: transform;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 0.7; }
}
#hero::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .55; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E"); }
.hero-spot { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .7; background: radial-gradient(300px 300px at var(--mx,70%) var(--my,30%), rgba(52,211,153,.15), rgba(190,18,60,.12) 70%, transparent 100%); transition: opacity .4s; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; background: rgba(255,255,255,.06); border: 1px solid var(--hair-2); border-radius: var(--r-pill); font-size: .85rem; font-weight: 600; color: var(--text); backdrop-filter: blur(8px); }
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--emerald-400); box-shadow: 0 0 0 4px rgba(52,211,153,.22); }
#hero h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); margin: 24px 0 0; color: #fff; }
#hero h1 .grad-text { background: var(--grad-text); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
#hero .hero-sub { margin-top: 22px; max-width: 520px; color: var(--muted); font-size: clamp(1.05rem,2vw,1.2rem); line-height: 1.65; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust .stars { color: var(--gold-400); letter-spacing: 2px; font-size: 1.05rem; }
.hero-trust .t-num { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: #fff; }
.hero-trust .t-lab { font-size: .82rem; color: var(--muted-2); }
.hero-trust .vr { width: 1px; height: 38px; background: var(--hair-2); }

.hero-visual { position: relative; perspective: 1000px; transform-style: preserve-3d; }
.hero-portrait { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 50px 100px -34px rgba(0,0,0,.8); border: 1px solid var(--hair-2); aspect-ratio: 4/4.6; transform-style: preserve-3d; }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero-portrait::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(5,10,20,.7), transparent 45%); }
.float-card { position: absolute; display: flex; align-items: center; gap: 12px; background: rgba(14,24,40,.82); backdrop-filter: blur(14px); color: var(--text); border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--sh-3); border: 1px solid var(--hair-2); will-change: transform; }
.float-card .fc-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--tint); color: var(--emerald-300); display: grid; place-items: center; font-size: 1.3rem; }
.float-card .fc-num { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; line-height: 1; color: var(--heading); }
.float-card .fc-lab { font-size: .76rem; color: var(--muted); }
.float-card.fc-1 { top: 8%; left: -34px; }
.float-card.fc-2 { bottom: 12%; right: -28px; }
.float-card.fc-3 { bottom: -22px; left: 18%; }

@media (max-width: 920px){
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  #hero .hero-sub, .hero-badge { margin-inline: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 420px; margin: 8px auto 0; }
  .float-card.fc-1 { left: -10px; } .float-card.fc-2 { right: -10px; }
}
@media (max-width: 520px){ .float-card.fc-3 { display: none; } .hero-trust .vr { display:none; } }

/* ---------- Stats band ---------- */
#stats { background: linear-gradient(180deg, var(--base-2), var(--base)); position: relative; }
#stats::after { content:""; position:absolute; inset:0; z-index:0; background: radial-gradient(60% 120% at 50% 0%, rgba(52,211,153,.08), transparent 70%); pointer-events:none; }
#stats .container { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; padding: 14px; position: relative; }
.stat:not(:last-child)::after { content:""; position:absolute; right:-12px; top:20%; height:60%; width:1px; background: var(--hair); }
.stat .num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem,5vw,3.1rem); line-height: 1; color: var(--heading); }
.stat .num .suf, .stat .num { } /* suffix inherits */
.stat .lab { margin-top: 10px; font-size: .92rem; color: var(--muted); }
@media (max-width: 680px){ .stats-grid { grid-template-columns: repeat(2,1fr); gap: 30px 12px; } .stat:nth-child(2)::after{display:none;} }

/* ---------- Section backgrounds (alternating rhythm) ---------- */
#why { background: var(--base); }
#about { background: var(--base-2); }
#services { background: var(--base); }
#treatments { background: var(--base-2); }
#testimonials { background: var(--base); }
#faq { background: var(--base-2); }
#contact { background: var(--base); }

/* ---------- Cards / grids ---------- */
.cards-grid { display: grid; gap: 24px; }
.cols-3 { grid-template-columns: repeat(3,1fr); }
.cols-2 { grid-template-columns: repeat(2,1fr); }
@media (max-width: 900px){ .cols-3 { grid-template-columns: 1fr; } .cols-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--grad-card);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--sh-1);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease), border-color .45s, background .45s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.25), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.45s, background 0.45s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-3), 0 10px 30px -10px rgba(190, 18, 60, 0.18);
  border-color: rgba(190, 18, 60, 0.35);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}
.card:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, var(--emerald-400), var(--maroon-500));
}
.card .ic { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; background: var(--tint); color: var(--emerald-300); font-size: 1.7rem; margin-bottom: 22px; transition: transform .45s var(--ease-out), background .4s; }
.card:hover .ic { transform: scale(1.06) rotate(-3deg); background: rgba(52,211,153,.18); }
.card h3 { font-size: 1.35rem; position: relative; z-index: 2; }
.card p { color: var(--muted); margin-top: 12px; font-size: 1rem; position: relative; z-index: 2; }
.card .corner-glow { position: absolute; width: 200px; height: 200px; right: -60px; top: -60px; background: radial-gradient(circle, rgba(52,211,153,.22), transparent 70%); opacity: 0; transition: opacity .5s; }
.card:hover .corner-glow { opacity: 1; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.about-media { position: relative; }
.about-media .frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-3); border: 1px solid var(--hair); aspect-ratio: 4/4.4; }
.about-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-media .glow { position: absolute; inset: auto -30px -30px auto; width: 70%; height: 70%; z-index: -1; background: radial-gradient(circle, rgba(52,211,153,.3), transparent 65%); filter: blur(30px); }
.about-exp { position: absolute; left: -22px; bottom: 28px; background: var(--elev-2); border: 1px solid var(--hair-2); color: #fff; border-radius: var(--r-md); padding: 18px 22px; box-shadow: var(--sh-3); }
.about-exp .big { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: var(--emerald-300); }
.about-exp .sm { font-size: .82rem; color: #aec3d6; margin-top: 4px; }
.about-content h2 { font-size: clamp(2rem,4.5vw,3rem); margin-top: 14px; }
.about-content .lead { margin-top: 18px; }
.accordion-list { margin-top: 28px; display: grid; gap: 12px; }
.acc-item { border: 1px solid var(--hair); border-radius: var(--r-md); overflow: hidden; background: var(--fill-1); transition: border-color .3s, box-shadow .3s, background .3s; }
.acc-item[open] { border-color: rgba(52,211,153,.35); background: var(--tint-soft); box-shadow: var(--sh-1); }
.acc-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; padding: 18px 20px; font-weight: 700; color: var(--heading); }
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary .ai { width: 36px; height: 36px; border-radius: 10px; background: var(--tint); color: var(--emerald-300); display: grid; place-items: center; flex: none; }
.acc-item summary .chev { margin-left: auto; transition: transform .3s; color: var(--muted); }
.acc-item[open] summary .chev { transform: rotate(180deg); color: var(--emerald-300); }
.acc-item .acc-body { padding: 0 20px 20px 70px; color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag { padding: 7px 14px; border-radius: var(--r-pill); background: var(--tint); color: var(--emerald-200); font-size: .85rem; font-weight: 600; border: 1px solid rgba(52,211,153,.18); }
@media (max-width: 900px){ .about-grid { grid-template-columns: 1fr; } .about-media { max-width: 440px; margin-inline:auto; } }

/* ---------- Services ---------- */
.svc-card { display: flex; flex-direction: column; }
.svc-card .pill { align-self: flex-start; font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--maroon-400); margin-bottom: 8px; }
.svc-card ul.checks { margin-top: 18px; display: grid; gap: 10px; }
.svc-card ul.checks li { display: flex; gap: 10px; color: var(--text); opacity: .9; font-size: .98rem; }
.svc-card ul.checks li i { color: var(--primary); margin-top: 3px; }
.svc-card .svc-foot { margin-top: 26px; }

/* ---------- Nav "New" pill ---------- */
.nav-new { display: inline-block; margin-left: 6px; padding: 1px 7px; border-radius: var(--r-pill); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--grad-maroon, linear-gradient(120deg, var(--maroon-500), var(--maroon-700))); vertical-align: middle; }

/* ---------- Functional Nutrition (Maroon-accented new service) ---------- */
#nutrition { background: var(--base); position: relative; overflow: hidden; }
#nutrition::after { content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(55% 70% at 88% 12%, rgba(190, 18, 60, 0.14), transparent 62%); }
#nutrition .container { position: relative; z-index: 1; }
.nutri-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
@media (max-width: 940px){ .nutri-grid { grid-template-columns: 1fr; } }
.nutri-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--maroon-400); }
.nutri-eyebrow .new-pill { padding: 3px 10px; border-radius: var(--r-pill); font-size: .66rem; letter-spacing: .1em; color: #fff; background: linear-gradient(120deg, var(--maroon-400), var(--maroon-600)); box-shadow: 0 0 0 1px rgba(190, 18, 60, 0.3), 0 10px 24px -10px rgba(190, 18, 60, 0.5); }
#nutrition h2 { font-size: clamp(2rem,4.6vw,3.1rem); margin-top: 16px; }
#nutrition h2 .grad-maroon { background: linear-gradient(100deg, var(--maroon-300), var(--maroon-400) 55%, var(--maroon-600)); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
#nutrition .lead { margin-top: 18px; }
.nutri-cred { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; padding: 12px 18px; border-radius: var(--r-md); background: rgba(190, 18, 60, 0.08); border: 1px solid rgba(190, 18, 60, 0.22); }
.nutri-cred .nc-ico { width: 40px; height: 40px; border-radius: 11px; background: rgba(190, 18, 60, 0.16); color: var(--maroon-300); display: grid; place-items: center; font-size: 1.25rem; flex: none; }
.nutri-cred .nc-txt { font-size: .95rem; color: var(--text); }
.nutri-cred .nc-txt strong { color: var(--heading); }
.nutri-checks { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
@media (max-width: 520px){ .nutri-checks { grid-template-columns: 1fr; } }
.nutri-checks li { display: flex; gap: 10px; color: var(--text); opacity: .92; font-size: .98rem; }
.nutri-checks li i { color: var(--maroon-400); margin-top: 3px; }
.nutri-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.nutri-cta .btn-maroon { background: linear-gradient(135deg, var(--maroon-500), var(--maroon-700)); color: #fff; box-shadow: 0 16px 44px -14px rgba(190, 18, 60, 0.55); }
.nutri-cta .btn-maroon:hover { transform: translateY(-2px); box-shadow: 0 22px 60px -14px rgba(190, 18, 60, 0.75); }

/* focus-area cards (right column) */
.nutri-focus { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 420px){ .nutri-focus { grid-template-columns: 1fr; } }
.focus { background: var(--grad-card); border: 1px solid var(--hair); border-radius: var(--r-lg); padding: 22px; transition: transform .4s var(--ease-out), border-color .4s, background .4s; }
.focus:hover { transform: translateY(-5px); border-color: rgba(190, 18, 60, 0.4); background: linear-gradient(180deg, rgba(190, 18, 60, 0.06), rgba(255, 255, 255, 0.015)); }
.focus .f-ico { width: 46px; height: 46px; border-radius: 13px; background: rgba(190, 18, 60, 0.14); color: var(--maroon-300); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 14px; }
.focus h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--heading); letter-spacing: -.01em; }
.focus p { color: var(--muted); font-size: .88rem; margin-top: 6px; }

/* ---------- Treatments ---------- */
.treat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 900px){ .treat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .treat-grid { grid-template-columns: 1fr; } }
.treat { position: relative; isolation: isolate; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3.4; box-shadow: var(--sh-1); border: 1px solid var(--hair); color: #fff; display: flex; align-items: flex-end; transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s; }
.treat:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: rgba(52,211,153,.4); }
.treat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease-out); }
.treat:hover img { transform: scale(1.08); }
.treat::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(to top, rgba(5,10,20,.94) 0%, rgba(5,10,20,.45) 50%, rgba(5,10,20,.1) 100%); }
.treat .t-body { padding: 24px; }
.treat .t-ico { width: 40px; height: 40px; border-radius: 12px; background: rgba(52,211,153,.22); backdrop-filter: blur(6px); color: var(--emerald-200); display: grid; place-items: center; font-size: 1.2rem; margin-bottom: 12px; }
.treat h3 { font-size: 1.3rem; color: #fff; }
.treat p { font-size: .9rem; color: #d2e3f2; margin-top: 6px; opacity: 0; max-height: 0; transition: opacity .4s, max-height .5s; }
.treat:hover p { opacity: 1; max-height: 120px; }

/* ---------- Process ---------- */
#process { background: var(--night); color: #eaf3fb; overflow: hidden; position: relative; }
#process::after { content:""; position:absolute; inset:0; background: radial-gradient(70% 60% at 50% 0%, rgba(52,211,153,.12), transparent 65%); pointer-events:none; }
#process .container { position: relative; z-index: 1; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; position: relative; }
@media (max-width: 900px){ .steps { grid-template-columns: 1fr; gap: 16px; } }
.step { background: var(--fill-1); border: 1px solid var(--hair); border-radius: var(--r-lg); padding: 28px; position: relative; transition: background .4s, transform .4s var(--ease-out), border-color .4s; }
.step:hover { background: var(--fill-2); border-color: rgba(52,211,153,.3); transform: translateY(-5px); }
.step .n { font-family: var(--font-display); font-size: 2.4rem; color: var(--emerald-300); line-height: 1; }
.step h3 { font-size: 1.2rem; margin-top: 14px; color: #fff; }
.step p { color: #a7c1d6; font-size: .94rem; margin-top: 8px; }

/* ---------- Testimonials ---------- */
.tst-grid { columns: 2; column-gap: 24px; }
@media (max-width: 760px){ .tst-grid { columns: 1; } }
.tst { break-inside: avoid; margin-bottom: 24px; background: var(--grad-card); border: 1px solid var(--hair); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--sh-1); transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s; }
.tst:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: rgba(52,211,153,.3); }
.tst .stars { color: var(--gold-400); letter-spacing: 1px; }
.tst p { margin-top: 14px; color: var(--text); opacity: .9; font-size: 1rem; }
.tst .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.tst .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--hair-2); }
.tst .who .nm { font-weight: 700; color: var(--heading); }
.tst .who .src { font-size: .8rem; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }
.tst .who .src i { color: #5b9bff; }

/* Rating summary + reviews CTA */
.rating-summary { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 26px; margin: -16px auto clamp(36px,4vw,52px); padding: 18px 26px; max-width: 640px; background: var(--grad-card); border: 1px solid var(--hair); border-radius: var(--r-lg); box-shadow: var(--sh-1); }
.rating-summary .rs-score { font-family: var(--font-display); font-weight: 600; font-size: 2.4rem; line-height: 1; color: var(--heading); }
.rating-summary .rs-stars { color: var(--gold-400); letter-spacing: 2px; font-size: 1.05rem; }
.rating-summary .rs-meta { font-size: .85rem; color: var(--muted); }
.rating-summary .rs-google { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--text); }
.rating-summary .rs-google i { color: #5b9bff; font-size: 1.3rem; }
.rating-summary .rs-divider { width: 1px; align-self: stretch; background: var(--hair); }
.reviews-cta { text-align: center; margin-top: clamp(32px,4vw,44px); }

/* ---------- Conditions we treat (long-tail SEO) ---------- */
.conditions { margin-top: clamp(40px,5vw,64px); padding-top: clamp(36px,4vw,48px); border-top: 1px solid var(--hair); }
.conditions h3 { text-align: center; font-size: clamp(1.4rem,3vw,1.9rem); }
.conditions .sub { text-align: center; color: var(--muted); margin-top: 10px; max-width: 620px; margin-inline: auto; }
.cond-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.cond-grid a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--r-pill); background: var(--fill-1); border: 1px solid var(--hair); color: var(--text); font-size: .92rem; font-weight: 600; transition: background .3s, border-color .3s, transform .3s, color .3s; }
.cond-grid a:hover { background: var(--tint); border-color: rgba(52,211,153,.4); color: var(--emerald-200); transform: translateY(-2px); }
.cond-grid a i { color: var(--emerald-400); font-size: 1rem; }

/* Areas served (local SEO) */
.areas-note { text-align: center; color: var(--muted-2); font-size: .88rem; margin-top: 26px; max-width: 640px; margin-inline: auto; line-height: 1.7; }
.areas-note strong { color: var(--muted); font-weight: 600; }

/* ---------- Track record (speciality patient counts) ---------- */
.record { margin-top: clamp(40px,5vw,64px); padding-top: clamp(36px,4vw,48px); border-top: 1px solid var(--hair); }
.record h3 { text-align: center; font-size: clamp(1.4rem,3vw,1.9rem); }
.record .sub { text-align: center; color: var(--muted); margin-top: 10px; max-width: 620px; margin-inline: auto; }
.record-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 28px; }
.rec { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: var(--fill-1); border: 1px solid var(--hair); border-radius: var(--r-md); transition: background .3s, border-color .3s, transform .3s; }
.rec:hover { background: var(--tint-soft); border-color: rgba(52,211,153,.35); transform: translateY(-2px); }
.rec-ico { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--tint); color: var(--emerald-400); font-size: 1.3rem; }
.rec-num { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; line-height: 1.1; color: var(--heading); }
.rec-lab { display: block; font-size: .84rem; color: var(--muted); margin-top: 2px; }
@media (max-width: 1020px){ .record-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 700px){ .record-grid { grid-template-columns: repeat(2,1fr); gap: 10px; } .rec { padding: 13px 14px; gap: 10px; } .rec-ico { width: 36px; height: 36px; font-size: 1.1rem; border-radius: 10px; } .rec-num { font-size: 1.2rem; } .rec-lab { font-size: .78rem; } }

/* Medical disclaimer */
.disclaimer { margin-top: 22px; font-size: .8rem; color: var(--muted-2); max-width: 760px; margin-inline: auto; text-align: center; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
@media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; } }
.info-list { display: grid; gap: 14px; margin-top: 26px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; background: var(--grad-card); border: 1px solid var(--hair); border-radius: var(--r-md); padding: 18px 20px; box-shadow: var(--sh-1); transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s; }
.info-item:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: rgba(52,211,153,.3); }
.info-item .ii { width: 46px; height: 46px; border-radius: 12px; background: var(--tint); color: var(--emerald-300); display: grid; place-items: center; font-size: 1.3rem; flex: none; }
.info-item h4 { font-family: var(--font-sans); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.info-item p, .info-item a { color: var(--text); font-weight: 600; margin-top: 2px; }
.info-item a:hover { color: var(--emerald-300); }
.contact-card { background: var(--elev-1); border: 1px solid var(--hair); border-radius: var(--r-xl); padding: clamp(24px,4vw,40px); box-shadow: var(--sh-2); }
.contact-card h3 { color: var(--heading); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px){ .form-row { grid-template-columns: 1fr; } }
.field { margin-top: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 700; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--hair-2); border-radius: var(--r-sm); background: var(--fill-1); font: inherit; color: var(--text); transition: border-color .25s, box-shadow .25s, background .25s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--emerald-400); box-shadow: 0 0 0 4px rgba(52,211,153,.15); background: var(--fill-2); }
.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-2); margin-top: 30px; border: 1px solid var(--hair); }
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; filter: invert(.92) hue-rotate(160deg) saturate(.6) brightness(.95); }
.form-status { margin-top: 14px; font-size: .9rem; }
.form-status .loading, .form-status .error-message, .form-status .sent-message { display: none; padding: 12px 14px; border-radius: 10px; }
.form-status .loading { background: var(--fill-2); color: var(--muted); }
.form-status .sent-message { background: var(--tint); color: var(--emerald-200); border: 1px solid rgba(52,211,153,.3); }
.form-status .error-message { background: rgba(224,73,73,.12); color: #ff9b9b; border: 1px solid rgba(224,73,73,.3); }

/* ---------- Footer ---------- */
#site-footer { background: var(--night); color: #aec3d6; padding-top: clamp(56px,7vw,88px); border-top: 1px solid var(--hair); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
#site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
#site-footer .f-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
#site-footer .f-brand img { height: 48px; }
#site-footer .f-brand .n { font-family: var(--font-display); font-size: 1.25rem; color: #fff; }
#site-footer ul li { margin-bottom: 10px; }
#site-footer ul li a { transition: color .25s, padding .25s; display: inline-flex; align-items: center; gap: 8px; }
#site-footer ul li a:hover { color: var(--emerald-300); padding-left: 4px; }
.f-soc { display: flex; gap: 12px; margin-top: 18px; }
.f-soc a { width: 42px; height: 42px; border-radius: 12px; background: var(--fill-1); border: 1px solid var(--hair); display: grid; place-items: center; color: #fff; transition: background .3s, transform .3s, border-color .3s; }
.f-soc a:hover { background: var(--tint); border-color: rgba(52,211,153,.4); transform: translateY(-3px); }
.f-newsletter input { width: 100%; padding: 14px 16px; border-radius: var(--r-sm); border: 1px solid var(--hair-2); background: var(--fill-1); color: #fff; }
.footer-bottom { margin-top: 48px; border-top: 1px solid var(--hair); padding-block: 24px; font-size: .88rem; text-align: center; color: var(--muted-2); }
.footer-bottom strong { color: #fff; }

/* ---------- Floating actions ---------- */
.whatsapp-float { position: fixed; right: 22px; bottom: 92px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #10B981; color: #fff; display: grid; place-items: center; font-size: 1.7rem; box-shadow: 0 12px 30px rgba(16,185,129,.45); transition: transform .3s; }
.whatsapp-float:hover { transform: scale(1.08) translateY(-2px); }
@media (min-width: 768px){ .whatsapp-float { bottom: 28px; } }

.back-to-top { position: fixed; right: 22px; bottom: 158px; z-index: 89; width: 48px; height: 48px; border-radius: 14px; background: var(--elev-2); border: 1px solid var(--hair-2); color: #fff; display: grid; place-items: center; font-size: 1.3rem; box-shadow: var(--sh-2); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .35s var(--ease-out); }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: rgba(52,211,153,.4); }
@media (min-width: 768px){ .back-to-top { bottom: 96px; } }

/* Sticky mobile CTA */
.mobile-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 95; display: none; gap: 10px; padding: 10px; border-radius: 20px; background: rgba(9,16,13,.86); backdrop-filter: blur(16px); box-shadow: 0 10px 40px rgba(0,0,0,.5); border: 1px solid var(--hair-2); }
.mobile-cta a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-radius: 14px; font-weight: 700; font-size: .95rem; }
.mobile-cta .m-call { background: var(--tint); color: var(--emerald-200); border: 1px solid rgba(52,211,153,.25); }
.mobile-cta .m-book { background: var(--grad-emerald); color: #030c08; }
@media (max-width: 768px){ .mobile-cta { display: flex; } .whatsapp-float { bottom: 84px; } .back-to-top { bottom: 150px; } }

/* ---------- Footer tagline ---------- */
.f-tagline { letter-spacing: .2em; text-transform: uppercase; font-size: .72rem; font-weight: 700; color: var(--emerald-300); margin: -8px 0 14px; }

/* ---------- Subpages (condition pages) ---------- */
.subhero { position: relative; overflow: hidden; background: radial-gradient(120% 120% at 85% -10%, #0b1a14 0%, var(--night) 55%, #030605 100%); padding-block: clamp(64px, 10vw, 120px); border-bottom: 1px solid var(--hair); }
.subhero::before { content:""; position:absolute; width:55vw; height:55vw; right:-10%; top:-25%; background: radial-gradient(circle, rgba(52,211,153,.32), transparent 60%); filter: blur(40px); }
.subhero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .85rem; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--emerald-300); }
.breadcrumb i { font-size: .9rem; opacity: .6; }
.subhero h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); color: #fff; max-width: 16ch; }
.subhero h1 .grad-text { background: var(--grad-text); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.subhero .lead { margin-top: 20px; max-width: 60ch; color: #c4d6e6; }
.subhero .hero-cta { margin-top: 30px; }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-top: 8px; }
.prose h3 { font-size: 1.25rem; margin-top: 28px; }
.prose p { color: var(--muted); margin-top: 16px; }
.prose ul.bullets { margin-top: 16px; display: grid; gap: 10px; }
.prose ul.bullets li { display: flex; gap: 10px; color: var(--text); opacity: .9; }
.prose ul.bullets li i { color: var(--primary); margin-top: 4px; flex: none; }
.cta-band { text-align: center; background: var(--grad-card); border: 1px solid var(--hair); border-radius: var(--r-xl); padding: clamp(32px,5vw,56px); box-shadow: var(--sh-1); }
.cta-band h2 { font-size: clamp(1.8rem,4vw,2.6rem); }
.cta-band p { color: var(--muted); margin-top: 14px; max-width: 52ch; margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; margin-top: 28px; }
.related-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 8px; }

/* ---------- Reveal defaults (JS-driven) ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: none; }
/* Failsafes: if JS never runs (no-js) or reveal is forced, always show content */
.no-js [data-reveal], .reveal-done [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ---------- Touch devices: treatment text can't rely on hover ---------- */
@media (hover: none) {
  .treat p { opacity: 1; max-height: 160px; }
  .treat .t-body { padding-top: 28px; }
}

/* ---------- About: doctor role line ---------- */
.doc-role { margin-top: 6px; font-weight: 700; font-size: .92rem; letter-spacing: .04em; color: var(--emerald-300); }

/* ---------- Announcement / footer static (non-link) items ---------- */
#announce .ann-hours { color: #d8e8f5; opacity: .9; display: inline-flex; align-items: center; gap: 7px; }
#site-footer .f-static { display: inline-flex; align-items: center; gap: 8px; color: inherit; }

/* ---------- Contact scope note ---------- */
.scope-note { display: flex; align-items: flex-start; gap: 9px; margin-top: 16px; padding: 11px 14px; border-radius: var(--r-sm); background: var(--tint-soft); border: 1px solid rgba(56,182,240,.18); color: var(--muted); font-size: .85rem; line-height: 1.5; }
.scope-note i { color: var(--emerald-300); font-size: 1.05rem; margin-top: 1px; flex: none; }
.scope-note strong { color: var(--text); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .treat p { opacity: 1; max-height: none; }
  .marquee-track { animation: none !important; }
}

/* ---------- Kinetic Marquee Ticker ---------- */
.marquee-ticker {
  background: #050a13;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding-block: 22px;
  overflow: hidden;
  position: relative;
  z-index: 10;
  width: 100%;
}
.marquee-inner {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
  padding-right: 40px;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--heading);
  opacity: 0.85;
  transition: opacity 0.3s, color 0.3s;
}
.marquee-track span:hover {
  opacity: 1;
  color: var(--emerald-300);
}
.ticker-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--maroon-500);
  box-shadow: 0 0 10px rgba(190, 18, 60, 0.8);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* =========================================================
   AWWWARDS LAYER — preloader · cursor · particles · pulse
   line · lead modal · review toast · CTA shine
   ========================================================= */

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center;
  /* CSS-only failsafe: even if JS never runs, the preloader melts away after 8s */
  animation: preFailsafe .6s ease 8s forwards;
}
.no-js #preloader { display: none; }
@keyframes preFailsafe { to { opacity: 0; visibility: hidden; } }
#preloader .pre-curtain { position: absolute; left: 0; width: 100%; height: 50.5%; background: var(--night); transition: transform .9s cubic-bezier(.76,0,.24,1) .18s; }
#preloader .c1 { top: 0; }
#preloader .c2 { bottom: 0; }
#preloader .pre-inner { position: relative; z-index: 2; text-align: center; transition: opacity .4s, transform .45s var(--ease-out); }
#preloader .pre-logo {
  width: 88px; height: 88px; margin: 0 auto 18px; border-radius: 24px; background: #fff;
  display: grid; place-items: center; padding: 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 70px rgba(52,211,153,.28);
  animation: preFloat 2.4s ease-in-out infinite;
}
#preloader .pre-logo img { width: 100%; height: auto; }
#preloader .pre-word { font-family: var(--font-display); font-size: 1.55rem; color: #fff; letter-spacing: -.01em; }
#preloader .pre-word em { font-style: italic; color: var(--emerald-300); }
#preloader .pre-bar { width: 180px; height: 2px; margin: 18px auto 12px; background: rgba(255,255,255,.12); border-radius: 2px; overflow: hidden; }
#preloader .pre-bar span { display: block; height: 100%; width: 0%; background: var(--grad-emerald); box-shadow: 0 0 12px rgba(52,211,153,.8); transition: width .3s ease; }
#preloader .pre-tag { font-size: .68rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-2); }
#preloader.done { pointer-events: none; }
#preloader.done .pre-inner { opacity: 0; transform: translateY(-16px) scale(.96); }
#preloader.done .c1 { transform: translateY(-101%); }
#preloader.done .c2 { transform: translateY(101%); }
@keyframes preFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 3000; pointer-events: none; border-radius: 50%; opacity: 0; }
.cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--emerald-300); transition: opacity .3s, background .25s; }
.cursor-ring {
  width: 38px; height: 38px; margin: -19px 0 0 -19px;
  border: 1.5px solid rgba(52,211,153,.55);
  transition: opacity .3s, width .3s var(--ease-out), height .3s var(--ease-out), margin .3s var(--ease-out), border-color .3s, background .3s;
}
.cursor-dot.on, .cursor-ring.on { opacity: 1; }
.cursor-ring.hot { width: 58px; height: 58px; margin: -29px 0 0 -29px; background: rgba(52,211,153,.08); border-color: rgba(52,211,153,.9); }
.cursor-dot.hot { background: var(--gold-400); }
.cursor-ring.down { width: 30px; height: 30px; margin: -15px 0 0 -15px; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Hero particle field ---------- */
#hero-particles { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none; }

/* ---------- Healing pulse line (drawn on scroll) ---------- */
.pulse-line { display: block; width: min(720px, 88%); height: 64px; margin: 0 auto clamp(28px, 4vw, 48px); overflow: visible; }
.pulse-line path {
  stroke: var(--emerald-400); stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round; fill: none;
  filter: drop-shadow(0 0 8px rgba(52,211,153,.55));
}

/* ---------- Lead capture modal ---------- */
.lead-modal { position: fixed; inset: 0; z-index: 2500; display: flex; align-items: center; justify-content: center; padding: 20px; }
.lead-modal[hidden] { display: none; }
.lm-backdrop { position: absolute; inset: 0; background: rgba(2,6,4,.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; transition: opacity .45s; }
.lm-card {
  position: relative; width: min(520px, 100%); max-height: calc(100vh - 40px); overflow-y: auto;
  background: linear-gradient(180deg, #0e1a14, #081009);
  border: 1px solid rgba(52,211,153,.25); border-radius: var(--r-xl);
  padding: clamp(28px, 5vw, 44px);
  box-shadow: 0 40px 120px -20px rgba(0,0,0,.9), 0 0 90px -30px rgba(52,211,153,.4);
  opacity: 0; transform: translateY(30px) scale(.96);
  transition: opacity .5s var(--ease-out), transform .55s var(--ease-out);
}
.lead-modal.open .lm-backdrop { opacity: 1; }
.lead-modal.open .lm-card { opacity: 1; transform: none; }
.lm-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; background: var(--fill-2); border: 1px solid var(--hair); color: var(--text); display: grid; place-items: center; font-size: 1.2rem; transition: background .3s, transform .3s; }
.lm-close:hover { background: var(--tint); transform: rotate(90deg); }
.lm-eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border-radius: var(--r-pill); background: var(--tint-soft); border: 1px solid rgba(52,211,153,.22); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--emerald-300); }
.lm-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald-400); box-shadow: 0 0 0 4px rgba(52,211,153,.2); }
.lm-card h3 { font-size: clamp(1.5rem, 4.4vw, 2rem); margin-top: 16px; color: var(--heading); }
.lm-card > p { color: var(--muted); margin-top: 12px; font-size: .98rem; }
.lm-doc { display: flex; align-items: center; gap: 14px; margin-top: 18px; padding: 13px 16px; border-radius: var(--r-md); background: var(--fill-1); border: 1px solid var(--hair); }
.lm-doc img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(52,211,153,.45); flex: none; }
.lm-doc strong { display: block; color: var(--heading); font-size: .98rem; }
.lm-doc span { display: block; color: var(--muted); font-size: .82rem; margin-top: 2px; }
.lm-actions { display: grid; gap: 10px; margin-top: 22px; }
.lm-trust { margin-top: 16px; text-align: center; font-size: .85rem; color: var(--muted); }
.lm-trust .g-stars { color: var(--gold-400); letter-spacing: 2px; }
body.lm-open { overflow: hidden; }
@media (max-width: 560px) {
  .lead-modal { padding: 0; align-items: flex-end; }
  .lm-card { width: 100%; border-radius: var(--r-xl) var(--r-xl) 0 0; max-height: 88vh; }
}

/* ---------- Review toast ---------- */
.review-toast {
  position: fixed; left: 22px; bottom: 22px; z-index: 85;
  display: flex; gap: 12px; align-items: flex-start;
  width: min(340px, calc(100vw - 44px));
  background: rgba(10,18,14,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hair-2); border-radius: var(--r-md);
  padding: 14px 16px; box-shadow: var(--sh-3);
  opacity: 0; transform: translateY(16px); visibility: hidden;
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), visibility .5s;
}
.review-toast[hidden] { display: none; }
.review-toast.show { opacity: 1; transform: none; visibility: visible; }
.review-toast .rt-ico { width: 38px; height: 38px; border-radius: 10px; background: var(--tint); color: #5b9bff; display: grid; place-items: center; flex: none; font-size: 1.15rem; }
.review-toast .rt-stars { color: var(--gold-400); font-size: .8rem; letter-spacing: 1px; }
.review-toast #rt-text { font-size: .85rem; color: var(--text); margin-top: 3px; line-height: 1.45; }
.review-toast #rt-name { display: block; font-size: .78rem; color: var(--muted); font-weight: 600; margin-top: 5px; }
.review-toast #rt-close { flex: none; width: 26px; height: 26px; border-radius: 8px; color: var(--muted); display: grid; place-items: center; transition: background .25s, color .25s; }
.review-toast #rt-close:hover { background: var(--fill-2); color: #fff; }

/* ---------- CTA shine sweep ---------- */
.btn-primary, .btn-maroon { overflow: hidden; }
.btn-primary::before, .btn-maroon::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.45) 50%, transparent 75%);
  transform: translateX(-130%) skewX(-12deg);
  transition: transform .7s var(--ease);
}
.btn-primary:hover::before, .btn-maroon:hover::before { transform: translateX(130%) skewX(-12deg); }
.hero-cta .btn-primary::before, .mobile-cta .m-book::before { animation: autoShine 5s ease-in-out 2.5s infinite; }
.mobile-cta .m-book { position: relative; overflow: hidden; }
.mobile-cta .m-book::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.4) 50%, transparent 75%);
  transform: translateX(-130%) skewX(-12deg);
}
@keyframes autoShine {
  0% { transform: translateX(-130%) skewX(-12deg); }
  22% { transform: translateX(130%) skewX(-12deg); }
  100% { transform: translateX(130%) skewX(-12deg); }
}

/* ---------- Reduced motion for the awwwards layer ---------- */
@media (prefers-reduced-motion: reduce) {
  #preloader { display: none !important; }
  .cursor-dot, .cursor-ring, #hero-particles { display: none !important; }
  .btn-primary::before, .btn-maroon::before, .mobile-cta .m-book::before { animation: none !important; }
  .lead-modal .lm-card, .lm-backdrop, .review-toast { transition: none !important; }
}
