/* ===== WhatsApp floating button ===== */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 26px rgba(0,0,0,0.32); }
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.55;
  animation: whatsapp-pulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 720px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ===== ApolloEd — Brand tokens ===== */
:root {
  --navy: #000a42;
  --navy-light: #131c56;
  --navy-soft: #f2f3f8;
  --gold: #f0bb4c;
  --gold-dark: #d89f2e;
  --ink: #1c1f2e;
  --gray: #5b5f73;
  --gray-light: #8a8ea3;
  --bg: #ffffff;
  --bg-alt: #f7f8fb;
  --border: #e6e8f0;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0, 10, 66, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 10, 66, 0.14);
  --serif: "League Spartan", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { color: var(--gray); }

.eyebrow {
  display: inline-block;
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.site-header.header-hidden {
  transform: translateY(-100%);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #000a42 1.1px, transparent 1.1px);
  background-repeat: repeat;
  background-size: 18px 18px;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}
.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 132px; width: auto; }
.brand span {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}
.brand span em { color: var(--gold-dark); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-dark); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  background-image:
    linear-gradient(180deg, rgba(0,10,66,0.35) 0%, rgba(0,10,66,0.82) 60%, var(--navy) 100%),
    url("../assets/hero-graduation.jpg");
  background-size: cover, cover;
  background-position: center, center 25%;
  background-repeat: no-repeat, no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(240,187,76,0.25) 0%, rgba(240,187,76,0) 70%);
}
.hero-inner {
  padding: 96px 0 84px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero .eyebrow { margin-bottom: 18px; }
.eyebrow-lg { font-size: 1.15rem; letter-spacing: 0.06em; }
.hero p.lead {
  font-family: var(--serif);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
  max-width: 480px;
}
.hero-stats div { border-left: 2px solid rgba(240,187,76,0.5); padding-left: 12px; }
.hero-stats strong { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--gold); }
.hero-stats span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-card h3 { color: #fff; margin-bottom: 14px; }
.hero-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 0.94rem;
}
.hero-card ul li:first-child { border-top: none; }
.hero-card ul li .tick { color: var(--gold); font-weight: 700; }

/* ===== Sections ===== */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head p { font-family: var(--serif); font-weight: 500; margin-top: 12px; }
.bg-alt { background: var(--bg-alt); }

/* Services grid */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.94rem; }

/* Founder */
.founder-header {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  max-width: 720px; margin: 0 auto 22px;
}
.founder-avatar {
  width: 148px; height: 148px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 3px solid var(--gold);
}
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.founder-title { color: var(--gold-dark); font-weight: 600; margin-top: 2px; }
.founder-story { max-width: 720px; margin: 0 auto; }

.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 980px; margin: 44px auto 0;
}
.team-card { text-align: center; }
.team-initial {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.team-card h3 { margin-bottom: 2px; }
.team-card p { font-size: 0.92rem; }

/* Documents checklist (Apply Now) */
.doc-checklist {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px 26px; box-shadow: var(--shadow);
}
.doc-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-top: 1px solid var(--border);
}
.doc-item:first-child { border-top: none; }
.doc-icon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.doc-icon svg { width: 20px; height: 20px; }
.doc-item h4 { font-family: var(--serif); font-size: 0.98rem; color: var(--navy); margin-bottom: 4px; }
.doc-item p { font-size: 0.88rem; }

