/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Tokens ───────────────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --navy:        #1A2E4A;
  --navy-deep:   #0F1E30;
  --navy-mid:    #223556;
  --teal:        #007A87;
  --teal-dark:   #005F6A;
  --teal-xlight: #EBF6F7;
  --gold:        #C89B2F;
  --gold-light:  #F9F3E3;
  --gold-pale:   #FDF9F0;

  /* Neutrals */
  --white:       #FFFFFF;
  --warm-white:  #FAF9F7;
  --grey-50:     #F5F4F2;
  --grey-100:    #ECEAE7;
  --grey-200:    #D5D2CE;
  --grey-400:    #9B9690;
  --grey-600:    #6B6560;
  --grey-800:    #2E2B28;
  --ink:         #1C1917;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing scale (4px base) */
  --sp-1:  4px;  --sp-2:  8px;  --sp-3:  12px; --sp-4:  16px;
  --sp-5:  20px; --sp-6:  24px; --sp-8:  32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  /* Layout */
  --max-w:    1120px;
  --radius:   4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(15,30,48,.06), 0 1px 2px rgba(15,30,48,.04);
  --shadow-md:  0 4px 16px rgba(15,30,48,.08), 0 2px 6px rgba(15,30,48,.05);
  --shadow-lg:  0 12px 40px rgba(15,30,48,.12), 0 4px 12px rgba(15,30,48,.06);
}

/* ── Base ─────────────────────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── Typography scale ─────────────────────────────────────────────────────── */
.t-display {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.025em;
}
.t-display-md {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
}
.t-display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.015em;
}
.t-eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.t-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--grey-600);
}
.t-body { font-size: .9375rem; line-height: 1.7; color: var(--grey-600); }
.t-small { font-size: .8125rem; line-height: 1.6; }
.t-label { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* ── Container ────────────────────────────────────────────────────────────── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-body); font-size: .875rem; font-weight: 600;
  padding: 13px 28px; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer;
  transition: all .15s ease; white-space: nowrap; letter-spacing: .01em;
}
.btn-primary   { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn-navy      { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn-outline   { background: transparent; color: var(--navy); border-color: var(--grey-200); }
.btn-outline:hover { border-color: var(--navy); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }
.btn-text      { background: transparent; color: var(--teal); border-color: transparent; padding-left: 0; padding-right: 0; }
.btn-text:hover { color: var(--navy); }
.btn-text .arr { transition: transform .15s; }
.btn-text:hover .arr { transform: translateX(4px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* NAV                                                                         */
/* ─────────────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-100);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 64px;
}
.nav-brand { display: flex; align-items: center; gap: var(--sp-3); }
.nav-mark { width: 32px; height: 32px; }
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--navy); letter-spacing: -.02em;
}
.nav-wordmark span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: var(--sp-8); list-style: none; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--grey-600);
  transition: color .12s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links .active { font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: var(--sp-3); }

/* Proto banner */
.proto-bar {
  background: var(--navy-deep);
  padding: var(--sp-2) var(--sp-6);
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}
.proto-bar strong { color: #a78bfa; }
.proto-bar a { color: #7dd3fc; text-decoration: underline; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* HERO                                                                        */
/* ─────────────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy-deep);
  position: relative; overflow: hidden;
  padding: var(--sp-24) 0 0;
}
/* Dot-grid texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Teal radial glow */
.hero::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,122,135,.2) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.hero-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  position: relative; z-index: 1;
}
.hero-eyebrow { color: var(--gold); margin-bottom: var(--sp-6); }
.hero-headline { color: var(--white); }
.hero-headline em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--teal);
}
.hero-sub {
  color: rgba(255,255,255,.62);
  max-width: 560px;
  margin: var(--sp-6) 0 var(--sp-10);
  font-size: 1.075rem; line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }

/* Gold accent line */
.hero-divider {
  margin-top: var(--sp-20);
  display: flex; align-items: center; gap: var(--sp-6);
}
.hero-divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: .4;
}
.hero-divider-text { font-size: .78rem; color: rgba(255,255,255,.35); letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }

/* Briefing card strip */
.hero-briefing {
  margin-top: var(--sp-10);
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--sp-10) 0;
}
.hero-briefing-inner {
  max-width: var(--max-w);
  margin: 0 auto; padding: 0 var(--sp-6);
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.briefing-label { font-size: .8rem; color: rgba(255,255,255,.4); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }
.briefing-step { display: flex; gap: var(--sp-4); }
.briefing-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,122,135,.3); border: 1px solid rgba(0,122,135,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; color: var(--teal); flex-shrink: 0;
}
.briefing-step-text strong { display: block; font-size: .875rem; color: rgba(255,255,255,.85); margin-bottom: 2px; }
.briefing-step-text span { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.5; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* CLIENTS                                                                     */
/* ─────────────────────────────────────────────────────────────────────────── */
.clients { background: var(--warm-white); padding: var(--sp-10) 0; border-bottom: 1px solid var(--grey-100); }
.clients-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: var(--sp-10); flex-wrap: wrap;
}
.clients-label { color: var(--grey-400); white-space: nowrap; }
.clients-logos { display: flex; align-items: center; gap: var(--sp-10); flex-wrap: wrap; }
.client-logo {
  font-family: var(--font-body);
  font-size: .875rem; font-weight: 800;
  color: var(--grey-200); letter-spacing: .06em;
  text-transform: uppercase; white-space: nowrap;
  transition: color .2s;
}
.client-logo:hover { color: var(--grey-400); }

