/* ===========================================================
   INNATE LIVING CENTER — site styles
   Brand: #00b4bf (teal)  #1b2d6b (deep navy)  #4a6fca (mid blue)
   Type:  Fraunces (serif headlines) + Inter (UI/body)
   =========================================================== */

:root {
  --teal: #00b4bf;
  --teal-deep: #008f98;
  --navy: #1b2d6b;
  --navy-deep: #131f4a;
  --blue: #4a6fca;
  --blue-soft: #e3e8d9;

  --ink: #0f1430;
  --ink-soft: #4a5072;
  --line: rgba(27, 45, 107, 0.12);
  --line-strong: rgba(27, 45, 107, 0.22);

  --bg: #f7f3ec;
  --bg-soft: #efe8db;
  --bg-navy: #1b2d6b;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(15, 20, 48, 0.06), 0 4px 12px rgba(15, 20, 48, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 20, 48, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 20, 48, 0.16);

  --w: 1240px;
  --w-narrow: 980px;

  --serif: "Lora", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ===== Type ===== */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--teal);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(48px, 6vw, 84px); line-height: 0.98; }
h2 { font-size: clamp(36px, 4.2vw, 60px); line-height: 1.04; }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.18; }

p { margin: 0 0 1em; text-wrap: pretty; }

.lead {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* Hormozi-style stacked hook */
.hook {
  font-family: var(--serif);
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.hook em {
  font-style: italic;
  color: var(--teal-deep);
}
.hook .strike {
  text-decoration: line-through;
  text-decoration-color: rgba(27, 45, 107, 0.4);
  text-decoration-thickness: 3px;
  color: var(--ink-soft);
  font-style: normal;
}

/* ===== Layout ===== */
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: var(--w-narrow); margin: 0 auto; padding: 0 28px; }

section { padding: clamp(72px, 9vw, 128px) 0; }
section.tight { padding: clamp(48px, 6vw, 80px) 0; }

.divider { height: 1px; background: var(--line); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-teal {
  background: var(--teal);
  color: #fff;
}
.btn-teal:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}
.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover {
  background: var(--blue-soft);
}
.btn .arrow {
  width: 16px; height: 16px;
  transition: transform 0.2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 236, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header .wrap { padding: 0 44px; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.logo-mark-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.logo small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--teal);
  transition: right 0.2s ease;
}
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav a.active { color: var(--navy); }

.header .btn { padding: 12px 22px; font-size: 14px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(60px, 7vw, 110px) 0 clamp(72px, 8vw, 130px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(0, 180, 191, 0.08), transparent 60%),
    radial-gradient(45% 40% at 0% 90%, rgba(74, 111, 202, 0.06), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
}
.hero-copy h1 { margin-bottom: 28px; }
.hero-copy h1 em {
  font-style: italic;
  color: var(--teal-deep);
}
.hero-copy .lead { margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-bullets {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-bullets div {
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-bullets div::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--blue-soft);
  box-shadow: var(--shadow-lg);
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
.hero-badge .stars {
  display: flex; gap: 2px;
  color: var(--teal);
}
.hero-badge .stars svg { width: 16px; height: 16px; }
.hero-badge p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
}
.hero-badge strong {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}

/* ===== Service blocks ===== */
.services {
  background: var(--bg-soft);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head .lead { margin: 0; }

.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.service:last-child { margin-bottom: 0; }
.service.flip .service-media { order: 2; }

.service-media {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--blue-soft);
  box-shadow: var(--shadow-md);
}
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.service-copy h2 { margin-bottom: 20px; }
.service-copy .lead { margin-bottom: 32px; }
.service-copy h3 {
  margin: 0 0 20px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.bullet-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.bullet-list li {
  position: relative;
  padding: 16px 0 16px 36px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}
.bullet-list li:last-child { border-bottom: 1px solid var(--line); }
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 22px;
  height: 2px;
  background: var(--teal);
}
.so-what {
  background: var(--blue-soft);
  border-left: 3px solid var(--teal);
  padding: 18px 22px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 32px;
}
.so-what strong { font-weight: 600; }

/* ===== Hook band (Hormozi) ===== */
.hook-band {
  background: var(--bg-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hook-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 40% at 90% 10%, rgba(0, 180, 191, 0.18), transparent 60%),
    radial-gradient(40% 40% at 10% 100%, rgba(74, 111, 202, 0.22), transparent 60%);
  pointer-events: none;
}
.hook-band .wrap-narrow { position: relative; text-align: center; }
.hook-band h2 {
  color: #fff;
  font-size: clamp(40px, 5.4vw, 76px);
}
.hook-band h2 em { color: var(--teal); font-style: italic; }
.hook-band .lead {
  color: rgba(255, 255, 255, 0.75);
  margin: 24px auto 36px;
}

/* ===== Doctors ===== */
.doctors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  margin-top: 56px;
}
.doc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.doc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.doc-photo {
  aspect-ratio: 3 / 4;
  background: var(--blue-soft);
  overflow: hidden;
}
.doc-photo img { width: 100%; height: 100%; object-fit: cover; }
.doc-body {
  padding: 32px 36px 36px;
}
.doc-body .role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 8px;
}
.doc-body h3 {
  font-size: 28px;
  margin: 0 0 16px;
}
.doc-body p {
  color: var(--ink-soft);
  font-size: 15.5px;
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--bg-soft);
}
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tcard .stars {
  display: flex; gap: 2px;
  color: var(--teal);
}
.tcard .stars svg { width: 16px; height: 16px; }
.tcard blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.005em;
  flex: 1;
}
.tcard cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ===== FAQ ===== */
.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--navy);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.faq-item .icon::before, .faq-item .icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: transform 0.2s ease;
}
.faq-item .icon::before { width: 12px; height: 2px; }
.faq-item .icon::after { width: 2px; height: 12px; }
.faq-item .icon { position: relative; }
.faq-item[open] .icon { background: var(--teal); }
.faq-item[open] .icon::before { background: #fff; }
.faq-item[open] .icon::after { background: #fff; transform: scaleY(0); }
.faq-item .answer {
  padding: 0 0 32px;
  max-width: 70ch;
  color: var(--ink-soft);
  font-size: 16.5px;
}

/* ===== CTA band ===== */
.cta-band {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 90% 50%, rgba(0, 180, 191, 0.18), transparent 65%);
  pointer-events: none;
}
.cta-band .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.75); margin-top: 18px; max-width: 50ch; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