/* Pricing (Apply Now) */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pricing-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin: 0 auto; }
.price-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--gold); border-width: 2px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 5px 16px; border-radius: 999px;
}
.price-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.price-tagline { font-size: 0.88rem; min-height: 40px; }
.price-amount { font-family: var(--serif); font-weight: 700; font-size: 2.4rem; color: var(--navy); margin-top: 14px; }
.price-period { font-size: 0.78rem; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 22px; }
.price-features { flex: 1; margin-bottom: 26px; }
.price-features li {
  font-size: 0.9rem; color: var(--gray); padding: 9px 0 9px 26px;
  border-top: 1px solid var(--border); position: relative;
}
.price-features li:first-child { border-top: none; }
.price-features li::before {
  content: "✓"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 700;
}
.btn-outline-navy {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--navy); color: var(--navy); background: transparent;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.price-card .btn, .price-card .btn-outline-navy { width: 100%; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.media-panel {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.media-panel h3 { color: var(--gold); font-size: 1.1rem; margin-bottom: 8px; }
.media-panel .big { font-family: var(--serif); font-size: 2.6rem; color: #fff; margin-bottom: 4px; }
.media-panel .row { display: flex; justify-content: space-between; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.15); }
.media-panel .row:first-of-type { border-top: none; }

/* University cards (shared home preview + directory) */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.uni-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.uni-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.uni-card-logo {
  height: 68px; padding: 12px 22px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.uni-card-logo img { max-height: 40px; max-width: 160px; object-fit: contain; }
.uni-card-logo.logo-dark { background: var(--navy); }
.uni-card-top { background: var(--navy); padding: 20px 22px; color: #fff; }
.uni-card-top .badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; background: rgba(240,187,76,0.18); color: var(--gold);
  padding: 3px 10px; border-radius: 999px; margin-bottom: 8px;
}
.uni-card-top h3 { color: #fff; font-size: 1.08rem; }
.uni-card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.uni-intro { font-size: 0.88rem; color: var(--ink); line-height: 1.5; }
.uni-card-body .programs { font-size: 0.86rem; color: var(--gray); }
.uni-card-body .programs strong { color: var(--ink); }
.uni-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.uni-tags span {
  font-size: 0.74rem; font-weight: 600; background: var(--navy-soft); color: var(--navy);
  padding: 4px 10px; border-radius: 999px;
}
.uni-fee {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--border); padding-top: 14px;
}
.uni-fee .amount { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 1.15rem; }
.uni-fee .label { font-size: 0.74rem; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.05em; }

.major-matches {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.major-matches-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--gold-dark); margin-bottom: 2px;
}
.major-match {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  font-size: 0.86rem;
}
.major-match-name { color: var(--ink); font-weight: 600; }
.major-match-fee { color: var(--navy); font-weight: 700; font-family: var(--serif); white-space: nowrap; font-size: 0.84rem; }

/* Directory filter bar */
.filter-bar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}
.filter-field label {
  display: block; font-size: 0.76rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--gray-light); margin-bottom: 6px;
}
.filter-field select, .filter-field input {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 6px;
  font-family: var(--sans); font-size: 0.9rem; color: var(--ink); background: #fff;
}
.filter-field select:focus, .filter-field input:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.filter-search {
  padding: 10px 22px; border: none; border-radius: 6px; background: var(--gold);
  color: var(--navy); font-weight: 700; font-size: 0.85rem; cursor: pointer; white-space: nowrap;
  transition: background 0.15s ease;
}
.filter-search:hover { background: var(--gold-dark); }
.filter-reset {
  padding: 10px 18px; border: 1px solid var(--border); border-radius: 6px; background: var(--bg-alt);
  font-weight: 600; font-size: 0.85rem; cursor: pointer; white-space: nowrap;
}
.filter-reset:hover { background: var(--navy-soft); }
.results-count { font-size: 0.9rem; color: var(--gray); margin-bottom: 20px; }
.no-results { text-align: center; padding: 60px 20px; color: var(--gray); display: none; }