/* ─────────────────────────────────────────────────────────────────────────── */
/* STATS                                                                       */
/* ─────────────────────────────────────────────────────────────────────────── */
.stats {
  background: var(--white);
  padding: var(--sp-16) 0;
  border-bottom: 1px solid var(--grey-100);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--grey-100);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-cell {
  background: var(--white);
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: var(--navy); line-height: 1;
  letter-spacing: -.03em;
}
.stat-num span { color: var(--teal); }
.stat-desc { font-size: .8rem; color: var(--grey-400); margin-top: var(--sp-2); line-height: 1.5; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* ROUTER                                                                      */
/* ─────────────────────────────────────────────────────────────────────────── */
.router { padding: var(--sp-24) 0; background: var(--warm-white); }
.section-head { margin-bottom: var(--sp-12); }
.section-head .t-eyebrow { color: var(--teal); margin-bottom: var(--sp-3); }
.router-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-5); }
.router-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: var(--sp-10);
  display: flex; flex-direction: column;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  position: relative; overflow: hidden;
}
.router-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.router-card:hover { box-shadow: var(--shadow-md); border-color: var(--grey-200); transform: translateY(-2px); }
.router-card:hover::after { transform: scaleX(1); }
.router-num {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 700;
  color: var(--grey-100); line-height: 1; margin-bottom: var(--sp-6);
  letter-spacing: -.04em; user-select: none;
}
.router-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--navy); margin-bottom: var(--sp-3);
}
.router-card p { font-size: .875rem; color: var(--grey-600); line-height: 1.65; flex: 1; }
.router-link {
  margin-top: var(--sp-6);
  font-size: .8125rem; font-weight: 700;
  color: var(--teal); letter-spacing: .02em;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .15s;
}
.router-card:hover .router-link { gap: 10px; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* PULL QUOTE                                                                  */
/* ─────────────────────────────────────────────────────────────────────────── */
.pullquote {
  background: var(--navy);
  padding: var(--sp-20) 0;
  position: relative; overflow: hidden;
}
.pullquote::before {
  content: '\201C';
  position: absolute; top: -60px; left: 40px;
  font-family: var(--font-display); font-size: 28rem;
  color: rgba(255,255,255,.025); line-height: 1;
  pointer-events: none; user-select: none;
}
.pullquote-inner { max-width: 780px; }
.pullquote-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400; font-style: italic;
  color: var(--white); line-height: 1.45;
  margin-bottom: var(--sp-8);
}
.pullquote-attr { display: flex; align-items: center; gap: var(--sp-4); }
.pullquote-line { width: 32px; height: 1px; background: var(--gold); }
.pullquote-name { font-size: .875rem; font-weight: 600; color: rgba(255,255,255,.7); }

/* ─────────────────────────────────────────────────────────────────────────── */
/* FRAMEWORK                                                                   */
/* ─────────────────────────────────────────────────────────────────────────── */
.framework { padding: var(--sp-24) 0; background: var(--white); }
.framework-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-20); align-items: start; }
.framework-intro .t-eyebrow { color: var(--teal); margin-bottom: var(--sp-3); }
.framework-intro .t-display-md { color: var(--navy); margin-bottom: var(--sp-5); }
.framework-intro p { color: var(--grey-600); margin-bottom: var(--sp-8); line-height: 1.75; }
.framework-pills { display: flex; flex-direction: column; gap: var(--sp-3); }
.pill {
  display: grid; grid-template-columns: 52px 1fr;
  align-items: center; gap: var(--sp-5);
  padding: var(--sp-5) var(--sp-5);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  transition: all .18s;
  cursor: default;
}
.pill:hover { background: var(--teal-xlight); border-color: rgba(0,122,135,.2); }
.pill-letter {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; color: var(--teal);
  flex-shrink: 0; line-height: 1;
}
.pill:hover .pill-letter { background: var(--teal); color: var(--white); }
.pill-body h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.pill-body p { font-size: .8125rem; color: var(--grey-600); line-height: 1.55; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* TESTIMONIALS                                                                */
/* ─────────────────────────────────────────────────────────────────────────── */
.testimonials { padding: var(--sp-24) 0; background: var(--warm-white); }
.testimonials-head { margin-bottom: var(--sp-12); }
.testimonials-head .t-eyebrow { color: var(--teal); margin-bottom: var(--sp-3); }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-5); }
.test-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  display: flex; flex-direction: column;
}
.test-quote {
  font-family: var(--font-display);
  font-size: 1.05rem; font-style: italic;
  color: var(--navy); line-height: 1.6;
  flex: 1; margin-bottom: var(--sp-6);
}
.test-quote::before { content: '\201C'; color: var(--teal); margin-right: 2px; }
.test-meta { padding-top: var(--sp-5); border-top: 1px solid var(--grey-100); }
.test-name { font-size: .875rem; font-weight: 700; color: var(--navy); }
.test-role { font-size: .78rem; color: var(--grey-400); margin-top: 2px; }
.test-stat {
  margin-top: var(--sp-4);
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-pale);
  border: 1px solid rgba(200,155,47,.2);
  border-radius: var(--radius);
  padding: 5px 10px;
  font-size: .75rem; font-weight: 700; color: #7a5c00;
}
.test-stat::before { content: '↑'; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* ABOUT                                                                       */
/* ─────────────────────────────────────────────────────────────────────────── */
.about { padding: var(--sp-24) 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 400px 1fr; gap: var(--sp-20); align-items: center; }
.about-visual { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 7rem; color: rgba(255,255,255,.07);
  font-weight: 700; overflow: hidden;
}
.about-badge {
  position: absolute; bottom: var(--sp-5); right: calc(-1 * var(--sp-8));
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-md); padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: var(--sp-3);
}
.about-badge-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0,122,135,.15);
}
.about-badge-text { font-size: .78rem; font-weight: 700; color: var(--navy); line-height: 1.4; }
.about-badge-text span { color: var(--grey-400); font-weight: 400; display: block; }
.about-content .t-eyebrow { color: var(--teal); margin-bottom: var(--sp-3); }
.about-content .t-display-md { color: var(--navy); margin-bottom: var(--sp-5); }
.about-content .t-lead { margin-bottom: var(--sp-8); }
.creds { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-8); }
.cred {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: .875rem; color: var(--grey-600);
}
.cred-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-xlight); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 900; flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* CTA BAND                                                                    */
/* ─────────────────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--teal);
  padding: var(--sp-20) 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band .t-eyebrow { color: rgba(255,255,255,.6); margin-bottom: var(--sp-3); }
.cta-band .t-display-md { color: var(--white); margin-bottom: var(--sp-4); }
.cta-band p { color: rgba(255,255,255,.75); max-width: 520px; margin-bottom: var(--sp-10); font-size: 1.05rem; }
.cta-actions { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.cta-meta {
  display: flex; align-items: center; gap: var(--sp-8);
  margin-top: var(--sp-8); flex-wrap: wrap;
}
.cta-meta-item {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: .8rem; color: rgba(255,255,255,.55);
}
.cta-meta-item::before { content: '✓'; font-weight: 700; color: rgba(255,255,255,.4); }

/* ─────────────────────────────────────────────────────────────────────────── */
/* FOOTER                                                                      */
/* ─────────────────────────────────────────────────────────────────────────── */
.footer { background: var(--navy-deep); padding: var(--sp-16) 0 var(--sp-8); }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--sp-12); padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: var(--sp-8);
}
.footer-brand .nav-wordmark { color: var(--white); font-size: 1.15rem; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.4); margin-top: var(--sp-4); line-height: 1.65; }
.footer-col h4 {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: var(--sp-5);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col ul a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color .12s; }
.footer-col ul a:hover { color: rgba(255,255,255,.85); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--sp-4); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-accred { display: flex; gap: var(--sp-5); }
.footer-accred span { font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.2); }

