:root {
  --bg: #060c17;
  --panel: #0b1320;
  --panel-soft: rgba(11, 19, 32, 0.72);
  --panel-dark: rgba(6, 12, 23, 0.82);
  --line: #1e293b;
  --line-soft: rgba(30, 41, 59, 0.65);
  --text: #cbd5e1;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  --white: #ffffff;
  --blue: #007aff;
  --blue-dark: #005bb5;
  --blue-soft: rgba(0, 122, 255, 0.10);
  --red: #ef4444;
  --red-soft: rgba(239, 68, 68, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1200px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}
body::selection { background: var(--blue); color: var(--white); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; }

.site-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.dot-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle at 2px 2px, #ffffff 1px, transparent 0);
  background-size: 32px 32px;
}
.glow { position: absolute; border-radius: 999px; filter: blur(84px); }
.glow-top { top: -100px; right: -100px; width: 500px; height: 500px; background: rgba(0, 122, 255, 0.08); }
.glow-bottom { left: -140px; bottom: -140px; width: 620px; height: 620px; background: rgba(0, 59, 128, 0.16); }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: 80px; border-top: 1px solid var(--line-soft); position: relative; }
.section-lg { padding-block: 80px; position: relative; }
.section-soft { background: rgba(11, 19, 32, 0.32); border-top: 1px solid var(--line-soft); }

