:root {
  --bg: #FAFBFC;
  --surface: #FFFFFF;
  --surface-2: #F4F9FD;
  --blue-50: #E6F4FC;
  --blue-100: #CFE9F8;
  --blue-500: #33A7F0;   /* Bloom IVF brand blue */
  --blue-600: #1E8AD1;
  --blue-700: #0E6BAA;
  --ink: #0F2033;
  --ink-2: #1E2F44;
  --text: #334155;
  --muted: #64748B;
  --line: #E6EAF0;
  --warm: #F4EDE4;
  --warm-ink: #7A5C3E;
  --success: #2F7D5B;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-btn: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 32, 51, 0.04), 0 1px 1px rgba(15, 32, 51, 0.02);
  --shadow: 0 1px 2px rgba(15, 32, 51, 0.04), 0 10px 30px rgba(15, 32, 51, 0.06);
  --shadow-lg: 0 2px 4px rgba(15, 32, 51, 0.04), 0 20px 50px rgba(15, 32, 51, 0.10);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  font-size: 16px; line-height: 1.55;
}
.serif { font-family: "Newsreader", Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
.mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; }
h1, h2, h3, h4 { color: var(--ink); margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: var(--radius-btn);
  font-weight: 600; font-size: 15px; letter-spacing: -0.005em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue-500); color: #fff; box-shadow: 0 6px 20px rgba(51,167,240,0.28); }
.btn-primary:hover { background: var(--blue-600); box-shadow: 0 8px 24px rgba(51,167,240,0.36); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: #CBD5E1; }
.btn-ghost { color: var(--blue-600); }
.btn-ghost:hover { color: var(--blue-700); }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 16px 26px; font-size: 16px; }

.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 251, 252, 0.82);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,0.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.logo-img { height: 36px; width: auto; display: block; }
.logo-locale {
  padding-left: 12px; margin-left: 12px;
  border-left: 1px solid var(--line);
  font-size: 13px; color: var(--muted); font-weight: 500; letter-spacing: -0.005em;
}
.logo-locale b { color: var(--ink); font-weight: 600; }
.logo-wrap { display: flex; align-items: center; }
.nav-links { display: flex; gap: 24px; font-size: 14px; color: var(--text); font-weight: 500; align-items: center; }
.nav-links a { transition: color .15s ease; }
.nav-links a:hover { color: var(--blue-600); }

/* Desktop dropdown (Services) */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font: inherit; color: var(--text); font-weight: 500;
  padding: 0; cursor: pointer;
  transition: color .15s ease;
}
.nav-dropdown-btn:hover, .nav-dropdown.is-open .nav-dropdown-btn { color: var(--blue-600); }
.nav-caret { transition: transform .2s ease; opacity: .75; }
.nav-dropdown.is-open .nav-caret { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0; pointer-events: none;
  transition: opacity .15s ease, transform .18s ease;
  z-index: 50;
}
.nav-dropdown.is-open .nav-dropdown-panel { opacity: 1; pointer-events: auto; transform: translate(-50%, 6px); }
/* invisible hover bridge so the panel doesn't close between trigger and menu */
.nav-dropdown-panel::before {
  content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px;
}
.nav-dropdown-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.nav-dropdown-item {
  display: block;
  padding: 10px 12px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
  white-space: nowrap;
  transition: background .12s ease, color .12s ease;
}
.nav-dropdown-item:hover { background: var(--blue-50); color: var(--blue-700); }
.nav-dropdown-all {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--blue-600);
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
  width: 100%;
}
.nav-dropdown-all:hover { color: var(--blue-700); }

.nav-cta { display: flex; gap: 8px; align-items: center; }


/*About Stat Card */
/* Default Mobile View (Single Column) */
.AboutStatCard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* Tablet/Desktop View (Two Columns) */
@media (min-width: 769px) {
  .AboutStatCard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}