/* ===== Footer ===== */
.footer {
  background: #0d1430;
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-grid h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 14.5px; }
.footer-grid a:hover { color: #fff; }
.footer-grid .logo { color: #fff; margin-bottom: 16px; }
.footer-grid .logo small { color: rgba(255, 255, 255, 0.5); }
.footer-grid .blurb {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  max-width: 32ch;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .socials {
  display: flex;
  gap: 12px;
}
.footer-bottom .socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s;
}
.footer-bottom .socials a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #0d1430;
}

/* ===== Page header (sub-pages) ===== */
.page-hero {
  padding: clamp(80px, 9vw, 140px) 0 clamp(56px, 6vw, 96px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(45% 50% at 90% 30%, rgba(0, 180, 191, 0.07), transparent 65%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; }
.page-hero .breadcrumb {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.page-hero .breadcrumb a:hover { color: var(--navy); }
.page-hero h1 {
  font-size: clamp(56px, 7vw, 100px);
  margin-bottom: 28px;
}
.page-hero .lead { max-width: 56ch; }

/* ===== Locations / Contact ===== */
.locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.loc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.loc-card .city {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.loc-card .addr {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.loc-card .addr strong { color: var(--ink); font-weight: 600; }
.loc-card .hours {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.loc-card .hours span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--navy);
}
.loc-card .actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.loc-card .map {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 100%),
    repeating-linear-gradient(90deg, rgba(27,45,107,0.05) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(0deg, rgba(27,45,107,0.05) 0 1px, transparent 1px 60px),
    var(--blue-soft);
  border-radius: var(--r-md);
  position: relative;
  display: block;
}
.loc-card .map .pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  width: 32px; height: 40px;
  display: grid; place-items: center;
}
.loc-card .map .pin-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--teal);
  border: 4px solid #fff;
  box-shadow: 0 4px 14px rgba(0, 180, 191, 0.4);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner,
  .service,
  .section-head,
  .doctors,
  .tgrid,
  .locations,
  .cta-band .wrap,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .service.flip .service-media { order: 0; }
  .nav { display: none; }
  .cta-band .actions { justify-content: flex-start; }
  .tgrid { gap: 16px; }
}
@media (max-width: 600px) {
  .wrap, .wrap-narrow { padding: 0 20px; }
  .header-inner { padding: 14px 0; }
  .logo { font-size: 18px; }
  .logo-mark { width: 32px; height: 32px; font-size: 15px; }
  .logo small { display: none; }
  .header .btn-primary span { display: none; }
}

/* ===== Normal vs Optimal lab chart ===== */
.chart-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 40px 32px;
  box-shadow: var(--shadow-md);
}
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.chart-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.chart-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
}
.legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.legend .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.legend .dot-normal { background: var(--bg-soft); border: 1px solid var(--line-strong); }
.legend .dot-optimal { background: var(--teal); }
.legend .dot-you { background: var(--ink); }