.nav-shell { position: relative; z-index: 20; }
.nav { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-block: 28px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}
.brand strong { display: block; color: var(--white); font-size: 25px; letter-spacing: 0.12em; font-style: italic; }
.brand small { display: block; margin-top: 3px; color: var(--text-muted); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  font-weight: 650;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 0 24px rgba(0, 122, 255, 0.25); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-ghost { border-color: #334155; color: var(--text); background: transparent; }
.btn-ghost:hover, .btn-dark:hover { border-color: var(--blue); color: var(--white); }
.btn-dark { border-color: var(--line); background: var(--panel); color: var(--text); }
.btn-lg { border-radius: 14px; padding: 15px 22px; }

.hero { display: grid; grid-template-columns: minmax(0, 1fr) 520px; gap: 64px; align-items: start; }
.sticky-col { position: sticky; top: 24px; }
.eyebrow { display: flex; align-items: center; gap: 14px; color: var(--blue); text-transform: uppercase; letter-spacing: 0.16em; font-size: 13px; margin-bottom: 22px; }
.eyebrow span { width: 34px; height: 1px; background: var(--blue); display: block; }
.hero h1, .section h2, .booking-card h2, .final-cta h2, .site-footer h2 {
  color: var(--white);
  font-family: var(--serif);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0;
}
.hero h1 { font-size: clamp(44px, 6vw, 74px); max-width: 780px; margin-bottom: 16px; }
.hero-accent { color: var(--blue); font-family: var(--serif); font-size: clamp(27px, 4vw, 48px); font-style: italic; line-height: 1.08; margin: 0 0 24px; }
.hero-subtitle { color: var(--text-dim); font-size: clamp(18px, 2vw, 23px); font-weight: 300; max-width: 650px; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.pathway-selector { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; max-width: 680px; }
.pathway-chip {
  border: 1px solid rgba(0, 122, 255, 0.28);
  background: rgba(0, 122, 255, 0.06);
  color: #dbeafe;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.pathway-chip:hover { border-color: var(--blue); background: rgba(0, 122, 255, 0.12); transform: translateY(-1px); }
.trust-pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 12px 16px;
  border-radius: 999px;
  margin-bottom: 36px;
  color: var(--text);
  font-size: 14px;
}
.mini-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--blue); box-shadow: 0 0 18px var(--blue); }
.location-row { display: flex; gap: 15px; border-top: 1px solid var(--line-soft); padding-top: 26px; }
.icon-circle { width: 38px; height: 38px; display: inline-grid; place-items: center; border-radius: 999px; background: var(--blue-soft); color: var(--blue); flex: none; }
.location-row h3 { margin: 0 0 4px; color: var(--white); font-size: 18px; }
.location-row p { margin: 0; color: var(--text-muted); }

.booking-card {
  background: rgba(11, 19, 32, 0.83);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
  scroll-margin-top: 20px;
}
.booking-card h2 { font-size: 40px; margin-bottom: 8px; }
.muted { color: var(--text-muted); margin-top: 0; }
.info-card, .next-steps-card {
  border: 1px solid var(--line);
  background: rgba(6, 12, 23, 0.62);
  border-radius: 16px;
  padding: 18px;
}
.blue-card { border-color: rgba(0, 122, 255, 0.22); background: rgba(0, 122, 255, 0.055); margin: 22px 0; }
.info-card h3, .next-steps-card h3 { margin: 0 0 10px; color: var(--white); }
.micro-note {
  border: 1px solid var(--line-soft);
  background: rgba(6, 12, 23, 0.62);
  color: var(--text-muted);
  border-radius: 12px;
  padding: 12px;
  font-size: 12px;
  margin: 14px 0 0;
}
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 28px; color: var(--text); }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--blue);
  font-weight: 800;
}
.check-list.compact { gap: 8px; }
.check-list.compact li { font-size: 13px; color: var(--text-dim); }
.progress-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 22px 0; }
.progress-tab {
  border: 1px solid var(--line);
  color: var(--text-muted);
  background: var(--bg);
  border-radius: 999px;
  padding: 9px 12px;
  cursor: pointer;
}
.progress-tab.active { color: var(--white); background: var(--blue); border-color: var(--blue); }
.form-error { border: 1px solid rgba(239, 68, 68, 0.45); color: #fecaca; background: rgba(239, 68, 68, 0.09); padding: 12px 14px; border-radius: 12px; }
.success-state { text-align: center; padding: 46px 12px; }
.success-icon { width: 64px; height: 64px; display: inline-grid; place-items: center; border-radius: 999px; color: var(--blue); background: var(--blue-soft); font-size: 32px; margin-bottom: 18px; }
.success-state h3 { color: var(--white); font-family: var(--serif); font-size: 28px; margin: 0 0 6px; }
.link-button { background: none; border: 0; color: var(--blue); text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }

.consult-form { display: grid; gap: 18px; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.form-step { display: none; }
.form-step.active { display: grid; gap: 15px; }
legend { color: var(--white); font-weight: 700; margin-bottom: 3px; }
.form-help { color: var(--text-muted); font-size: 14px; margin: 0 0 4px; }
.condition-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 4px; }
.condition-card {
  text-align: left;
  border: 1px solid var(--line);
  background: rgba(6, 12, 23, 0.58);
  color: var(--text);
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.condition-card:hover { border-color: rgba(0, 122, 255, 0.55); transform: translateY(-1px); }
.condition-card.selected { border-color: var(--blue); background: var(--blue-soft); color: var(--white); }
.condition-card strong { display: block; margin-bottom: 4px; }
.condition-card span { display: block; color: var(--text-muted); font-size: 12px; line-height: 1.5; }
label { color: var(--text-dim); font-size: 14px; font-weight: 650; display: block; margin-bottom: 7px; }
input, textarea, select {
  width: 100%;
  border: 1px solid #334155;
  background: var(--bg);
  color: var(--white);
  border-radius: 10px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, textarea:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.12); }
textarea { resize: vertical; min-height: 110px; }
.optional { color: var(--text-muted); font-weight: 500; }
.form-row.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); font-size: 13px; line-height: 1.45; cursor: pointer; }
.checkbox-row input { width: 18px; height: 18px; margin-top: 2px; flex: none; }
.form-actions { display: flex; gap: 10px; justify-content: space-between; padding-top: 4px; }
.next-steps-card { margin-top: 18px; }
.next-steps-card ol { margin: 0; padding-left: 20px; color: var(--text-dim); font-size: 13px; display: grid; gap: 8px; }