/* Hamburger button */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  padding: 0;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.nav-burger:hover { border-color: #CBD5E1; }
.nav-burger span {
  display: block; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu sheet */
.mobile-menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(15, 32, 51, 0.32);
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.mobile-menu-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  height: calc(100dvh - 72px);
  background: #fff;
  z-index: 9999;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .25s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid var(--line);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu-inner { padding: 28px 24px 80px; max-width: 720px; margin: 0 auto; }
.mobile-links { display: grid; gap: 0; }
.mobile-links > a {
  padding: 18px 4px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px; color: var(--ink); font-weight: 500;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-links > a::after {
  content: "\203A"; color: var(--muted); font-size: 28px; line-height: 1;
}

/* Mobile accordion submenu */
.mobile-link-group { border-bottom: 1px solid var(--line); }
.mobile-link-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 18px 4px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px; color: var(--ink); font-weight: 500;
  letter-spacing: -0.01em;
  background: none; border: none; cursor: pointer;
  text-align: left;
}
.mobile-caret { transition: transform .25s ease; color: var(--muted); }
.mobile-link-group.is-open .mobile-caret { transform: rotate(180deg); color: var(--blue-600); }
.mobile-sublinks {
  display: grid; gap: 0;
  padding: 0 4px 12px;
}
.mobile-sublink {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 12px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 15px; font-weight: 500;
  color: var(--text);
  border-radius: 10px;
  letter-spacing: -0.005em;
}
.mobile-sublink:hover, .mobile-sublink:active { background: var(--blue-50); color: var(--blue-700); }
.mobile-sublink::after {
  content: "\2192"; color: var(--muted); font-size: 16px;
}
.mobile-sublink-all {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--blue-600);
  padding-top: 6px; padding-bottom: 10px;
}
.mobile-sublink-all::after { content: ""; }
.mobile-cta { margin-top: 28px; display: grid; gap: 10px; }
.mobile-cta .btn { padding: 16px 20px; font-size: 15px; }

@media (max-width: 1020px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 720px) {
  .logo-locale { display: none; }
  .nav-call span { display: none; }
  .nav-call { padding: 10px 12px; }
  .nav-book { display: none; }
}
@media (min-width: 1021px) {
  .mobile-menu, .mobile-menu-backdrop { display: none; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-50); color: var(--blue-700);
  padding: 7px 12px 7px 10px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: -0.005em;
  border: 1px solid rgba(51,167,240,0.18);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(47,125,91,0.15); }

.hero {
  position: relative; padding: 56px 0 80px;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(51,167,240,0.10), transparent 60%),
    radial-gradient(800px 500px at -10% 20%, rgba(51,167,240,0.06), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero h1 {
  font-family: "Newsreader", Georgia, serif; font-weight: 400;
  font-size: clamp(38px, 5.2vw, 62px); line-height: 1.05;
  letter-spacing: -0.02em; color: var(--ink); margin-top: 20px;
}
.hero h1 em { font-style: italic; color: var(--blue-600); }
.hero-sub { margin-top: 20px; font-size: 18px; color: var(--text); max-width: 620px; line-height: 1.55; }
.bullets { margin-top: 24px; display: grid; gap: 10px; }
.bullet { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink-2); font-weight: 500; }
.bullet .chk { width: 22px; height: 22px; border-radius: 50%; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; flex-shrink: 0; }
.cta-row { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.trust-row {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.avatars { display: flex; }
.avatars span {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
  border: 2px solid #fff; margin-left: -8px; display: grid; place-items: center;
  color: var(--blue-700); font-weight: 700; font-size: 13px;
}
.avatars span:first-child { margin-left: 0; }
.trust-text { font-size: 14px; color: var(--muted); }
.trust-text b { color: var(--ink); font-weight: 700; }

.reg-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); color: var(--ink-2);
  padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.reg-badge .dot-s { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }

/* Hero visual (right side) */
.hero-visual {
  position: relative; aspect-ratio: 5/6; border-radius: 24px;
  background: var(--blue-50);
  overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-visual .hv-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,32,51,0) 35%, rgba(15,32,51,0.18) 100%);
  pointer-events: none;
}
.hero-visual .hv-label {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  font-family: ui-monospace, Menlo, monospace; font-size: 11px; color: #fff;
  background: rgba(15,32,51,0.55); padding: 6px 10px; border-radius: 8px;
  backdrop-filter: blur(4px); display: none;
}
.hero-visual .hv-overlay {
  position: absolute; top: 20px; right: 20px;
  background: #fff; border-radius: 16px; padding: 14px 16px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  font-size: 13px; color: var(--ink-2); max-width: 230px;
}
.hero-visual .hv-overlay .stat-num { font-family: "Newsreader", serif; font-size: 28px; color: var(--blue-600); line-height: 1; }
.hero-visual .hv-overlay .stat-lab { color: var(--muted); font-size: 12px; margin-top: 2px; }
.hero-visual .hv-bottom {
  position: absolute; left: 20px; bottom: 20px; right: 100px;
  background: rgba(255,255,255,0.96); border: 1px solid var(--line);
  border-radius: 16px; padding: 14px; display: flex; gap: 12px; align-items: center;
  box-shadow: var(--shadow);
}
.hv-bottom .hv-ico {
  width: 38px; height: 38px; border-radius: 10px; background: var(--blue-50); color: var(--blue-600);
  display: grid; place-items: center; flex-shrink: 0;
}
.hv-bottom b { color: var(--ink); font-weight: 600; font-size: 14px; }
.hv-bottom span { color: var(--muted); font-size: 12px; }

