@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Fraunces:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --primary: #1A3C6E;
  --primary-light: #2D5BA3;
  --accent: #FF6B35;
  --accent-light: #FF8C5A;
  --gold: #F5A623;
  --teal: #0EA5A0;
  --teal-light: #14C4BF;
  --bg: #F7F8FC;
  --bg-white: #FFFFFF;
  --text: #0D1B2A;
  --text-muted: #5A6A7E;
  --text-light: #8B9BAE;
  --border: rgba(26,60,110,0.12);
  --shadow-sm: 0 2px 8px rgba(26,60,110,0.08);
  --shadow-md: 0 8px 32px rgba(26,60,110,0.12);
  --shadow-lg: 0 24px 64px rgba(26,60,110,0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
img { max-width: 100%; height: auto; display: block; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  height: 60px;
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -1px;
}
.nav-logo .logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.nav-logo .logo-text span { color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.nav-links a:hover { background: var(--bg); color: var(--primary); }
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.dropdown a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.dropdown a:hover { background: var(--bg); color: var(--primary); }

.nav-cta {
  display: flex; align-items: center; gap: 10px;
}
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all 0.25s ease; }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text-muted); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,60,110,0.3); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,107,53,0.4); }
.btn-large { padding: 14px 28px; font-size: 16px; border-radius: 12px; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--bg); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 120px 2rem 80px;
  background: linear-gradient(160deg, #EEF3FF 0%, #F7F8FC 50%, #FFF3EE 100%);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,91,163,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-container {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,60,110,0.08); color: var(--primary);
  padding: 6px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '✦'; font-size: 10px; }
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.hero h1 .highlight {
  color: var(--primary);
  position: relative;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 6px;
  background: rgba(255,107,53,0.25);
  z-index: -1;
  border-radius: 3px;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.8;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex; gap: 2rem;
}
.hero-stat .num { font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.hero-stat .label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.hero-visual {
  position: relative;
}
.hero-card-main {
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero-card-main .card-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 1.25rem;
}
.career-emoji { font-size: 2rem; }
.card-header-text h3 { font-size: 1.1rem; font-weight: 700; }
.card-header-text p { font-size: 13px; color: var(--text-muted); }
.career-bars { display: flex; flex-direction: column; gap: 10px; }
.career-bar { display: flex; align-items: center; gap: 10px; }
.career-bar .name { font-size: 13px; font-weight: 500; width: 80px; flex-shrink: 0; }
.bar-track { flex: 1; height: 8px; background: var(--bg); border-radius: 50px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 50px; background: var(--primary); transition: width 1.5s cubic-bezier(0.22,1,0.36,1); }
.bar-fill.accent { background: var(--accent); }
.bar-fill.teal { background: var(--teal); }
.bar-fill.gold { background: var(--gold); }
.career-bar .pct { font-size: 12px; font-weight: 700; color: var(--text-muted); width: 36px; text-align: right; }

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  font-size: 13px;
}
.fc-top { top: -20px; right: -20px; }
.fc-bottom { bottom: 20px; left: -30px; }
.fc-badge { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.fc-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.7;transform:scale(1.3)} }

/* ─── SECTIONS ─── */
.section { padding: 90px 2rem; }
.section-alt { background: #fff; }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,60,110,0.07); color: var(--primary);
  padding: 5px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  color: var(--text);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}
.section-head { margin-bottom: 3rem; }
.section-head.centered { text-align: center; }
.section-head.centered .section-subtitle { margin: 0 auto; }

/* ─── CARDS GRID ─── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.cards-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(26,60,110,0.2); }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.card-icon.blue { background: #EEF3FF; }
.card-icon.orange { background: #FFF3EE; }
.card-icon.teal { background: #E8FAF9; }
.card-icon.gold { background: #FFF8ED; }
.card-icon.pink { background: #FFF0F6; }
.card-icon.green { background: #EDFAF2; }

.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--primary); margin-top: 1rem; }
.card-link::after { content: '→'; transition: transform 0.2s; }
.card:hover .card-link::after { transform: translateX(4px); }

/* ─── CAREER STREAMS ─── */
.streams-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.stream-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.stream-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--stream-color, var(--primary));
  border-radius: 4px 4px 0 0;
}
.stream-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stream-card .stream-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.stream-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.stream-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.stream-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { padding: 3px 10px; border-radius: 50px; font-size: 11.5px; font-weight: 600; background: var(--bg); color: var(--text-muted); }

