/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1A2E4A;
  --teal:   #007A87;
  --teal-light: #E8F4F6;
  --gold:   #C89B2F;
  --gold-light: #FBF6E9;
  --white:  #FFFFFF;
  --off-white: #F7F8FA;
  --black:  #1A1A1A;
  --grey:   #555555;
  --grey-light: #E8EAED;
  --border: #D8DDE4;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --max-w: 1120px;
  --section-pad: 96px 24px;
  --section-pad-sm: 64px 24px;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(26,46,74,.08);
  --shadow-md: 0 4px 24px rgba(26,46,74,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ───────────────────────────────────────────────────────────── */
.display {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--navy);
}
.display-sm {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -.015em;
  color: var(--navy);
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
}
.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--grey);
}
.label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 14px 28px;
  cursor: pointer;
  transition: all .18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: #006470; border-color: #006470; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--teal);
  border-color: transparent;
  padding-left: 0;
}
.btn-ghost:hover { color: var(--navy); }
.btn-ghost .arrow { transition: transform .18s ease; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--off-white); }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -.01em;
}
.nav-logo-text span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--grey);
  transition: color .15s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links .active { color: var(--navy); font-weight: 600; }

.nav-cta { margin-left: 16px; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #0d1f33 0%, #1A2E4A 60%, #1d3a52 100%);
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,122,135,.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  color: var(--gold);
  margin-bottom: 20px;
}
.hero .display { color: var(--white); }
.hero .display em {
  font-style: normal;
  color: var(--teal);
  position: relative;
}
.hero-sub {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 24px 0 36px;
  max-width: 520px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.hero-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.briefing-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.briefing-item:last-child { border-bottom: none; }
.briefing-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,122,135,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .85rem;
}
.briefing-text { font-size: .875rem; color: rgba(255,255,255,.8); line-height: 1.5; }
.briefing-text strong { color: var(--white); display: block; font-size: .8rem; }

/* ── Proof bar ────────────────────────────────────────────────────────────── */
.proof-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.proof-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.proof-bar-label {
  white-space: nowrap;
  flex-shrink: 0;
}
.proof-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-logo {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 700;
  color: #8A96A3;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Stats strip ──────────────────────────────────────────────────────────── */
.stats {
  background: var(--navy);
  padding: 48px 24px;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: 6px; }

/* ── Audience router ──────────────────────────────────────────────────────── */
.router { padding: var(--section-pad); background: var(--white); }
.router-head { text-align: center; margin-bottom: 48px; }
.router-head .display-sm { margin-top: 12px; }
.router-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.router-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all .2s ease;
  position: relative;
  overflow: hidden;
}
.router-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.router-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.router-card:hover::before { transform: scaleX(1); }
.router-card:hover .router-card-link { color: var(--navy); }

.router-icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.router-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.router-card p { font-size: .9rem; color: var(--grey); line-height: 1.6; margin-bottom: 20px; }
.router-card-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
}

/* ── About section ────────────────────────────────────────────────────────── */
.about { padding: var(--section-pad); background: var(--off-white); }
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.about-photo-placeholder {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(255,255,255,.25);
}
.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge-icon { font-size: 1.6rem; }
.about-badge-text { font-size: .8rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.about-badge-text span { color: var(--grey); font-weight: 400; display: block; }

.about-content .eyebrow { margin-bottom: 12px; }
.about-content .display-sm { margin-bottom: 20px; }
.about-content .lead { margin-bottom: 28px; }
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--grey);
}
.credential::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.testimonials { padding: var(--section-pad); background: var(--white); }
.testimonials-head { text-align: center; margin-bottom: 48px; }
.testimonials-head .display-sm { margin-top: 12px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--navy);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-quote::before { content: '\201C'; color: var(--teal); font-size: 2rem; line-height: 0; vertical-align: -.4em; margin-right: 2px; }
.testimonial-meta { border-top: 1px solid var(--border); padding-top: 20px; }
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testimonial-role { font-size: .8rem; color: var(--grey); margin-top: 2px; }
.testimonial-stat {
  margin-top: 14px;
  background: var(--gold-light);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: .82rem;
  font-weight: 700;
  color: #8a6a00;
}

/* ── COSMO framework ──────────────────────────────────────────────────────── */
.framework { padding: var(--section-pad); background: var(--navy); }
.framework-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.framework-intro .eyebrow { color: var(--gold); margin-bottom: 16px; }
.framework-intro .display-sm { color: var(--white); margin-bottom: 20px; }
.framework-intro p { color: rgba(255,255,255,.7); margin-bottom: 32px; }