.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }

/* Sections */
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .kicker { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-600); }
.section-head h2 { font-family: "Newsreader", serif; font-weight: 400; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1; letter-spacing: -0.015em; margin-top: 10px; }
.section-head h2 em { font-style: italic; color: var(--blue-600); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 17px; }

/* Location cards */
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1100px) { .loc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .loc-grid { grid-template-columns: 1fr; gap: 14px; } }
.region-pill {
  position: absolute; top: 14px; right: 14px;
  background: var(--blue-500); color: #fff;
  padding: 5px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  text-transform: uppercase;
}
.loc-card-affiliate { cursor: pointer; }

/* Founders */
.founders { background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg) 100%); }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 12px; }
@media (max-width: 900px) { .founders-grid { grid-template-columns: 1fr; gap: 22px; } }
.founder-card {
  display: grid; grid-template-columns: 240px 1fr; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.founder-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--blue-100); }
@media (max-width: 720px) { .founder-card { grid-template-columns: 1fr; } }
.founder-photo {
  position: relative;
  background: linear-gradient(180deg, var(--blue-50) 0%, #fff 100%);
  min-height: 280px;
}
.founder-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
@media (max-width: 720px) { .founder-photo { aspect-ratio: 4/3; min-height: auto; } .founder-photo img { object-position: center 0%; } }
.founder-body { padding: 28px; display: flex; flex-direction: column; }
.founder-role {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue-600);
}
.founder-name { font-size: 26px; line-height: 1.1; margin-top: 6px; letter-spacing: -0.02em; }
.founder-creds { font-size: 12.5px; color: var(--muted); margin-top: 6px; font-weight: 500; letter-spacing: -0.005em; }
.founder-bio { font-size: 14.5px; color: var(--text); margin-top: 14px; line-height: 1.6; }
.founder-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto; padding-top: 18px;
  font-size: 14px; font-weight: 600; color: var(--blue-600);
  transition: gap .2s ease, color .15s ease;
  align-self: flex-start;
}
.founder-link:hover { color: var(--blue-700); gap: 10px; }
.loc-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
  cursor: pointer;
}
.loc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.loc-photo {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  background: var(--blue-50);
}
.loc-photo .loc-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.loc-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,32,51,0) 45%, rgba(15,32,51,0.22) 100%);
  pointer-events: none;
}
.loc-photo .photo-label { display: none; }
.loc-photo .city-pill {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(6px);
  border: 1px solid var(--line); padding: 6px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 6px;
}
.loc-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.loc-body h3 { font-size: 20px; letter-spacing: -0.01em; }
.loc-addr { color: var(--muted); font-size: 14px; margin-top: 8px; line-height: 1.55; }
.loc-meta { margin-top: 14px; display: flex; gap: 16px; font-size: 13px; color: var(--ink-2); }
.loc-meta span { display: inline-flex; align-items: center; gap: 6px; }
.loc-cta { margin-top: 18px; display: flex; gap: 8px; align-items: center; }
.loc-cta .btn { flex: 1; }

