@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --bg:        #ffffff;
  --bg-2:      #f8f7f5;
  --bg-3:      #f1f0ee;
  --border:    #e3e2e0;
  --border-l:  #eeedeb;
  --text:      #0d0d0c;
  --text-sec:  #5c5a58;
  --text-dim:  #9a9896;
  --accent:    #e8420a;
  --accent-bg: #fdf0ec;
  --accent-dk: #c23508;
  --serif:     'Instrument Serif', Georgia, serif;
  --sans:      'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:     1200px;
  --px:        clamp(24px, 5vw, 72px);
  --r:         6px;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display:block; max-width:100%; filter: url(#grain-filter); }

h1, h2, blockquote {
  font-family: var(--serif);
  font-weight: 400;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--accent-bg);
  color: var(--accent-dk);
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  background: rgba(10,10,10,0.42);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.5s ease, border-color 0.5s ease,
              backdrop-filter 0.5s ease;
}
nav.scrolled {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border-bottom-color: rgba(0,0,0,0.06);
}


.nav-inner {
  max-width: var(--max-w); margin:0 auto;
  padding:0 var(--px); height:60px;
  display:flex; justify-content:space-between; align-items:center;
}
.nav-logo {
  font-family: var(--sans);
  font-size: 16px; font-weight: 600;
  color: var(--text); text-decoration:none; letter-spacing:-0.3px;
  transition: opacity 0.2s;
  filter: brightness(10);
}
.nav-logo:hover { opacity: 0.7; }
.nav-logo span { color: var(--accent); }
nav.scrolled .nav-logo { filter: brightness(1); }

.nav-links { display:flex; gap:28px; align-items:center; }
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration:none;
  font-size: 14px; font-weight:400; transition:color 0.15s;
  letter-spacing: -0.1px;
}
.nav-links a:hover { color: #ffffff; }
nav.scrolled .nav-links a { color: var(--text-dim); }
nav.scrolled .nav-links a:hover { color: var(--text); }

.nav-cta {
  background: transparent !important;
  color: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  padding: 7px 16px !important;
  border-radius: var(--r);
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: background 0.15s, border-color 0.15s, color 0.15s, opacity 0.15s !important;
  letter-spacing: 0 !important;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.5) !important;
  color: #fff !important;
  opacity: 1 !important;
}
nav.scrolled .nav-cta {
  background: var(--text) !important;
  color: #fff !important;
  border-color: transparent !important;
}
nav.scrolled .nav-cta:hover { opacity: 0.78 !important; }
.nav-cta:hover { opacity:0.75 !important; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-dark {
  display: inline-block; background: var(--text); color: #fff;
  padding: 11px 22px; font-size: 14px; font-weight: 500;
  text-decoration: none; border-radius: var(--r);
  border: none; cursor:pointer; font-family: var(--sans);
  letter-spacing: -0.1px;
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.25, 0, 0, 1);
}
.btn-dark:hover { opacity:0.78; transform: translateY(-1px); }
.btn-dark:active { transform: translateY(0); }

.btn-ghost {
  display: inline-block; color: var(--text);
  padding: 11px 22px; font-size: 14px; font-weight: 400;
  text-decoration: none; border: none;
  border-radius: var(--r); font-family: var(--sans);
  transition: transform 0.2s cubic-bezier(0.25, 0, 0, 1);
}
.btn-ghost:hover { transform: translateY(-1px); }
.btn-ghost:active { transform: translateY(0); }

.btn-outline-w {
  display: inline-block; padding: 10px 20px;
  border: none; border-radius: var(--r);
  color: var(--text); font-size: 13px; font-weight: 500;
  text-decoration: none; font-family: var(--sans);
  transition: transform 0.2s cubic-bezier(0.25, 0, 0, 1);
}
.btn-outline-w:hover { transform: translateY(-1px); }
.btn-outline-w:active { transform: translateY(0); }

/* ── SECTION UTILITIES ───────────────────────────────── */
.full-dark  { background: var(--bg-2); }
.full-black { background: var(--bg-3); }
.full-cream { background: var(--bg-2); }
.full-warm  { background: var(--bg-2); }
.full-white { background: var(--bg); }