/* ─────────────────────────────────────────────────────────────────────────── */
/* MEDICAL PAGE                                                                */
/* ─────────────────────────────────────────────────────────────────────────── */
.med-hero {
  background: var(--navy-deep);
  padding: var(--sp-24) 0 var(--sp-20);
  position: relative; overflow: hidden;
}
.med-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.med-hero-grid {
  display: grid; grid-template-columns: 1fr 360px;
  gap: var(--sp-16); align-items: center;
  position: relative; z-index: 1;
}
.med-chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: rgba(0,122,135,.18); border: 1px solid rgba(0,122,135,.35);
  border-radius: 100px; padding: 5px 14px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: var(--sp-6);
}
.med-chip::before { content: '🏥'; font-size: .9rem; }
.med-hero .t-display { color: var(--white); }
.med-hero .t-display em { font-style: italic; color: var(--teal); }
.med-hero-sub {
  color: rgba(255,255,255,.62); font-size: 1.05rem; line-height: 1.75;
  max-width: 540px; margin: var(--sp-6) 0 var(--sp-10);
}
.med-hero-tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-8); }
.med-tag {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: 5px 14px;
  font-size: .75rem; color: rgba(255,255,255,.55); font-weight: 500;
}
.med-hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: var(--sp-8); box-shadow: var(--shadow-lg);
}
.med-hero-card-head {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4); border-bottom: 1px solid var(--grey-100);
}
.inquiry-step { display: flex; gap: var(--sp-4); padding: var(--sp-4) 0; border-bottom: 1px solid var(--grey-50); }
.inquiry-step:last-of-type { border-bottom: none; margin-bottom: var(--sp-5); }
.inquiry-n {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; flex-shrink: 0;
}
.inquiry-t strong { display: block; font-size: .875rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.inquiry-t span { font-size: .78rem; color: var(--grey-400); line-height: 1.5; }

/* Faculty */
.faculty { padding: var(--sp-24) 0; background: var(--white); }
.faculty-grid { display: grid; grid-template-columns: 340px 1fr; gap: var(--sp-20); align-items: start; }
.faculty-photo-wrap { position: sticky; top: 84px; }
.faculty-img {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.faculty-img-ph { font-family: var(--font-display); font-size: 5rem; color: rgba(255,255,255,.08); font-weight: 700; }
.faculty-creds-stack { display: flex; flex-direction: column; gap: var(--sp-2); }
.faculty-cred {
  background: var(--warm-white); border: 1px solid var(--grey-100);
  border-radius: var(--radius); padding: var(--sp-3) var(--sp-4);
  font-size: .8rem; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: var(--sp-3);
}
.faculty-cred::before { content: '✦'; color: var(--teal); font-size: .6rem; }
.faculty-content .t-eyebrow { color: var(--teal); margin-bottom: var(--sp-2); }
.faculty-content .t-display-md { color: var(--navy); margin-bottom: var(--sp-1); }
.faculty-specialty { font-size: 1rem; font-weight: 600; color: var(--teal); margin-bottom: var(--sp-8); }
.faculty-blockquote {
  background: var(--teal-xlight);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--sp-6) var(--sp-8); margin-bottom: var(--sp-8);
}
.faculty-blockquote p {
  font-family: var(--font-display); font-size: 1.1rem; font-style: italic;
  color: var(--navy); line-height: 1.6; margin-bottom: var(--sp-4);
}
.faculty-blockquote cite { font-size: .78rem; font-weight: 700; color: var(--teal); font-style: normal; }
.faculty-bio { font-size: .9375rem; color: var(--grey-600); line-height: 1.75; }

/* Med proof */
.med-proof { padding: var(--sp-24) 0; background: var(--warm-white); }
.med-proof-card {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg); padding: var(--sp-12);
  display: grid; grid-template-columns: 1fr 220px; gap: var(--sp-12); align-items: center;
}
.med-proof-org { font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-200); margin-bottom: var(--sp-4); }
.med-proof-quote { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--navy); line-height: 1.6; margin-bottom: var(--sp-4); }
.med-proof-cite { font-size: .8125rem; font-weight: 700; color: var(--grey-400); }
.med-stat-box { text-align: center; background: var(--navy); border-radius: var(--radius-md); padding: var(--sp-10) var(--sp-6); }
.med-stat-num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 700; color: var(--gold); line-height: 1; letter-spacing: -.03em; }
.med-stat-label { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: var(--sp-2); line-height: 1.5; }