/* Process timeline (About) */
.timeline { margin: 44px 0 8px; }
.timeline-endcaps {
  display: flex; justify-content: space-between;
  font-family: var(--serif); font-weight: 700; color: var(--navy);
  font-size: 0.95rem; margin-bottom: 10px; padding: 0 4px;
}
.timeline-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 70px 4px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 3px;
  background: var(--gold);
  transform: translateY(-50%);
}
.timeline-point {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.timeline-point .dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--navy); border: 3px solid var(--gold);
  flex-shrink: 0;
}
.timeline-point .label {
  font-weight: 600; font-size: 0.86rem; color: var(--navy);
  text-align: center; max-width: 130px; line-height: 1.3;
}
.timeline-point.label-bottom { flex-direction: column; }
.timeline-point.label-bottom .label { margin-top: 14px; }
.timeline-point.label-top { flex-direction: column-reverse; }
.timeline-point.label-top .label { margin-bottom: 14px; }

/* FAQ accordion (About) */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer; text-align: left;
  padding: 18px 22px; font-family: var(--serif); font-weight: 600; font-size: 1rem; color: var(--navy);
}
.faq-question .chevron { color: var(--gold-dark); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-answer p { padding: 0 22px 18px; font-size: 0.92rem; }
.faq-item.open .faq-answer { max-height: 240px; }

/* Values grid (About) */
.value-card { text-align: left; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy), #1c2668);
  color: #fff; text-align: center; border-radius: var(--radius);
  padding: 60px 40px;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 520px; margin: 0 auto 28px; }
.cta-band .hero-actions { justify-content: center; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; display: flex; gap: 18px; align-items: flex-start;
}
.contact-card .icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card .icon svg { width: 22px; height: 22px; }
.contact-card h4 { font-family: var(--serif); font-size: 1.05rem; color: var(--navy); margin-bottom: 4px; }
.contact-card a, .contact-card p { font-size: 0.94rem; }
.map-frame {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); min-height: 340px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 150px; }
.footer-brand span { font-family: var(--serif); font-weight: 700; color: #fff; font-size: 1.05rem; }
.footer-brand span em { color: var(--gold); font-style: normal; }
.site-footer p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col h5 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.72); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14); padding-top: 22px;
  display: flex; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.55);
  flex-wrap: wrap; gap: 10px;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff; padding: 64px 0 56px; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p {
  font-family: var(--serif);
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto;
}
.page-hero-about {
  background-image:
    linear-gradient(160deg, rgba(0,10,66,0.55), rgba(0,10,66,0.88)),
    url("../assets/hero-about.jpg");
}
.page-hero-universities {
  background-image:
    linear-gradient(160deg, rgba(0,10,66,0.55), rgba(0,10,66,0.88)),
    url("../assets/hero-universities.jpg");
}
.page-hero-contact {
  background-image:
    linear-gradient(160deg, rgba(0,10,66,0.55), rgba(0,10,66,0.88)),
    url("../assets/hero-contact.jpg");
}
.page-hero-apply {
  background-image:
    linear-gradient(160deg, rgba(0,10,66,0.55), rgba(0,10,66,0.88)),
    url("../assets/hero-apply.jpg");
}

.disclaimer { font-size: 0.8rem; color: var(--gray-light); text-align: center; margin-top: 30px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding: 60px 0; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .filter-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card.featured { transform: none; }
}
@media (max-width: 720px) {
  .container { padding: 0 28px; }
  .nav-links, .nav-cta .btn-outline-desktop { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { gap: 10px; }
  .nav-cta .btn-navy { padding: 8px 12px; font-size: 0.72rem; }
  .brand img { height: 68px; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: #fff; padding: 20px 24px; gap: 18px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
  }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .filter-bar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { padding-bottom: 90px; }
  .site-footer { padding-bottom: 90px; }
  .team-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; }

  .timeline-endcaps { display: none; }
  .timeline-track {
    flex-direction: column;
    align-items: flex-start;
    padding: 4px 4px 4px 10px;
    gap: 28px;
  }
  .timeline-track::before {
    left: 6px; right: auto; top: 0; bottom: 0;
    width: 3px; height: auto;
    transform: none;
  }
  .timeline-point,
  .timeline-point.label-bottom,
  .timeline-point.label-top {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .timeline-point .label { text-align: left; max-width: none; margin: 0 !important; }
}