/* Why */
.why-wrap { background: var(--surface-2); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 26px 22px; transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.why-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-50); color: var(--blue-600);
  display: grid; place-items: center; margin-bottom: 16px;
}
.why-card h4 { font-size: 17px; letter-spacing: -0.005em; }
.why-card p { margin-top: 8px; font-size: 14px; color: var(--muted); line-height: 1.55; }

/* Services */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 28px; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.svc-card.featured { background: linear-gradient(160deg, #F6FBFE, #FFFFFF 60%); }
.svc-icon { width: 48px; height: 48px; border-radius: 14px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--blue-600); box-shadow: var(--shadow-sm); }
.svc-card h4 { margin-top: 18px; font-size: 19px; letter-spacing: -0.01em; }
.svc-card p { color: var(--muted); font-size: 14px; margin-top: 8px; line-height: 1.55; }
.svc-link { margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--blue-600); display: inline-flex; align-items: center; gap: 6px; }
.svc-link svg { transition: transform .2s ease; }
.svc-card:hover .svc-link svg { transform: translateX(3px); }

/* CTA band */
.cta-band {
  margin: 28px 0 0;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  box-shadow: var(--shadow-sm);
}
.cta-band p { font-size: 15px; color: var(--ink-2); }
.cta-band p b { color: var(--ink); }
@media (max-width: 700px) { .cta-band { flex-direction: column; align-items: stretch; } }

/* Testimonials */
.test-wrap { background: var(--surface-2); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }
.test-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.test-quote { font-family: "Newsreader", serif; font-size: 20px; line-height: 1.45; color: var(--ink-2); letter-spacing: -0.005em; }
.test-meta { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.test-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-100), var(--blue-50)); display: grid; place-items: center; color: var(--blue-700); font-weight: 700; }
.test-name { font-weight: 600; color: var(--ink); font-size: 14px; }
.test-loc { color: var(--muted); font-size: 13px; }
.stars { color: #E8A93C; display: inline-flex; gap: 2px; font-size: 14px; }

.logos-row { margin-top: 56px; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; opacity: 0.9; }
.logo-chip { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 600; font-size: 14px; letter-spacing: -0.005em; }
.logo-chip .sq { width: 22px; height: 22px; border-radius: 6px; background: var(--blue-50); display: grid; place-items: center; color: var(--blue-600); }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item.open { border-color: var(--blue-100); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; font-weight: 600; color: var(--ink); font-size: 16px; gap: 16px;
}
.faq-q .chev { transition: transform .25s ease; color: var(--muted); flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); color: var(--blue-600); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  padding: 0 22px; color: var(--text); font-size: 15px; line-height: 1.6;
}
.faq-item.open .faq-a { padding: 0 22px 20px; max-height: 400px; }

/* Lead form */
.lead-section { padding: 80px 0; background: linear-gradient(180deg, var(--surface-2) 0%, #FFFFFF 100%); }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 1040px; margin: 0 auto; }
@media (max-width: 900px) { .lead-grid { grid-template-columns: 1fr; gap: 32px; } }
.lead-side h2 { font-family: "Newsreader", serif; font-weight: 400; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.1; letter-spacing: -0.015em; }
.lead-side h2 em { font-style: italic; color: var(--blue-600); }
.lead-side p { color: var(--text); font-size: 16px; margin-top: 14px; }
.lead-side ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; font-size: 14px; }
.lead-side ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-2); }
.lead-side ul .chk { width: 20px; height: 20px; border-radius: 50%; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }

.lead-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 28px; box-shadow: var(--shadow-lg); position: relative; }
.lead-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--warm); color: var(--warm-ink); padding: 5px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.lead-card h3 { font-family: "Newsreader", serif; font-weight: 400; font-size: 26px; line-height: 1.15; letter-spacing: -0.01em; margin-top: 12px; }
.lead-card p.lead-help { color: var(--muted); font-size: 14px; margin-top: 6px; }
.field { margin-top: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; font: inherit; font-size: 15px; color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(51,167,240,0.14);
}
.field .phone-wrap { display: flex; gap: 8px; }
.field .phone-wrap .cc { flex: 0 0 76px; text-align: center; font-weight: 600; color: var(--ink-2); background: var(--surface-2); }
.field .error { color: #B42318; font-size: 12px; margin-top: 6px; display: none; }
.field.has-error input { border-color: #F97066; box-shadow: 0 0 0 4px rgba(249,112,102,0.1); }
.field.has-error .error { display: block; }
.consent { margin-top: 14px; font-size: 12px; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.consent input { margin-top: 3px; accent-color: var(--blue-500); }
.lead-card .btn-primary { width: 100%; margin-top: 16px; padding: 15px; }
.lead-foot { margin-top: 14px; display: flex; gap: 14px; align-items: center; justify-content: center; font-size: 12px; color: var(--muted); }
.lead-foot .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: #CBD5E1; }
.lead-success { text-align: center; padding: 10px 0 6px; }
.lead-success .ok-ring { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 12px; background: rgba(47,125,91,0.1); color: var(--success); display: grid; place-items: center; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.blog-img {
  aspect-ratio: 16/10; position: relative; overflow: hidden;
  background: var(--blue-50);
}
.blog-img .blog-pic { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,32,51,0) 55%, rgba(15,32,51,0.18) 100%);
  pointer-events: none;
}
.blog-img .tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.96); padding: 6px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600; color: var(--blue-700); border: 1px solid var(--line);
  z-index: 1;
}
.blog-img .ph { display: none; }
.blog-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.blog-body h4 { font-family: "Newsreader", serif; font-weight: 400; font-size: 22px; line-height: 1.2; letter-spacing: -0.01em; }
.blog-body p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.blog-meta { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 12px; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line); }
.blog-meta .author { color: var(--ink-2); font-weight: 600; }
.blog-more { display: inline-flex; align-items: center; gap: 6px; color: var(--blue-600); font-weight: 600; font-size: 14px; margin-top: 4px; }