/* Offerings */
.med-offerings { padding: var(--sp-24) 0; background: var(--white); }
.offerings-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-5); }
.offering {
  border: 1px solid var(--grey-100); border-radius: var(--radius-md);
  padding: var(--sp-8); transition: all .2s;
}
.offering:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.offering-icon {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--teal-xlight); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: var(--sp-5);
}
.offering h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: var(--sp-3); }
.offering p { font-size: .875rem; color: var(--grey-600); line-height: 1.65; }
.offering-badge {
  margin-top: var(--sp-5); display: inline-flex;
  background: var(--gold-light); border: 1px solid rgba(200,155,47,.25);
  border-radius: var(--radius); padding: 4px 10px;
  font-size: .72rem; font-weight: 700; color: #7a5c00; letter-spacing: .04em; text-transform: uppercase;
}
.cme-note {
  margin-top: var(--sp-10); padding: var(--sp-8);
  background: var(--warm-white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
}
.cme-note .t-eyebrow { color: var(--navy); margin-bottom: var(--sp-3); }
.cme-note p { font-size: .875rem; color: var(--grey-600); line-height: 1.7; }
.cme-note strong { color: var(--navy); }

/* Med CTA */
.med-cta {
  background: var(--navy);
  padding: var(--sp-20) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.med-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 24px 24px;
}
.med-cta-inner { position: relative; z-index: 1; }
.med-cta .t-eyebrow { color: var(--teal); margin-bottom: var(--sp-3); }
.med-cta .t-display-md { color: var(--white); margin-bottom: var(--sp-4); }
.med-cta p { color: rgba(255,255,255,.65); max-width: 500px; margin: 0 auto var(--sp-10); font-size: 1rem; }
.proposal-track {
  display: flex; justify-content: center; align-items: center;
  gap: 0; margin-top: var(--sp-10); flex-wrap: wrap;
}
.proposal-node { text-align: center; padding: 0 var(--sp-8); }
.proposal-node-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,122,135,.3); border: 1px solid rgba(0,122,135,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: var(--teal);
  margin: 0 auto var(--sp-3);
}
.proposal-node p { font-size: .8rem; color: rgba(255,255,255,.5); max-width: 120px; margin: 0 auto; line-height: 1.45; }
.proposal-connector { width: 60px; height: 1px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* RESPONSIVE                                                                  */
/* ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-briefing-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .router-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .framework-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: var(--sp-5); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .med-hero-grid { grid-template-columns: 1fr; }
  .med-hero-card { display: none; }
  .faculty-grid { grid-template-columns: 1fr; }
  .faculty-photo-wrap { position: static; }
  .faculty-img { aspect-ratio: 16/9; }
  .med-proof-card { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .router-grid, .test-grid, .offerings-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .hero-briefing-inner { grid-template-columns: 1fr; }
  .clients-inner { flex-direction: column; align-items: flex-start; gap: var(--sp-4); }
  .footer-grid { grid-template-columns: 1fr; }
  .proposal-connector { display: none; }
  .pullquote::before { font-size: 14rem; }
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* NAV DROPDOWN                                                                */
/* ─────────────────────────────────────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dropdown > a::after { content: '▾'; font-size: .65rem; opacity: .5; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: -12px;
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-md); padding: var(--sp-2);
  min-width: 240px; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transform: translateY(6px); transition: all .15s ease;
  z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.nav-dd-item {
  display: block; padding: 10px 12px;
  border-radius: var(--radius); transition: background .1s;
}
.nav-dd-item:hover { background: var(--warm-white); }
.nav-dd-item strong { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); }
.nav-dd-item span { font-size: .775rem; color: var(--grey-400); margin-top: 1px; display: block; }
.nav-dd-divider { height: 1px; background: var(--grey-100); margin: var(--sp-2) 0; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* PAGE HERO (interior pages)                                                  */
/* ─────────────────────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy-deep);
  padding: var(--sp-20) 0 var(--sp-16);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,122,135,.15) 0%, transparent 70%);
  top: -150px; right: -100px; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: .78rem; color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-5);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.4); transition: color .12s; }
.page-hero .breadcrumb a:hover { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.25); }
.page-hero .t-eyebrow { color: var(--gold); margin-bottom: var(--sp-4); }
.page-hero .t-display-md { color: var(--white); margin-bottom: var(--sp-5); max-width: 680px; }
.page-hero .t-lead { color: rgba(255,255,255,.65); max-width: 580px; }
.page-hero-actions { display: flex; gap: var(--sp-4); margin-top: var(--sp-8); flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* ABOUT PAGE                                                                  */
/* ─────────────────────────────────────────────────────────────────────────── */
.about-story { padding: var(--sp-24) 0; background: var(--white); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-20); align-items: start; }
.story-img {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 8rem;
  color: rgba(255,255,255,.06); font-weight: 700;
  position: sticky; top: 84px;
}
.story-content .t-eyebrow { color: var(--teal); margin-bottom: var(--sp-3); }
.story-content .t-display-md { color: var(--navy); margin-bottom: var(--sp-6); }
.story-content p { color: var(--grey-600); line-height: 1.8; margin-bottom: var(--sp-5); font-size: .9375rem; }
.story-content p:last-of-type { margin-bottom: var(--sp-8); }