.marker {
  display: grid;
  grid-template-columns: 160px 1fr 200px;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.marker:last-of-type { border-bottom: none; }
.marker-label strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
}
.marker-label .units {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.marker-bar {
  position: relative;
  height: 90px;
}
.bar-track {
  position: absolute;
  top: 52px;
  left: 0; right: 0;
  height: 10px;
  background: var(--bg-soft);
  border-radius: 6px;
}
.bar-optimal {
  position: absolute;
  top: 52px;
  height: 10px;
  background: var(--teal);
  border-radius: 6px;
}
.bar-tick {
  position: absolute;
  top: 52px;
  width: 1px;
  height: 10px;
  background: rgba(15, 20, 48, 0.18);
  transform: translateX(-50%);
}
.bar-tick span {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--ink-soft);
}
.bar-you {
  position: absolute;
  top: 52px;
  transform: translateX(-50%);
}
.you-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--ink);
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
}
.you-pill {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
}
.you-pill::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--ink);
}
.marker-verdict {
  font-size: 14px;
  color: var(--ink-soft);
  text-align: right;
}
.verdict-normal {
  color: var(--teal-deep);
  font-weight: 600;
}
.chart-footnote {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--blue-soft);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 15.5px;
  color: var(--ink);
}

/* ===== Symptoms → Root Causes ===== */
.symptoms-map {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.map-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.map-col-head {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.symptom,
.biomarker {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--ink);
  height: 44px;
  display: flex;
  align-items: center;
}
.biomarker {
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 16px;
}
.biomarker .value {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.biomarker .value.low {
  background: rgba(0, 180, 191, 0.12);
  color: var(--teal-deep);
}
.biomarker .value.high {
  background: rgba(217, 119, 87, 0.14);
  color: #b95a35;
}
.map-lines {
  position: relative;
  align-self: stretch;
  margin-top: 32px;
}
.map-lines svg {
  width: 100%;
  height: 100%;
  display: block;
}
.map-lines path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.5;
  stroke-opacity: 0.5;
  stroke-dasharray: 3 4;
}

/* ===== Stat row ===== */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 10px;
}
.stat-num span {
  font-size: 28px;
  color: var(--teal-deep);
  font-weight: 400;
}
.stat-label {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .marker {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .marker-verdict { text-align: left; }
  .chart-card { padding: 24px; }
  .symptoms-map { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .map-lines { display: none; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

.intro-video {
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--ink);
  aspect-ratio: 16 / 9;
}
.intro-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* ===== Compact service cards (home page) ===== */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 20, 48, 0.12);
}
.svc-card:hover .svc-link { gap: 14px; }
.svc-media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
}
.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-body {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.svc-body h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.svc-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  flex: 1;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
  transition: gap 0.2s ease;
  margin-top: 6px;
}
@media (max-width: 800px) {
  .svc-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ===== Stats banner ===== */
.stats-banner {
  background: var(--navy);
  color: #fff;
  padding: 36px 0 44px;
}
.stats-tagline {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
}
.stats-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-star { color: var(--teal); }
.stat-label {
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.16);
}
@media (max-width: 720px) {
  .stats-row { grid-template-columns: 1fr; gap: 24px; }
  .stat-divider { display: none; }
}

/* ===== Rounded portrait frames ===== */
.softfade-family {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