/* ─── EXAM CARDS ─── */
.exams-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.exam-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.exam-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.exam-card .exam-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.exam-card h4 { font-size: 13.5px; font-weight: 700; color: var(--text); }
.exam-card span { font-size: 11.5px; color: var(--text-muted); }
.exam-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  margin-top: 6px;
}
.badge-hot { background: #FFE8E8; color: #D92D20; }
.badge-new { background: #E8F5FF; color: #0369A1; }
.badge-pop { background: #EDFAF2; color: #15803D; }

/* ─── COUNTRIES ─── */
.countries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; }
.country-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.country-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.country-flag { font-size: 2.8rem; margin-bottom: 0.75rem; }
.country-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.country-card p { font-size: 12.5px; color: var(--text-muted); }
.country-card .budget { font-size: 12px; font-weight: 600; color: var(--primary); margin-top: 0.5rem; }

/* ─── BLOG CARDS ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-body { padding: 1.25rem; }
.blog-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 0.75rem; }
.blog-cat { font-size: 11.5px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px; }
.blog-date { font-size: 11.5px; color: var(--text-light); }
.blog-card h3 { font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: 0.5rem; }
.blog-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ─── COUNSELING CTA ─── */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,0.05);
}
.cta-text h2 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta-text p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 14.5px; line-height: 1.7; color: var(--text-muted); margin-bottom: 1.25rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.reviewer-name { font-size: 14px; font-weight: 600; }
.reviewer-school { font-size: 12.5px; color: var(--text-muted); }

/* ─── COUNSELORS ─── */
.counselors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.counselor-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex; gap: 1.25rem; align-items: center;
  transition: all 0.3s ease;
}
.counselor-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.counselor-avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 24px;
  flex-shrink: 0;
}
.counselor-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; }
.counselor-info p { font-size: 13px; color: var(--text-muted); margin-bottom: 0.75rem; }
.counselor-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.counselor-tag { padding: 3px 10px; border-radius: 50px; font-size: 11px; font-weight: 600; background: rgba(26,60,110,0.07); color: var(--primary); }

/* ─── FEATURES LIST ─── */
.features-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.features-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-item .fi-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(26,60,110,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.feature-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

.visual-mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

/* ─── STATS BAND ─── */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.stat-item {
  background: #fff;
  padding: 2rem;
  text-align: center;
}
.stat-item .num {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-item .unit { color: var(--accent); }
.stat-item .label { font-size: 14px; color: var(--text-muted); margin-top: 6px; }

/* ─── QUICK QUIZ ─── */
.quiz-widget {
  background: linear-gradient(135deg, #F0F4FF 0%, #FFF8F5 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.quiz-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.quiz-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 1.75rem; }
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quiz-option {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s ease;
  text-align: left;
  display: flex; align-items: center; gap: 10px;
}
.quiz-option:hover { border-color: var(--primary); color: var(--primary); background: rgba(26,60,110,0.03); }
.quiz-option.selected { border-color: var(--primary); background: rgba(26,60,110,0.06); color: var(--primary); font-weight: 600; }
.quiz-option .qo-icon { font-size: 1.25rem; }

/* ─── FOOTER ─── */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 60px 2rem 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo-text { font-size: 1.4rem; font-weight: 800; color: #fff; }
.footer-brand .logo-text span { color: var(--accent-light); }
.footer-brand p { font-size: 13.5px; margin-top: 0.75rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 1.25rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--accent); transform: translateY(-2px); }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 9px 1rem;
  font-size: 13px;
  font-weight: 500;
}
.announcement-bar a { color: var(--accent-light); font-weight: 700; }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  padding: 80px 2rem 2rem;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.1rem; font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--border); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 120px 2rem 60px;
  color: #fff;
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.page-hero p { font-size: 1.1rem; opacity: 0.8; max-width: 600px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.5; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .streams-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-two-col { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .counselors-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar { padding: 0 1.25rem; }
  .nav-links, .nav-cta .btn:first-child { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 1.25rem; }
  .hero { padding: 100px 1.25rem 60px; }
  .streams-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr 1fr; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-band { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; }
  .cta-actions { justify-content: center; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .quiz-options { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