.values-section { padding: var(--sp-20) 0; background: var(--warm-white); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-5); margin-top: var(--sp-12); }
.value-card {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-md); padding: var(--sp-8);
}
.value-icon { font-size: 1.6rem; margin-bottom: var(--sp-4); }
.value-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: var(--sp-2); }
.value-card p { font-size: .875rem; color: var(--grey-600); line-height: 1.65; }

.accreditations { padding: var(--sp-20) 0; background: var(--white); border-top: 1px solid var(--grey-100); }
.accred-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-5); margin-top: var(--sp-12); }
.accred-card {
  border: 1px solid var(--grey-100); border-radius: var(--radius-md);
  padding: var(--sp-8); text-align: center;
}
.accred-badge {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  margin: 0 auto var(--sp-4);
}
.accred-card h3 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: var(--sp-2); }
.accred-card p { font-size: .8rem; color: var(--grey-400); line-height: 1.6; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* PROGRAMS HUB                                                                */
/* ─────────────────────────────────────────────────────────────────────────── */
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); margin-top: var(--sp-5); }
.program-card {
  border: 1px solid var(--grey-100); border-radius: var(--radius-lg);
  padding: var(--sp-10); position: relative; overflow: hidden;
  transition: all .2s; display: flex; flex-direction: column;
}
.program-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.program-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.accent-teal { background: var(--teal); }
.accent-navy { background: var(--navy); }
.accent-gold { background: var(--gold); }
.accent-teal-light { background: linear-gradient(90deg, var(--teal), var(--navy)); }
.program-tag {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--teal-xlight); color: var(--teal);
  border-radius: 100px; padding: 4px 12px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.program-card h2 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: var(--sp-3); }
.program-card > p { font-size: .875rem; color: var(--grey-600); line-height: 1.65; flex: 1; margin-bottom: var(--sp-6); }
.program-meta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.program-meta-pill {
  background: var(--grey-50); border: 1px solid var(--grey-100);
  border-radius: 100px; padding: 4px 12px;
  font-size: .75rem; font-weight: 600; color: var(--grey-600);
}
.program-card .btn { align-self: flex-start; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* WORKSHOPS PAGE                                                              */
/* ─────────────────────────────────────────────────────────────────────────── */
.workshop-outcomes { padding: var(--sp-20) 0; background: var(--white); }
.outcome-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-5); margin-top: var(--sp-12); }
.outcome-card {
  padding: var(--sp-8); border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
}
.outcome-card h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: var(--sp-3); }
.outcome-card p { font-size: .875rem; color: var(--grey-600); line-height: 1.65; }
.outcome-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: var(--teal); opacity: .25; line-height: 1; margin-bottom: var(--sp-3);
}

.logistics-strip {
  background: var(--warm-white); border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100); padding: var(--sp-10) 0;
}
.logistics-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-1); }
.logistics-item {
  text-align: center; padding: var(--sp-6);
  border-right: 1px solid var(--grey-100);
}
.logistics-item:last-child { border-right: none; }
.logistics-icon { font-size: 1.4rem; margin-bottom: var(--sp-3); }
.logistics-val { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.logistics-label { font-size: .78rem; color: var(--grey-400); margin-top: 2px; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* CERTIFICATION PAGES                                                         */
/* ─────────────────────────────────────────────────────────────────────────── */
.cert-overview { padding: var(--sp-20) 0; background: var(--white); }
.cert-overview-grid { display: grid; grid-template-columns: 1fr 360px; gap: var(--sp-16); align-items: start; }

.curriculum-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: var(--sp-6); padding-bottom: var(--sp-8);
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute; left: 39px; top: 32px;
  width: 2px; bottom: 0;
  background: linear-gradient(to bottom, var(--teal), var(--grey-100));
}
.timeline-marker {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--teal); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--teal);
  margin: 0 auto; position: relative; z-index: 1; flex-shrink: 0;
}
.timeline-item.completed .timeline-marker { background: var(--teal); color: var(--white); }
.timeline-content h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: var(--sp-1); }
.timeline-content p { font-size: .8125rem; color: var(--grey-600); line-height: 1.55; }
.timeline-week { font-size: .72rem; color: var(--teal); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: var(--sp-1); }