.cosmo-pills {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cosmo-pill {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: background .2s;
}
.cosmo-pill:hover { background: rgba(0,122,135,.15); }
.cosmo-letter {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  min-width: 28px;
}
.cosmo-pill-text h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.cosmo-pill-text p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ── CTA section ──────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, #005f6b 100%);
  padding: var(--section-pad-sm);
  text-align: center;
}
.cta-section .display-sm { color: var(--white); margin: 12px 0 16px; }
.cta-section .eyebrow { color: rgba(255,255,255,.7); }
.cta-section p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.briefing-details {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.briefing-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}
.briefing-detail-icon { font-size: 1rem; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: #0f1e30;
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer-brand .nav-logo-text { color: var(--white); font-size: 1.1rem; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.5); margin-top: 12px; line-height: 1.6; }
.footer-col h4 { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-creds { display: flex; gap: 16px; }

/* ── Medical page specifics ───────────────────────────────────────────────── */
.med-hero {
  background: linear-gradient(160deg, #0a1a2e 0%, #1A2E4A 50%, #0e2a3d 100%);
  padding: 100px 24px 80px;
  position: relative;
}
.med-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(0,122,135,.15) 0%, transparent 55%);
  pointer-events: none;
}
.med-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.med-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,122,135,.2);
  border: 1px solid rgba(0,122,135,.3);
  border-radius: 100px;
  padding: 6px 16px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.med-hero .display { color: var(--white); max-width: 680px; }
.med-hero .display em { font-style: normal; color: var(--teal); }
.med-hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 24px 0 40px;
  line-height: 1.7;
}
.med-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.med-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.med-meta-icon { font-size: 1rem; }

.faculty { padding: var(--section-pad); background: var(--white); }
.faculty-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.faculty-photo {
  position: sticky;
  top: 88px;
}
.faculty-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #0d1f33 0%, #1A2E4A 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}
.faculty-img-placeholder {
  font-size: 6rem;
  color: rgba(255,255,255,.15);
}
.faculty-credential-pills {
  display: flex; flex-direction: column; gap: 8px;
}
.faculty-cred-pill {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.faculty-cred-pill::before { content: '🏥'; font-size: .9rem; }

.faculty-content .eyebrow { margin-bottom: 8px; }
.faculty-content .display-sm { margin-bottom: 6px; }
.faculty-specialty {
  font-size: 1rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 24px;
}
.faculty-quote {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-bottom: 28px;
}
.faculty-quote p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
}
.faculty-quote cite {
  display: block;
  margin-top: 12px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--teal);
  font-style: normal;
}
.faculty-bio { color: var(--grey); line-height: 1.7; font-size: .95rem; }

.med-proof { padding: var(--section-pad); background: var(--off-white); }
.med-proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.med-proof-head { margin-bottom: 48px; }
.med-proof-head .display-sm { margin-top: 12px; }
.med-proof-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
  margin-bottom: 24px;
}
.med-proof-org {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: #8A96A3;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.med-proof-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 16px;
}
.med-proof-cite { font-size: .85rem; font-weight: 700; color: var(--grey); }
.med-proof-stat {
  text-align: center;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}
.med-proof-stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.med-proof-stat-desc { font-size: .82rem; color: rgba(255,255,255,.65); margin-top: 8px; line-height: 1.5; }

.med-offerings { padding: var(--section-pad); background: var(--white); }
.med-offerings-inner { max-width: var(--max-w); margin: 0 auto; }
.med-offerings-head { margin-bottom: 48px; }
.med-offerings-head .display-sm { margin-top: 12px; }
.offering-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offering-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.offering-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.offering-card h3 { font-family: var(--font-serif); font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.offering-card p { font-size: .875rem; color: var(--grey); line-height: 1.6; }
.offering-tag {
  display: inline-block;
  margin-top: 14px;
  background: var(--gold-light);
  color: #8a6a00;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 4px 10px;
}

.med-cta {
  background: var(--navy);
  padding: var(--section-pad-sm);
  text-align: center;
}
.med-cta .display-sm { color: var(--white); margin: 12px 0 16px; }
.med-cta .eyebrow { color: var(--teal); }
.med-cta p { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 36px; }
.proposal-steps {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.proposal-step { text-align: center; }
.proposal-step-num {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 8px;
}
.proposal-step p { font-size: .82rem; color: rgba(255,255,255,.6); }

/* ── Prototype banner ─────────────────────────────────────────────────────── */
.proto-banner {
  background: #1a0a2e;
  padding: 10px 24px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  position: relative;
  z-index: 200;
}
.proto-banner strong { color: #a78bfa; }
.proto-banner a { color: #7dd3fc; text-decoration: underline; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner, .about-inner, .framework-inner,
  .faculty-inner, .med-proof-card { grid-template-columns: 1fr; gap: 40px; }
  .router-grid, .testimonial-grid, .offering-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .faculty-photo { position: static; }
  .hero-inner > div:last-child { display: none; }
}
@media (max-width: 600px) {
  .router-grid, .testimonial-grid, .offering-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .proof-logos { gap: 24px; }
  .footer-top { grid-template-columns: 1fr; }
}