.section-inner {
  max-width: var(--max-w); margin:0 auto; padding: 112px var(--px);
}
.section-label {
  font-family: var(--sans);
  font-size: 10.5px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 22px; font-weight: 500;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 400; line-height: 1.08;
  letter-spacing: -1px; max-width: 720px; color: var(--text);
}
.section-sub {
  font-size: 17px; line-height: 1.8; max-width: 540px;
  margin-top: 28px; font-weight: 400; color: var(--text-sec);
}

/* ── HERO ─────────────────────────────────────────────── */
.hero-green {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0a0a0a;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: translateX(20%);
  opacity: 0.55;
}
@media (max-width: 640px) {
  .hero-video-bg video { transform: translateX(0); }
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.1) 50%,
    rgba(0,0,0,0.55) 100%
  );
}
.hero-green-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  padding: 168px var(--px) 148px;
  width: 100%;
}
.hero-green-text {
  /* single column */
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 32px; font-weight: 500;
  display: block;
}
.hero-green h1 {
  font-size: clamp(52px, 7vw, 100px);
  line-height: 1.0; letter-spacing: -2px;
  color: #ffffff; max-width: 980px;
  margin-bottom: 28px;
}
.hero-green h1 em {
  font-style: italic; color: var(--accent);
}
.hero-green-sub {
  font-family: var(--sans);
  font-size: 18px; color: rgba(255,255,255,0.6);
  line-height: 1.7; max-width: 580px; font-weight: 400;
}
.hero-stats {
  display: flex; gap:0;
  margin-top: 72px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 36px;
}
.hero-stat-pill {
  padding-right: 48px;
  margin-right: 48px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-pill:last-child {
  border-right: none; margin-right:0; padding-right:0;
}
.hero-stat-label {
  display: block; font-size: 11px; letter-spacing: 0; color: rgba(255,255,255,0.4);
  margin-bottom: 4px; font-weight: 500;
}
.hero-stat-pill strong {
  font-family: var(--sans);
  font-size: 15px; font-weight: 600; color: #ffffff;
  letter-spacing: -0.3px;
}
.hero-actions-green {
  display: flex; gap: 12px; margin-top: 48px; align-items: center;
}


/* ── HERO BUTTONS (dark bg) ─────────────────────────── */
.btn-hero-primary {
  display: inline-block; background: #ffffff; color: var(--text);
  padding: 13px 26px; font-size: 14px; font-weight: 600;
  text-decoration: none; border-radius: var(--r);
  font-family: var(--sans); letter-spacing: -0.1px;
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.25, 0, 0, 1);
}
.btn-hero-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-hero-ghost {
  display: inline-block; color: rgba(255,255,255,0.7);
  padding: 13px 22px; font-size: 14px; font-weight: 400;
  text-decoration: none; font-family: var(--sans);
  transition: color 0.2s, transform 0.2s cubic-bezier(0.25, 0, 0, 1);
}
.btn-hero-ghost:hover { color: #ffffff; transform: translateY(-1px); }
/* ── KEYWORD STRIP ───────────────────────────────────── */
.keyword-strip {
  background: #0d0d0c;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.keyword-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: keyword-scroll 32s linear infinite;
}
.keyword-track span {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
}
.keyword-track .ks-italic {
  font-family: var(--sans);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.keyword-track .ks-dot {
  color: rgba(255,255,255,0.2);
  font-size: 16px;
}
@keyframes keyword-scroll {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── LOGO BAR ─────────────────────────────────────────── */
.logo-bar {
  padding: 20px 0;
  background: var(--bg-2);
  overflow: hidden;
  border-top: 1px solid var(--border-l);
  border-bottom: 1px solid var(--border-l);
}
.logo-bar-label {
  display: none;
}
.logo-bar-row {
  overflow: hidden;
  white-space: nowrap;
}
.logo-bar-track {
  display: inline-flex; align-items: center; gap: 80px;
  animation: logo-scroll 28s linear infinite;
}
.logo-bar-track:hover { animation-play-state: paused; }
.logo-bar-row .lb {
  opacity: 0.52; transition: opacity 0.2s;
  line-height: 1; white-space: nowrap; display: flex; align-items: center;
}
@keyframes logo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.lb-femstedt {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-style: italic; font-size: 17px; font-weight: 400;
  color: var(--text); letter-spacing: 0.01em;
}
.lb-nem {
  font-family: 'DM Sans', 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--text);
}
.lb-farnaz {
  font-family: 'DM Sans', 'Outfit', sans-serif;
  font-size: 13px; font-weight: 400; color: var(--text); letter-spacing: 0.01em;
}
.lb-farnaz strong { font-weight: 700; }
.lb-endogyn {
  font-family: 'DM Sans', 'Outfit', sans-serif;
  font-size: 13.5px; font-weight: 300; letter-spacing: 0.09em; color: var(--text);
}
.lb-eidra {
  font-family: 'DM Sans', 'Outfit', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--text);
}
.lb-hedda {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: 16px; font-weight: 400; color: var(--text);
  gap: 5px; align-items: baseline;
}
.lb-hedda em {
  font-family: 'DM Sans', 'Outfit', sans-serif; font-style: normal;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; align-self: center;
}


/* ── SPLIT ────────────────────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.split.reversed .split-img  { order: 2; }
.split.reversed .split-content { order: 1; }

.split-img { overflow:hidden; position:relative; }
.split-img img { width:100%; height:100%; object-fit:cover; }

.split-content {
  padding: 72px 64px;
  display: flex; flex-direction:column; justify-content:center;
  background: var(--bg-2);
}
.split-content .section-label { color: var(--accent); }
.split-content h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15; letter-spacing: -0.3px;
  margin-bottom: 20px; color: var(--text);
}
.split-content p {
  font-family: var(--sans);
  font-size: 14px; line-height: 1.75;
  color: var(--text-sec); max-width: 420px; margin-bottom: 14px;
}
.split-stats {
  display: flex; gap: 40px; margin-top: 28px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.split-stat strong {
  display: block; font-family: var(--sans);
  font-size: 15px; font-weight: 600; color: var(--text);
  margin-bottom: 3px; letter-spacing: -0.2px;
}
.split-stat span {
  font-size: 12px; color: var(--text-dim);
}

/* ── ACCORDION ───────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.accordion-item { border-top: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: 1px solid var(--border); }
.accordion-header {
  padding: 18px 0;
  display: flex; justify-content:space-between; align-items:center;
  cursor: pointer; user-select:none;
}
.accordion-header h3 {
  font-family: var(--sans);
  font-size: 14px; font-weight: 500; color: var(--text-sec);
  letter-spacing: -0.1px;
  transition: color 0.2s;
}
.accordion-item.active .accordion-header h3 { color: var(--text); }
.accordion-toggle {
  width: 20px; height:20px; display:flex; align-items:center;
  justify-content:center; color: var(--text-dim);
  font-size: 16px; transition: transform 0.25s; flex-shrink:0;
  font-family: var(--sans);
}
.accordion-body { max-height:0; overflow:hidden; transition: max-height 0.35s ease; }
.accordion-body-inner { padding: 0 0 20px; }
.accordion-body p {
  font-size: 14px; line-height: 1.65;
  color: var(--text-sec); max-width: 400px;
}
.accordion-item.active .accordion-toggle { transform: rotate(45deg); }
.accordion-item.active .accordion-body { max-height: 300px; }

/* ── HOW IT WORKS ─────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 52px;
}
.step {
  padding: 28px 28px 28px 0;
}
.step:not(:first-child) { padding-left: 28px; padding-right: 28px; }
.step:last-child { padding-right: 0; }
.step-num {
  font-family: var(--sans);
  font-size: 11px; color: var(--text-dim); margin-bottom: 18px;
  font-weight: 500; letter-spacing: 0.1em;
}
.step h3 {
  font-family: var(--sans);
  font-size: 15px; font-weight: 600; color: var(--text);
  margin-bottom: 10px; letter-spacing: -0.3px;
}
.step-accent {
  font-size: 13px; color: var(--accent); font-weight: 500;
  margin-bottom: 8px; line-height: 1.4;
}
.step p { font-size: 14px; line-height: 1.75; color: var(--text-sec); }

/* ── PARADIGM PILLARS ─────────────────────────────────── */
.pillars-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 52px;
}
.pillar {
  border-top: 1px solid var(--border);
  padding: 28px 28px 28px 0;
}
.pillar:last-child { padding-right: 0; }
.pillar-title {
  font-family: var(--sans);
  font-size: 15px; font-weight: 600; color: var(--text);
  margin-bottom: 12px; letter-spacing: -0.3px;
}
.pillar-text { font-size: 14px; line-height: 1.75; color: var(--text-sec); margin: 0; }