.cert-card {
  background: var(--navy);
  border-radius: var(--radius-lg); padding: var(--sp-8);
  position: sticky; top: 84px; color: var(--white);
}
.cert-card-price {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: var(--sp-2);
}
.cert-card-price-note { font-size: .78rem; color: rgba(255,255,255,.45); margin-bottom: var(--sp-6); }
.cert-includes { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.cert-include-item {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  font-size: .8375rem; color: rgba(255,255,255,.75); line-height: 1.5;
}
.cert-include-item::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cert-card hr { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: var(--sp-5) 0; }
.cert-card .btn { width: 100%; justify-content: center; margin-bottom: var(--sp-3); }
.cert-card-note { font-size: .75rem; color: rgba(255,255,255,.35); text-align: center; line-height: 1.5; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* FAQ                                                                         */
/* ─────────────────────────────────────────────────────────────────────────── */
.faq-section { padding: var(--sp-20) 0; background: var(--warm-white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); margin-top: var(--sp-10); }
.faq-item {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-md); padding: var(--sp-6);
}
.faq-item h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: var(--sp-3); }
.faq-item p { font-size: .875rem; color: var(--grey-600); line-height: 1.65; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* TESTIMONIALS PAGE                                                           */
/* ─────────────────────────────────────────────────────────────────────────── */
.results-stats { padding: var(--sp-16) 0; background: var(--navy); }
.results-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-8); }
.result-stat { text-align: center; }
.result-stat-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: var(--sp-2);
}
.result-stat-label { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.5; }

.testimonials-full { padding: var(--sp-24) 0; background: var(--warm-white); }
.test-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-5); }
.test-featured {
  grid-column: 1 / -1;
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg); padding: var(--sp-12);
  display: grid; grid-template-columns: 1fr 1px 1fr; gap: var(--sp-10); align-items: center;
}
.test-featured-divider { background: var(--grey-100); width: 1px; }
.test-featured-quote {
  font-family: var(--font-display); font-size: 1.2rem; font-style: italic;
  color: var(--navy); line-height: 1.6; margin-bottom: var(--sp-5);
}
.test-featured-meta .test-name { font-size: .9rem; font-weight: 700; color: var(--navy); }
.test-featured-meta .test-role { font-size: .8rem; color: var(--grey-400); margin-top: 2px; }
.test-featured-stat-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
  color: var(--teal); line-height: 1;
}
.test-featured-stat-desc { font-size: .875rem; color: var(--grey-600); margin-top: var(--sp-2); line-height: 1.6; }

.sector-label {
  grid-column: 1 / -1; margin-top: var(--sp-8);
  display: flex; align-items: center; gap: var(--sp-4);
}
.sector-label-text { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-400); white-space: nowrap; }
.sector-label-line { flex: 1; height: 1px; background: var(--grey-100); }

/* ─────────────────────────────────────────────────────────────────────────── */
/* CONTACT / BOOKING PAGE                                                      */
/* ─────────────────────────────────────────────────────────────────────────── */
.contact-section { padding: var(--sp-24) 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 480px; gap: var(--sp-16); align-items: start; }
.contact-info .t-eyebrow { color: var(--teal); margin-bottom: var(--sp-3); }
.contact-info .t-display-md { color: var(--navy); margin-bottom: var(--sp-5); }
.contact-info .t-lead { margin-bottom: var(--sp-10); }
.contact-steps { display: flex; flex-direction: column; gap: var(--sp-5); }
.contact-step { display: flex; gap: var(--sp-5); }
.contact-step-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
}
.contact-step-body h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-step-body p { font-size: .8375rem; color: var(--grey-600); line-height: 1.6; }

.booking-form {
  background: var(--warm-white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg); padding: var(--sp-10);
  position: sticky; top: 84px;
}
.booking-form-title {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-5); border-bottom: 1px solid var(--grey-100);
}
.form-group { margin-bottom: var(--sp-4); }
.form-group label { display: block; font-size: .78rem; font-weight: 700; color: var(--navy); margin-bottom: var(--sp-2); letter-spacing: .02em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--grey-200); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .875rem; color: var(--ink);
  background: var(--white); transition: border-color .15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-submit { width: 100%; justify-content: center; margin-top: var(--sp-2); }