.framework-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; padding-block: 28px; }
.framework-strip article { border: 1px solid rgba(0, 122, 255, 0.22); background: rgba(0, 122, 255, 0.055); border-radius: 16px; padding: 16px; }
.framework-strip strong { display: block; color: var(--white); }
.framework-strip span { display: block; color: var(--text-muted); font-size: 13px; }

.section h2 { font-size: clamp(34px, 4vw, 52px); margin-bottom: 22px; }
.section h2 span { color: var(--blue); font-style: italic; }
.section p { color: var(--text-muted); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.split-section, .image-copy, .clinician-section, .about-section, .fit-section { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 54px; align-items: center; }
.cards-grid { display: grid; gap: 18px; }
.cards-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.number-card, .service-card, .process-card, .trust-card, .objection-card, .media-card, .service-link, .step-grid article {
  border: 1px solid var(--line);
  background: rgba(11, 19, 32, 0.64);
  border-radius: 18px;
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.number-card span { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 999px; background: var(--blue-soft); color: var(--blue); font-weight: 800; margin-bottom: 14px; }
.service-link:hover, .service-card:hover, .process-card:hover { border-color: rgba(0, 122, 255, 0.55); background: var(--panel); transform: translateY(-2px); }
.service-link h3, .service-card h3, .process-card h3, .trust-card h3, .objection-card h3, .step-grid h3 { color: var(--white); margin: 0 0 10px; font-size: 21px; }
.service-link p, .service-card p, .process-card p, .trust-card p, .objection-card p, .step-grid p { color: var(--text-muted); font-size: 14px; margin: 0; }
.service-link span { display: inline-block; color: var(--blue); margin-top: 18px; font-size: 14px; font-weight: 700; }
.process-card small { color: var(--blue); font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-weight: 800; display: block; margin-bottom: 12px; }
.service-icon { color: var(--blue); font-size: 32px; margin-bottom: 18px; }
.fit-section { align-items: stretch; }
.fit-card, .urgent-card { border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--line); background: rgba(11, 19, 32, 0.75); }
.urgent-card { border-color: rgba(239, 68, 68, 0.35); background: var(--red-soft); }
.urgent-card h2 { font-size: clamp(28px, 3vw, 40px); }
.urgent-card ul { padding-left: 20px; color: var(--text); }
.urgent-card li { margin-bottom: 10px; }
.image-wrap { position: relative; }
.image-wrap::before { content: ""; position: absolute; inset: 0; background: linear-gradient(45deg, rgba(0,122,255,.18), transparent); border-radius: 22px; transform: translate(-14px, 14px); }
.image-wrap img { position: relative; border: 1px solid var(--line); border-radius: 22px; height: 500px; width: 100%; object-fit: cover; filter: grayscale(16%); }
.image-badge { position: absolute; right: -12px; bottom: 24px; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 15px 18px; box-shadow: var(--shadow); }
.image-badge strong { display: block; color: var(--white); }
.image-badge small { color: var(--text-muted); }
.comparison-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.comparison-grid article { border: 1px solid var(--line); background: rgba(6, 12, 23, 0.75); border-radius: 18px; padding: 26px; }
.comparison-grid .highlight-card { border-color: rgba(0, 122, 255, 0.32); background: rgba(11, 19, 32, 0.95); box-shadow: 0 0 30px rgba(0,122,255,0.08); }
.comparison-grid h3 { color: var(--white); margin-top: 0; }
.clinician-card { border: 1px solid var(--line); background: rgba(11, 19, 32, 0.78); border-radius: var(--radius-lg); padding: 32px; }
.photo-placeholder { display: grid; place-items: center; aspect-ratio: 1; background: var(--bg); border: 1px solid var(--line); border-radius: 20px; color: rgba(0, 122, 255, 0.55); font-size: 72px; margin-bottom: 20px; }
.clinician-card h3 { color: var(--white); font-family: var(--serif); font-size: 28px; margin: 0 0 8px; }
.media-card { color: var(--text); }
.section-note { text-align: center; color: var(--text-muted); font-size: 12px; margin-top: 22px; }
.step-grid article { text-align: center; }
.step-grid div { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 999px; background: var(--blue-soft); color: var(--blue); font-weight: 800; margin-bottom: 16px; }
.map-placeholder { display: grid; place-items: center; text-align: center; min-height: 310px; border: 1px solid var(--line); border-radius: 20px; background: rgba(11, 19, 32, 0.76); padding: 28px; }
.map-placeholder span { color: var(--blue); font-size: 48px; }
.map-placeholder strong { color: var(--white); margin-top: 8px; }
.faq-section .section-head { margin-bottom: 30px; }
.faq-list { display: grid; gap: 12px; max-width: 850px; margin: 0 auto; }
details { border: 1px solid var(--line); border-radius: 16px; background: rgba(11, 19, 32, 0.62); overflow: hidden; }
summary { cursor: pointer; color: var(--white); padding: 20px 22px; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "⌄"; color: var(--blue); transition: transform .2s ease; }
details[open] summary::after { transform: rotate(180deg); }
details p { padding: 0 22px 20px; border-top: 1px solid var(--line-soft); margin: 0; padding-top: 16px; }
.final-cta > div { text-align: center; border: 1px solid rgba(0,122,255,0.22); background: linear-gradient(135deg, #0b1320, rgba(0, 26, 61, 0.28)); border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 64px); position: relative; overflow: hidden; }
.final-cta p { max-width: 680px; margin: 0 auto 28px; font-size: 19px; color: var(--text); }
.cta-notes { margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; color: var(--text-muted); font-size: 14px; }
.site-footer { border-top: 1px solid var(--line-soft); padding: 42px 0 92px; background: rgba(6,12,23,0.8); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; }
.site-footer h2 { font-size: 32px; margin-bottom: 16px; }
.site-footer p { color: var(--text-muted); margin: 8px 0; }
.site-footer a:hover { color: var(--white); }
.footer-note { max-width: 440px; text-align: right; }
.mobile-cta { display: none; }
.hidden { display: none !important; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; }
  .sticky-col { position: static; }
  .cards-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  body { padding-bottom: 76px; }
  .container { width: min(100% - 32px, var(--container)); }
  .section, .section-lg { padding-block: 56px; }
  .nav { padding-block: 22px; }
  .nav-actions { display: none; }
  .brand small { font-size: 9px; letter-spacing: .1em; }
  .hero h1 { font-size: 44px; }
  .hero-accent { font-size: 29px; }
  .booking-card { padding: 22px; }
  .booking-card h2 { font-size: 34px; }
  .condition-grid, .cards-grid.two, .cards-grid.three, .cards-grid.four, .comparison-grid, .split-section, .image-copy, .clinician-section, .about-section, .fit-section, .framework-strip { grid-template-columns: 1fr; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .image-wrap img { height: 360px; }
  .image-badge { display: none; }
  .footer-grid { display: grid; }
  .footer-note { text-align: left; }
  .mobile-cta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    z-index: 99;
    left: 0;
    right: 0;
    bottom: 0;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(6, 12, 23, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }
  .mobile-cta a {
    display: grid;
    place-items: center;
    gap: 2px;
    border: 1px solid var(--line);
    background: var(--panel);
    color: var(--text);
    border-radius: 10px;
    padding: 7px 6px;
    font-size: 18px;
  }
  .mobile-cta a span { display: block; font-size: 12px; }
  .mobile-cta .primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
}

@media (max-width: 420px) {
  .hero-actions .btn, .form-actions .btn { width: 100%; }
  .form-actions { flex-direction: column; }
  .pathway-chip { width: 100%; text-align: center; }
}