/* ── CLINIC CARDS ─────────────────────────────────────── */
#clinics .section-inner { padding-top: 64px; padding-bottom: 64px; }
.clinics-header {
  display: flex; justify-content:space-between;
  align-items: flex-end; margin-bottom: 24px;
}
.clinics-header h2 {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.5px; color: var(--text);
}
.clinics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.clinic-card {
  border-radius: var(--r);
  overflow: hidden; background: var(--bg);
  transition: transform 0.25s cubic-bezier(0.25, 0, 0, 1),
              box-shadow 0.25s cubic-bezier(0.25, 0, 0, 1);
}
.clinic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.clinic-card-img {
  height: 188px; overflow: hidden;
}
.clinic-card-img img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.4s;
}
.clinic-card:hover .clinic-card-img img { transform: scale(1.04); }
.clinic-card-body { padding: 20px; }
.clinic-tag {
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 5px; font-weight: 400;
}
.clinic-card-body h3 {
  font-family: var(--serif);
  font-size: 20px; font-weight: 400; margin-bottom: 4px;
  color: var(--text); letter-spacing: -0.2px;
}
.clinic-doctor { font-size: 13px; color: var(--text-sec); margin-bottom: 10px; }
.clinic-desc {
  font-size: 13px; line-height: 1.6; color: var(--text-dim);
}
.clinic-footer { margin-top: 14px; }
.badge {
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500; padding: 2px 7px; border-radius: 3px; display: inline-block;
}
.badge-live   { background: var(--accent-bg); color: var(--accent-dk); }
.badge-pilot  { background: #fef8ec; color: #8a6a0a; }
.badge-soon   { background: var(--bg-3); color: var(--text-dim); }

/* ── QUOTE EDITORIAL ──────────────────────────────────── */
.quote-editorial {
  background: var(--bg-2);
  padding: 140px var(--px);
  text-align: center;
}
.quote-editorial-inner {
  max-width: 820px; margin: 0 auto;
}
.quote-editorial-mark {
  font-family: var(--serif);
  font-size: 100px; line-height: 0.55;
  color: var(--accent);
  margin-bottom: 28px;
  display: block;
}
.quote-editorial-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.5;
  letter-spacing: -0.3px;
  color: var(--text);
  font-weight: 400;
}
.quote-editorial-cite {
  display: flex; flex-direction: column;
  align-items: center; gap: 5px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-style: normal;
}
.cite-name { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--text); }
.cite-role { font-family: var(--sans); font-size: 13px; color: var(--text-sec); letter-spacing: 0.02em; }
@media (max-width: 640px) {
  .quote-editorial { padding: 88px var(--px); }
}