.form-note { font-size: .75rem; color: var(--grey-400); text-align: center; margin-top: var(--sp-4); line-height: 1.5; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* COACHING PAGE                                                               */
/* ─────────────────────────────────────────────────────────────────────────── */
.coaching-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-5); margin-top: var(--sp-12); }
.coaching-card {
  border: 1px solid var(--grey-100); border-radius: var(--radius-md);
  padding: var(--sp-8); transition: all .2s;
}
.coaching-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.coaching-card-icon { font-size: 1.6rem; margin-bottom: var(--sp-4); }
.coaching-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: var(--sp-3); }
.coaching-card p { font-size: .875rem; color: var(--grey-600); line-height: 1.65; }
.coaching-process { padding: var(--sp-20) 0; background: var(--warm-white); }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: var(--sp-5); margin-top: var(--sp-12); position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 24px; left: 10%; right: 10%; height: 1px;
  background: var(--grey-100);
}
.process-step { text-align: center; position: relative; }
.process-step-dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--teal);
  margin: 0 auto var(--sp-4);
  position: relative; z-index: 1; background: var(--white);
}
.process-step h4 { font-size: .875rem; font-weight: 700; color: var(--navy); margin-bottom: var(--sp-2); }
.process-step p { font-size: .8rem; color: var(--grey-600); line-height: 1.55; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* RESPONSIVE ADDITIONS                                                        */
/* ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .story-img { aspect-ratio: 4/3; position: static; }
  .values-grid, .accred-grid { grid-template-columns: 1fr 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .cert-overview-grid { grid-template-columns: 1fr; }
  .cert-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-form { position: static; }
  .test-full-grid { grid-template-columns: 1fr 1fr; }
  .test-featured { grid-template-columns: 1fr; }
  .test-featured-divider { display: none; }
  .results-stats-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .logistics-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .values-grid, .accred-grid, .outcome-grid, .coaching-grid { grid-template-columns: 1fr; }
  .test-full-grid { grid-template-columns: 1fr; }
  .results-stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .logistics-grid { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* HEALTHCARE SITE — cosmoadvantage.healthcare                                 */
/* ─────────────────────────────────────────────────────────────────────────── */

/* Nav overrides for healthcare site */
.nav .nav-inner { height: 72px; gap: var(--sp-8); }
.nav .nav-links { flex: 1; justify-content: center; }
.nav-wordmark-stack { display: flex; flex-direction: column; gap: 0; }
.nav-wordmark { white-space: nowrap; }
.nav-sub-label {
  font-family: var(--font-body);
  font-size: .6rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); line-height: 1; margin-top: 2px;
  white-space: nowrap;
}
.nav .nav-links { gap: var(--sp-6); }
.nav .nav-links a { white-space: nowrap; }
.btn-ghost-sm {
  background: transparent; color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.15);
  font-size: .78rem; padding: 7px 14px; border-radius: var(--radius);
  transition: all .15s;
}
.btn-ghost-sm:hover { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.3); }

/* Proto bar note */
.proto-note { color: rgba(255,200,60,.7); font-size: .72rem; }

/* Healthcare Hero */
.hc-hero { position: relative; }
.hc-hero-bg-cross {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 50%;
  background-image:
    linear-gradient(rgba(0,122,135,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,122,135,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hc-hero-tags {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  margin-top: var(--sp-10);
}
.hc-tag {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: 5px 14px;
  font-size: .75rem; color: rgba(255,255,255,.55); font-weight: 500;
}

/* Hero Stats Strip */
.hc-hero-strip {
  margin-top: var(--sp-16);
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--sp-8) 0;
}
.hc-hero-strip-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6);
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; gap: var(--sp-8);
}
.hc-strip-stat { text-align: center; }
.hc-strip-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700; color: var(--white);
  line-height: 1; letter-spacing: -.03em;
}
.hc-strip-num span { color: var(--teal); font-size: 1.4rem; }
.hc-strip-label { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 4px; line-height: 1.4; }
.hc-strip-divider { width: 1px; height: 48px; background: rgba(255,255,255,.1); }

/* Three Paths */
.hc-paths { padding: var(--sp-24) 0; background: var(--warm-white); }
.hc-paths-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-5); }
.hc-path-card {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg); padding: var(--sp-10);
  display: flex; flex-direction: column; position: relative;
  overflow: hidden; transition: all .2s;
}
.hc-path-card:hover { box-shadow: var(--shadow-md); border-color: var(--grey-200); }
.hc-path-featured { border-color: rgba(0,122,135,.25); background: var(--teal-xlight); }
.hc-path-featured:hover { border-color: var(--teal); }
.hc-path-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--teal);
}
.hc-path-icon { font-size: 1.8rem; margin-bottom: var(--sp-4); }
.hc-path-card h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  font-weight: 700; color: var(--navy); margin-bottom: var(--sp-3);
}
.hc-path-card p { font-size: .875rem; color: var(--grey-600); line-height: 1.65; margin-bottom: var(--sp-5); }
.hc-path-list {
  list-style: none; display: flex; flex-direction: column;
  gap: var(--sp-2); margin-bottom: var(--sp-8); flex: 1;
}
.hc-path-list li {
  font-size: .8375rem; color: var(--grey-600); line-height: 1.5;
  display: flex; gap: var(--sp-2); align-items: flex-start;
}
.hc-path-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* Dr. Francis CTA */
.hc-dr-cta { margin-top: var(--sp-8); }

/* Pricing Section */
.hc-pricing { padding: var(--sp-24) 0; background: var(--white); }

/* Intro two-col layout */
.hc-pricing-intro {
  display: grid; grid-template-columns: 1fr 280px;
  gap: var(--sp-12); align-items: start; margin-bottom: var(--sp-10);
}
.hc-pricing-anchor {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: var(--sp-8); text-align: center;
  position: sticky; top: 84px;
}
.hc-anchor-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: var(--sp-3);
}
.hc-anchor-price {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: var(--sp-3);
}
.hc-anchor-price span {
  font-family: var(--font-body); font-size: 1rem;
  font-weight: 400; color: rgba(255,255,255,.4);
}
.hc-anchor-note { font-size: .78rem; color: rgba(255,255,255,.4); line-height: 1.55; }

.hc-pricing-table {
  border: 1px solid var(--grey-100); border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: var(--sp-6);
}
.hc-pricing-header {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: var(--navy); padding: var(--sp-4) var(--sp-6);
}
.hc-pricing-col-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.hc-pricing-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: var(--sp-5) var(--sp-6); border-bottom: 1px solid var(--grey-100);
  align-items: center;
}
.hc-pricing-row strong { font-size: .9375rem; color: var(--navy); }
.hc-pricing-sub { font-size: .8375rem; color: var(--grey-400); }
.hc-pricing-proposal a {
  font-size: .8125rem; font-weight: 700; color: var(--teal);
  letter-spacing: .02em; transition: color .12s;
}
.hc-pricing-proposal a:hover { color: var(--navy); }