/* Final CTA */
.final-cta {
  background:
    radial-gradient(600px 300px at 20% 20%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(800px 400px at 90% 100%, rgba(51,167,240,0.16), transparent 60%),
    linear-gradient(160deg, var(--blue-50) 0%, var(--surface-2) 100%);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 88px 0;
}
.final-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.final-inner h2 { font-family: "Newsreader", serif; font-weight: 400; font-size: clamp(32px, 4.2vw, 52px); line-height: 1.08; letter-spacing: -0.02em; }
.final-inner h2 em { font-style: italic; color: var(--blue-600); }
.final-inner p { color: var(--ink-2); font-size: 18px; margin-top: 14px; }
.final-ctas { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Statutory strip */
.statutory {
  background: #0F2033; color: #9FB0C4; font-size: 13px; line-height: 1.6;
  padding: 20px 0; text-align: center;
}
.statutory .wrap { display: flex; align-items: center; justify-content: center; gap: 10px; }
.statutory b { color: #fff; font-weight: 600; }

/* Footer */
footer { background: #0A1828; color: #C3CED9; padding: 72px 0 28px; }
footer h5 { color: #fff; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-top { grid-template-columns: 1fr; } }
.foot-brand p { margin-top: 14px; font-size: 14px; color: #8FA0B3; line-height: 1.6; max-width: 340px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.foot-col a:hover { color: #fff; }
.foot-addr { font-size: 13px; color: #8FA0B3; line-height: 1.55; }
.foot-addr b { color: #fff; font-weight: 600; display: block; margin-top: 10px; }
.foot-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12px; color: #8FA0B3; }
.disclaimer { max-width: 880px; line-height: 1.6; margin-top: 24px; font-size: 12px; color: #8FA0B3; background: rgba(255,255,255,0.03); padding: 14px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.05); }

.foot-logo { background: #fff; padding: 6px 12px; border-radius: 10px; display: inline-block; }
.foot-logo img { height: 32px; width: auto; }

/* WhatsApp FAB */
.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  transition: transform .2s ease;
}
.wa-fab:hover { transform: translateY(-2px) scale(1.04); }
.wa-fab .pulse { position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.4); animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(0.9); opacity: 0.8; } 100% { transform: scale(1.4); opacity: 0; } }

/* Sticky CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); padding: 12px 16px;
  display: flex; align-items: center; gap: 12px; justify-content: space-between;
  transform: translateY(120%); transition: transform .3s ease;
  box-shadow: 0 -8px 24px rgba(15, 32, 51, 0.06);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .sc-text { font-size: 13px; color: var(--ink-2); }
.sticky-cta .sc-text b { color: var(--ink); display: block; font-size: 14px; }
.sticky-cta .sc-actions { display: flex; gap: 8px; }
@media (max-width: 540px) {
  .sticky-cta .sc-text { display: none; }
  .sticky-cta .sc-actions { width: 100%; }
  .sticky-cta .sc-actions .btn { flex: 1; }
  .wa-fab { bottom: 84px; }
}

/* City hero photo */
.city-hero-photo {
  position: relative; aspect-ratio: 4/3; border-radius: 22px;
  overflow: hidden; border: 1px solid var(--line);
  background: var(--blue-50);
  box-shadow: var(--shadow);
}
.city-hero-photo .chp-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.city-hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,32,51,0) 35%, rgba(15,32,51,0.28) 100%);
  pointer-events: none;
}
.city-hero-photo .stripe { display: none; }
.city-hero-photo .city-tag {
  position: absolute; top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--blue-700); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.city-hero-photo .addr-card {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  background: rgba(255,255,255,0.96); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; box-shadow: var(--shadow); backdrop-filter: blur(6px);
  z-index: 1;
}
.city-hero-photo .addr-card b { color: var(--ink); font-size: 14px; }
.city-hero-photo .addr-card p { color: var(--muted); font-size: 13px; margin-top: 4px; line-height: 1.5; }
.city-hero-photo .ph-label { display: none; }
.city-hero-photo .city-tag { z-index: 1; }


/* ============== Doctor Profile Pages ============== */
.doc-hero { padding: 96px 0 56px; background: linear-gradient(180deg, var(--blue-50) 0%, var(--bg) 100%); position: relative; overflow: hidden; }
.doc-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 85% 0%, rgba(51,167,240,0.18), transparent 60%); pointer-events: none; }
.doc-hero .wrap { position: relative; }
.doc-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .doc-hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.doc-role { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 12px; font-weight: 600; color: var(--blue-700); letter-spacing: 0.02em; }
.doc-name { font-family: "Newsreader", serif; font-weight: 400; font-size: clamp(40px, 5.4vw, 64px); line-height: 1.04; letter-spacing: -0.02em; margin-top: 18px; }
.doc-name em { font-style: italic; color: var(--blue-600); }
.doc-creds { font-size: 14px; color: var(--muted); margin-top: 14px; font-weight: 500; letter-spacing: -0.005em; line-height: 1.6; }
.doc-tagline { font-family: "Newsreader", serif; font-style: italic; font-size: 20px; line-height: 1.5; color: var(--ink-2); margin-top: 22px; padding-left: 18px; border-left: 3px solid var(--blue-300); max-width: 540px; }
.doc-hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.doc-portrait {
  position: relative; aspect-ratio: 4/5; border-radius: 28px; overflow: hidden;
  background: linear-gradient(180deg, var(--blue-50) 0%, #fff 100%);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.doc-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.doc-portrait .badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; font-size: 12px; font-weight: 600; color: var(--blue-700);
  display: inline-flex; align-items: center; gap: 8px;
}
.doc-portrait .badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-500); }

.doc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 720px) { .doc-stats { grid-template-columns: repeat(2, 1fr); } .doc-stats .stat:nth-child(2) { border-right: none; } }
.doc-stats .stat { padding: 28px 24px; border-right: 1px solid var(--line); }
.doc-stats .stat:last-child { border-right: none; }
.doc-stats .stat .n { font-family: "Newsreader", serif; font-size: 38px; line-height: 1; letter-spacing: -0.02em; color: var(--ink); }
.doc-stats .stat .l { color: var(--muted); font-size: 13px; margin-top: 8px; line-height: 1.4; }