/* ── ATMOSPHERIC BREAK ───────────────────────────────── */
.atmospheric-break {
  position: relative;
  min-height: 100vh;
  background: url('Assets/pexels-vuralyavas-690662.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.atmospheric-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.52);
}
.atmospheric-content {
  position: relative; z-index: 1;
  display: grid;
}
.atm-stat {
  grid-area: 1 / 1;
  display: flex; flex-direction: column; align-items: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.atm-stat.active { opacity: 1; }
.atmospheric-stat {
  font-family: var(--serif);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 400; line-height: 1;
  letter-spacing: -4px;
  color: #ffffff;
  margin: 0;
}
.atmospheric-label {
  font-family: var(--sans);
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 16px;
}

/* ── POSITIONING STATEMENT ───────────────────────────── */
.positioning-section {
  position: relative;
  background: url('Assets/pexels-bala-py-763102.jpg') center/cover no-repeat;
  overflow: hidden;
}
.positioning-section::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.72);
}
.positioning-inner {
  position: relative; z-index: 1;
}
.positioning-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 200px var(--px);
}
.positioning-inner h2 {
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 1.15; letter-spacing: -1.5px;
  color: #ffffff;
}
.positioning-icons {
  width: 180px;
  margin-bottom: 48px;
  display: block;
  filter: none;
}
.positioning-inner h2 em {
  font-style: italic;
  color: #f04829;
}
.positioning-inner p {
  font-family: var(--sans);
  margin-top: 32px; font-size: 17px;
  color: rgba(255,255,255,0.45); max-width: 520px; line-height: 1.7;
}