/* Included with License */
.hc-included {
  background: var(--warm-white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-md); padding: var(--sp-8); margin-bottom: var(--sp-8);
}
.hc-included-title {
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--grey-400); margin-bottom: var(--sp-5);
}
.hc-included-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3);
}
.hc-included-item {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  font-size: .875rem; color: var(--grey-600);
}
.hc-included-item span { font-weight: 700; color: var(--teal); flex-shrink: 0; }
.hc-included-item-no span { color: var(--grey-400); }
.hc-included-item-no { color: var(--grey-400); }
.hc-included-note {
  margin-top: var(--sp-5); padding-top: var(--sp-5);
  border-top: 1px solid var(--grey-100);
  font-size: .8125rem; color: var(--grey-400); line-height: 1.65;
}

/* Training Programs */
.hc-training { padding: var(--sp-24) 0; background: var(--warm-white); }
.hc-training-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.hc-training-card {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-md); padding: var(--sp-8);
  display: flex; flex-direction: column; transition: all .2s;
  position: relative;
}
.hc-training-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.hc-training-featured { border-color: rgba(0,122,135,.25); }
.hc-training-tag {
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 100px;
}
.hc-tag-featured { background: var(--teal); color: var(--white); }
.hc-training-name {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: var(--sp-1);
}
.hc-training-duration { font-size: .78rem; font-weight: 600; color: var(--teal); margin-bottom: var(--sp-4); }
.hc-training-card p { font-size: .8375rem; color: var(--grey-600); line-height: 1.65; flex: 1; margin-bottom: var(--sp-4); }
.hc-training-audience {
  font-size: .72rem; font-weight: 600; color: var(--grey-400);
  letter-spacing: .04em; margin-bottom: var(--sp-4);
}
.hc-training-price {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--navy); margin-bottom: var(--sp-5);
}
.hc-training-price span { font-family: var(--font-body); font-size: .78rem; font-weight: 400; color: var(--grey-400); }

/* CME Bar */
.hc-cme-bar {
  background: var(--gold-pale);
  border-top: 1px solid rgba(200,155,47,.2);
  border-bottom: 1px solid rgba(200,155,47,.2);
  padding: var(--sp-8) 0;
}
.hc-cme-inner {
  display: grid; grid-template-columns: 40px 1fr auto;
  gap: var(--sp-5); align-items: center;
}
.hc-cme-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; flex-shrink: 0;
}
.hc-cme-bar strong { display: block; font-size: .875rem; color: var(--navy); margin-bottom: 4px; }
.hc-cme-bar p { font-size: .8125rem; color: var(--grey-600); line-height: 1.6; }
.hc-cme-bar strong + p { margin-top: var(--sp-1); }
.hc-cme-btn { white-space: nowrap; flex-shrink: 0; }

/* Proof */
.hc-proof { padding: var(--sp-24) 0; background: var(--white); }
.hc-proof-card {
  background: var(--warm-white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg); padding: var(--sp-12);
  display: grid; grid-template-columns: 1fr 220px; gap: var(--sp-12); align-items: center;
}

/* Healthcare CTA */
.hc-cta {
  background: var(--navy-deep);
  padding: var(--sp-24) 0;
  text-align: center; position: relative; overflow: hidden;
}
.hc-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.hc-cta::after {
  content: '';
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,122,135,.12) 0%, transparent 70%);
  top: -300px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.hc-cta-inner { position: relative; z-index: 1; }
.hc-cta p { color: rgba(255,255,255,.65); max-width: 560px; margin: 0 auto; font-size: 1rem; line-height: 1.75; }
.hc-proposal-track {
  display: flex; justify-content: center; align-items: center;
  gap: 0; margin-top: var(--sp-12); flex-wrap: wrap;
}

/* Footer main-site link */
.hc-footer-main-link {
  display: inline-block; margin-top: var(--sp-4);
  font-size: .78rem; color: rgba(255,255,255,.3);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .15s;
}
.hc-footer-main-link:hover { color: rgba(255,255,255,.6); }

/* Btn white */
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--warm-white); }

/* ── Healthcare Responsive ── */
@media (max-width: 960px) {
  .hc-hero-strip-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .hc-strip-divider { display: none; }
  .hc-paths-grid { grid-template-columns: 1fr; }
  .hc-pricing-intro { grid-template-columns: 1fr; }
  .hc-pricing-anchor { position: static; }
  .hc-pricing-table .hc-pricing-row { grid-template-columns: 1fr 1fr; }
  .hc-included-grid { grid-template-columns: 1fr; }
  .hc-training-grid { grid-template-columns: 1fr 1fr; }
  .hc-proof-card { grid-template-columns: 1fr; }
  .hc-cme-inner { grid-template-columns: 40px 1fr; }
  .hc-cme-btn { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 640px) {
  .hc-hero-strip-inner { grid-template-columns: 1fr 1fr; }
  .hc-training-grid { grid-template-columns: 1fr; }
  .hc-pricing-row { grid-template-columns: 1fr; gap: var(--sp-1); }
  .hc-pricing-header { display: none; }
  .hc-proposal-track { flex-direction: column; }
  .proposal-connector { width: 1px; height: 32px; }
}