.doc-section { padding: 72px 0; }
.doc-section.alt { background: var(--bg-soft); }
.doc-section-head { max-width: 720px; margin-bottom: 36px; }
.doc-section-head .kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-600); }
.doc-section-head h2 { font-family: "Newsreader", serif; font-weight: 400; font-size: clamp(30px, 3.6vw, 42px); line-height: 1.1; letter-spacing: -0.02em; margin-top: 14px; }
.doc-section-head h2 em { font-style: italic; color: var(--blue-600); }
.doc-section-head p { color: var(--muted); margin-top: 14px; font-size: 16px; line-height: 1.65; }

.doc-bio { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
@media (max-width: 800px) { .doc-bio { grid-template-columns: 1fr; gap: 24px; } }
.doc-bio p { color: var(--ink-2); font-size: 15.5px; line-height: 1.75; }
.doc-bio p + p { margin-top: 14px; }

.doc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 800px) { .doc-grid-2 { grid-template-columns: 1fr; } }
.doc-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.doc-card h3 { font-family: "Newsreader", serif; font-weight: 400; font-size: 22px; letter-spacing: -0.01em; margin-bottom: 14px; }
.doc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.doc-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.doc-list li .dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-500); margin-top: 8px; }
.doc-list li b { color: var(--ink); font-weight: 600; }

.doc-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .doc-specs { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .doc-specs { grid-template-columns: 1fr; } }
.spec-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.spec-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--blue-100); }
.spec-card .ico { width: 40px; height: 40px; border-radius: 12px; background: var(--blue-50); color: var(--blue-600); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.spec-card h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; letter-spacing: -0.005em; }
.spec-card p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

.doc-quote-band {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  color: #fff; padding: 72px 0;
}
.doc-quote-band .wrap { max-width: 880px; text-align: center; }
.doc-quote-band .open { font-family: "Newsreader", serif; font-size: 90px; line-height: 0.6; color: rgba(255,255,255,0.4); height: 36px; }
.doc-quote-band blockquote { font-family: "Newsreader", serif; font-weight: 300; font-style: italic; font-size: clamp(22px, 2.6vw, 32px); line-height: 1.4; letter-spacing: -0.01em; margin: 18px 0; }
.doc-quote-band cite { font-style: normal; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.8); }

.doc-timeline { position: relative; padding-left: 32px; }
.doc-timeline::before { content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: var(--blue-200); }
.doc-tl-item { position: relative; padding-bottom: 28px; }
.doc-tl-item::before { content: ""; position: absolute; left: -29px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--blue-500); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--blue-200); }
.doc-tl-item:last-child { padding-bottom: 0; }
.doc-tl-item .yr { font-family: "Newsreader", serif; font-size: 22px; color: var(--blue-600); letter-spacing: -0.01em; }
.doc-tl-item h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-top: 4px; }
.doc-tl-item p { font-size: 14px; color: var(--muted); margin-top: 6px; line-height: 1.6; }

.doc-back { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--blue-600); font-weight: 600; margin-bottom: 20px; }
.doc-back:hover { gap: 10px; }

.doc-otherdoc { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 28px; display: grid; grid-template-columns: 120px 1fr; gap: 24px; align-items: center; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.doc-otherdoc:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.doc-otherdoc .pic { width: 120px; height: 120px; border-radius: 50%; background: var(--blue-50); overflow: hidden; position: relative; }
.doc-otherdoc .pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.doc-otherdoc h4 { font-family: "Newsreader", serif; font-size: 22px; line-height: 1.15; letter-spacing: -0.01em; }
.doc-otherdoc .r { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue-600); margin-bottom: 6px; }
.doc-otherdoc p { color: var(--muted); font-size: 14px; line-height: 1.55; margin-top: 6px; }
@media (max-width: 540px) { .doc-otherdoc { grid-template-columns: 1fr; text-align: center; } .doc-otherdoc .pic { margin: 0 auto; } }