/* ── CTA DARK ─────────────────────────────────────────── */
.cta-dark {
  background: #0d0d0c;
  padding: 160px var(--px);
  text-align: center;
}
.cta-dark-inner {
  max-width: 740px; margin: 0 auto;
}
.cta-dark-headline {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400; line-height: 1.08;
  letter-spacing: -2px; color: #ffffff;
  margin-bottom: 28px;
}
.cta-dark-headline em { font-style: italic; color: var(--accent); }
.cta-dark-sub {
  font-family: var(--sans);
  font-size: 17px; color: rgba(255,255,255,0.45);
  max-width: 460px; margin: 0 auto 56px;
  line-height: 1.7;
}
.cta-dark-actions {
  display: flex; justify-content: center;
  gap: 16px; align-items: center; flex-wrap: wrap;
}
.cta-dark-bridge {
  margin-top: 32px;
  font-size: 13px; color: rgba(255,255,255,0.3);
  font-family: var(--sans); letter-spacing: 0.01em;
}
.cta-dark-bridge a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s;
}
.cta-dark-bridge a:hover { color: rgba(255,255,255,0.8); }
@media (max-width: 640px) {
  .cta-dark { padding: 100px var(--px); }
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  padding: 56px var(--px) 36px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.footer-wordmark {
  position: absolute;
  bottom: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.055);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-size: 16px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.3px;
}
.footer-brand span { color: var(--accent); }
.footer-tagline { font-size: 13px; color: var(--text-dim); line-height: 1.6; max-width: 240px; }
.footer-col h4 {
  font-size: 12px; letter-spacing: 0; color: var(--text-dim); margin-bottom: 14px; font-weight: 500;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--text-sec);
  text-decoration: none; margin-bottom: 9px; transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  border-top: 1px solid var(--border-l);
  padding-top: 20px;
  font-size: 12px; color: var(--text-dim);
}

/* ── CINEMATIC SECTION ───────────────────────────────── */
.section-cinematic {
  position: relative; overflow: hidden; min-height: 80vh;
  background: #1a1a18;
  display: grid; grid-template-columns: 1fr 1fr;
}
.section-cinematic .cinematic-bg {
  position: absolute; top: 0; left: 0; width: 60%; height: 100%;
}
.section-cinematic .cinematic-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.5) brightness(0.65);
}
.section-cinematic .cinematic-overlay {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(to left, #1a1a18 20%, transparent 100%);
}
.section-cinematic .cinematic-chat-bubbles {
  position: absolute; top: 50%; left: 5%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 16px; z-index: 2;
}
.section-cinematic .cinematic-bubble {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 14px 18px;
  color: rgba(255,255,255,0.88); font-size: 14px; font-family: var(--sans);
  max-width: 300px;
}
.section-cinematic .cinematic-bubble-time {
  font-size: 11px; color: rgba(255,255,255,0.35);
  margin-top: 4px; text-align: right;
}
.section-cinematic .cinematic-content {
  position: relative; z-index: 2;
  grid-column: 2; display: flex; flex-direction: column; justify-content: center;
  padding: 88px 72px 88px 48px;
}
.section-cinematic .cinematic-headline {
  font-family: var(--serif); color: #fff;
  font-size: clamp(28px, 3.5vw, 48px); line-height: 1.15;
  letter-spacing: -0.5px; font-weight: 400; margin: 0;
}
.section-cinematic .cinematic-accent {
  margin-top: 28px;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}
.section-cinematic .cinematic-accent-text {
  font-size: 15px; color: rgba(255,255,255,0.7);
  line-height: 1.65; max-width: 460px; margin: 0;
}
.section-cinematic .cinematic-body {
  font-size: 14px; color: rgba(255,255,255,0.45);
  max-width: 460px; margin-top: 16px; line-height: 1.65;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .split.reversed .split-img,
  .split.reversed .split-content { order: unset; }
  .split-img { height: 340px; }
  .services-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .clinics-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-split { grid-template-columns: 1fr; gap: 40px; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section-cinematic { grid-template-columns: 1fr; min-height: auto; }
  .section-cinematic .cinematic-bg { position: relative; width: 100%; height: 50vh; }
  .section-cinematic .cinematic-overlay { background: linear-gradient(to top, #1a1a18 15%, transparent 80%); width: 100%; }
  .section-cinematic .cinematic-chat-bubbles { top: auto; bottom: 15%; left: 5%; transform: none; }
  .section-cinematic .cinematic-content { padding: 48px 24px; grid-column: 1; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-stat-pill { border-right: none; margin-right:0; padding-right:0; }
  .steps-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .clinics-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .split-content { padding: 48px 24px; }
  .section-inner { padding: 72px 24px; }
  .cta-card { padding: 36px 24px; }
  .positioning-inner { padding: 88px 24px; }
}

/* ── ANIMATION ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(32px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-green-text > * {
  animation: fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-green-text > :nth-child(1) { animation-delay: 0.05s; }
.hero-green-text > :nth-child(2) { animation-delay: 0.14s; }
.hero-green-text > :nth-child(3) { animation-delay: 0.22s; }
.hero-green-text > :nth-child(4) { animation-delay: 0.30s; }
.hero-green-text > :nth-child(5) { animation-delay: 0.36s; }


/* ── PLATFORM SECTION ────────────────────────────────── */
.platform-hero-img {
  width: 100%; margin-top: 48px; border-radius: var(--r);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06); display: block;
}
.platform-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--border); margin-top: 48px;
}
.platform-item {
  border-top: 1px solid var(--border);
  padding: 24px 28px 24px 0;
}
.platform-item-title {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  color: var(--text); margin-bottom: 8px; letter-spacing: -0.2px;
}
.platform-item-text {
  font-size: 14px; color: var(--text-sec); line-height: 1.65; margin: 0;
}
@media (max-width: 1024px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .platform-grid { grid-template-columns: 1fr; }
}

/* ── APP SHOWCASE ─────────────────────────────────────── */
.section-app-showcase {
  background: #0a0a0a;
  overflow: hidden;
  padding: 112px var(--px) 96px;
  text-align: center;
}
.app-showcase-inner {
  max-width: var(--max-w); margin: 0 auto;
}
.app-showcase-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -1px; color: #ffffff;
  max-width: 700px; margin: 0 auto 20px;
}
.app-showcase-sub {
  font-family: var(--sans);
  font-size: 17px; color: rgba(255,255,255,0.5);
  max-width: 500px; margin: 0 auto 72px;
  line-height: 1.7;
}
.app-showcase-phones {
  display: flex; justify-content: center; align-items: flex-end;
  position: relative; margin-bottom: 80px;
}
.app-phone-main {
  width: 220px; position: relative; z-index: 2;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.7));
}
.app-phone-secondary {
  width: 160px; margin-left: -48px; margin-bottom: -20px;
  opacity: 0.65;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
}
.app-showcase-features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: left;
}
.app-feature {
  padding: 36px 40px 0 0;
}
.app-feature:last-child { padding-right: 0; }
.app-feature-title {
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.88); margin-bottom: 10px;
}
.app-feature p {
  font-size: 14px; line-height: 1.65;
  color: rgba(255,255,255,0.38); margin: 0;
}
@media (max-width: 640px) {
  .app-showcase-features { grid-template-columns: 1fr; }
  .app-feature { padding: 28px 0 0; }
  .app-phone-main { width: 160px; }
  .app-phone-secondary { width: 120px; margin-left: -36px; }
}

/* ── BUSINESS CASE ───────────────────────────────────── */
.biz-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 48px;
}
.biz-card {
  background: var(--bg); border-radius: var(--r);
  overflow: hidden;
}
.biz-card-img img {
  width: 100%; height: 320px; object-fit: cover; display: block;
  border-radius: var(--r) var(--r) 0 0;
  filter: saturate(0.7) brightness(0.85);
}
.biz-card-body { padding: 32px; }
.biz-card-title {
  font-family: var(--serif); font-size: 30px; font-weight: 400;
  color: var(--text); letter-spacing: -0.6px; margin: 0;
}
.biz-benefits {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 24px;
}
.biz-benefit-label {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 5px; letter-spacing: -0.1px;
}
.biz-benefit-text {
  font-size: 13px; color: var(--text-sec); line-height: 1.6; margin: 0;
}
@media (max-width: 640px) {
  .biz-grid { grid-template-columns: 1fr; }
}
