/* ============================================================
   MIRUS IMMIGRATION — Master Stylesheet
   Brand: Deep Forest Green + Warm Cream + Sunrise Amber
   ============================================================ */

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

/* ── CSS Custom Properties ── */
:root {
  /* Greens */
  --forest-950: #071A10;
  --forest-900: #0D2B1F;
  --forest-800: #1B4332;
  --forest-700: #2D6A4F;
  --forest-600: #40916C;
  --forest-500: #52B788;
  --forest-400: #74C69D;
  --forest-200: #B7E4C7;
  --forest-100: #D8F3DC;
  --forest-50:  #F0FBF4;

  /* Amber */
  --amber-600: #D97706;
  --amber-500: #F59E0B;
  --amber-400: #FBBF24;
  --amber-300: #FCD34D;
  --amber-100: #FEF3C7;

  /* Neutrals */
  --cream:      #FDF8F0;
  --cream-200:  #F5EDD8;
  --cream-300:  #EDD9B4;
  --white:      #FFFFFF;
  --dark:       #070E0A;
  --gray-900:   #111827;
  --gray-800:   #1F2937;
  --gray-700:   #374151;
  --gray-600:   #4B5563;
  --gray-500:   #6B7280;
  --gray-400:   #9CA3AF;
  --gray-300:   #D1D5DB;
  --gray-200:   #E5E7EB;
  --gray-100:   #F3F4F6;

  /* Typography */
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Spacing */
  --section-gap: 7rem;
  --container:   1200px;

  /* Radius */
  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 20px 40px rgba(0,0,0,.14), 0 8px 16px rgba(0,0,0,.08);
  --shadow-xl:  0 40px 80px rgba(0,0,0,.18);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --transition: 0.3s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── Typography Scale ── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
}
.text-xl   { font-size: 1.25rem; line-height: 1.5; }
.text-lg   { font-size: 1.125rem; line-height: 1.6; }
.text-base { font-size: 1rem; line-height: 1.7; }
.text-sm   { font-size: 0.875rem; line-height: 1.6; }
.text-xs   { font-size: 0.75rem; line-height: 1.5; letter-spacing: 0.05em; }

.text-upper { text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; font-size: 0.75rem; }
.italic { font-style: italic; }
.font-display { font-family: var(--font-display); }

/* ── Colours ── */
.text-forest   { color: var(--forest-800); }
.text-green    { color: var(--forest-600); }
.text-amber    { color: var(--amber-500); }
.text-cream    { color: var(--cream); }
.text-white    { color: var(--white); }
.text-muted    { color: var(--gray-500); }
.text-dark     { color: var(--gray-900); }
.bg-forest     { background: var(--forest-800); }
.bg-dark       { background: var(--dark); }
.bg-cream      { background: var(--cream); }
.bg-white      { background: var(--white); }
.bg-green-light{ background: var(--forest-50); }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm  { max-width: 780px; }
.container-lg  { max-width: 1400px; }
.section { padding: var(--section-gap) 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 9rem 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-col  { flex-direction: column; }
.gap-1  { gap: 0.5rem; }
.gap-2  { gap: 1rem; }
.gap-3  { gap: 1.5rem; }
.gap-4  { gap: 2rem; }
.align-start { align-items: flex-start; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--amber-500);
  color: var(--forest-900);
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}
.btn-primary:hover {
  background: var(--amber-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,158,11,0.45);
}

.btn-forest {
  background: var(--forest-800);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27,67,50,0.3);
}
.btn-forest:hover {
  background: var(--forest-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27,67,50,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--forest-800);
  border: 1.5px solid var(--forest-800);
}
.btn-outline-dark:hover {
  background: var(--forest-800);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.btn-icon { gap: 0.4rem; }

.btn-arrow::after {
  content: '→';
  background: none;
  position: static;
  font-size: 1.1em;
  transition: transform var(--transition);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease-out);
  padding: 1.2rem 0;
}

#navbar.scrolled {
  background: rgba(7,14,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

#navbar.light-nav {
  background: rgba(253,248,240,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27,67,50,0.1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

#navbar.light-nav .nav-logo,
#navbar.light-nav .nav-link { color: var(--forest-900); }
#navbar.light-nav .nav-link:hover { color: var(--forest-600); }
#navbar.light-nav .nav-cta { background: var(--forest-800); color: white; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo span { color: var(--amber-400); }
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-link.active { color: var(--amber-400); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-portal {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.nav-portal:hover {
  color: white;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  background: var(--amber-500);
  color: var(--forest-900);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(245,158,11,0.4);
}
.nav-cta:hover {
  background: var(--amber-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(245,158,11,0.5);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--forest-900);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding: 0.6rem 2rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-align: center;
}
.mobile-nav-link:hover { color: var(--amber-400); background: rgba(255,255,255,0.05); }

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-nav-close:hover { color: white; }

/* ── HERO SECTION ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--forest-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(27,67,50,0.8) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(13,43,31,0.9) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 60% 20%, rgba(245,158,11,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #070E0A 0%, #0D2B1F 40%, #071A10 100%);
  animation: heroBgPulse 12s ease-in-out infinite alternate;
}

@keyframes heroBgPulse {
  0%   { filter: brightness(1); }
  100% { filter: brightness(1.08); }
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 20s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(52,183,120,0.6) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation-duration: 25s;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.5) 0%, transparent 70%);
  bottom: 10%;
  right: 5%;
  animation-duration: 18s;
  animation-delay: -8s;
}
.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74,198,157,0.4) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  animation-duration: 22s;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem 0.4rem 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeSlideDown 0.8s var(--ease-out) both;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber-400);
  box-shadow: 0 0 8px var(--amber-400);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.9s var(--ease-out) 0.15s both;
}
.hero-headline .accent { color: var(--amber-400); font-style: italic; }
.hero-headline .green-text { color: var(--forest-400); }

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.65);
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  animation: fadeSlideUp 0.9s var(--ease-out) 0.25s both;
}

.hero-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  animation: fadeSlideUp 1s var(--ease-out) 0.35s both;
}

.hero-tile {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(12px);
  text-align: left;
}
.hero-tile:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(245,158,11,0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.hero-tile-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}
.hero-tile-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.hero-tile-text span {
  color: rgba(255,255,255,0.5);
  font-size: 0.77rem;
  line-height: 1.4;
}

.hero-or {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  animation: fadeIn 1s var(--ease-out) 0.5s both;
}

.hero-quiz-link {
  color: var(--amber-400);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
  cursor: pointer;
  animation: fadeIn 1s var(--ease-out) 0.55s both;
  display: inline-block;
}
.hero-quiz-link:hover { color: var(--amber-300); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease 1s both;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(0.8); }
}

/* ── CITY BANNER ── */
.city-banner {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.city-banner-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.city-banner:hover .city-banner-img { transform: scale(1); }
.city-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7,14,10,0.82) 0%,
    rgba(7,14,10,0.55) 55%,
    rgba(7,14,10,0.25) 100%
  );
}
.city-banner-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 2rem 3rem;
  color: #fff;
}
.city-banner-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-400);
  margin-bottom: 1rem;
}
.city-banner-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
}
.city-banner-sub {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.8rem;
}
@media (max-width: 768px) {
  .city-banner { height: auto; padding: 3rem 0; }
  .city-banner-content { padding: 1.5rem; }
  .city-banner-overlay {
    background: rgba(7,14,10,0.72);
  }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--forest-800);
  padding: 1rem 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0 2.5rem;
  flex-shrink: 0;
}
.trust-item::after {
  content: '·';
  margin-left: 2.5rem;
  color: var(--amber-500);
}
.trust-item:last-child::after { content: ''; }
.trust-dot { color: var(--amber-400); font-size: 0.9rem; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--forest-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--amber-500);
  display: block;
}

/* ── PATHWAY CARDS ── */
.pathways-section {
  padding: var(--section-gap) 0;
  background: var(--cream);
}
.pathways-intro {
  max-width: 700px;
  margin-bottom: 3.5rem;
}
.pathways-intro p {
  color: var(--gray-600);
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pathway-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pathway-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-600), var(--amber-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.pathway-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pathway-card:hover::before { transform: scaleX(1); }

.pathway-emoji {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
  transition: transform var(--transition);
}
.pathway-card:hover .pathway-emoji { transform: scale(1.1); }

.pathway-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest-800);
  margin-bottom: 0.5rem;
}
.pathway-card p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}

.pathway-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.pathway-badge {
  background: var(--forest-50);
  color: var(--forest-700);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--forest-200);
}

.pathway-link {
  color: var(--forest-600);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}
.pathway-link:hover { color: var(--forest-800); gap: 0.7rem; }

/* ── DIFFERENCE SECTION ── */
.difference-section {
  background: var(--forest-900);
  padding: var(--section-gap) 0;
  overflow: hidden;
}

.difference-header {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--white);
}
.difference-header p {
  color: rgba(255,255,255,0.55);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.diff-scroll-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 1.5rem 1rem;
  cursor: grab;
  user-select: none;
}
.diff-scroll-track::-webkit-scrollbar { display: none; }
.diff-scroll-track.dragging { cursor: grabbing; }

.diff-card {
  flex: 0 0 320px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.diff-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-4px);
}

.diff-card-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: rgba(245,158,11,0.25);
  line-height: 1;
  margin-bottom: 1rem;
}
.diff-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.diff-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
}

.diff-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  justify-content: center;
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}

/* ── PATHFINDER SECTION ── */
.pathfinder-section {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

.pathfinder-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.pathfinder-intro .display-md { margin-bottom: 1rem; color: var(--forest-900); }
.pathfinder-intro p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pathfinder-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pf-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-700);
  font-size: 0.9rem;
}
.pf-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--forest-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest-600);
  font-size: 0.75rem;
  font-weight: 700;
}

/* Quiz Widget */
.quiz-widget {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.quiz-progress {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 2rem;
}
.quiz-progress-dot {
  flex: 1;
  height: 3px;
  border-radius: var(--radius-full);
  background: var(--gray-200);
  transition: background 0.4s ease;
}
.quiz-progress-dot.active { background: var(--forest-600); }
.quiz-progress-dot.done   { background: var(--amber-500); }

.quiz-step { display: none; animation: fadeSlideUp 0.5s var(--ease-out) both; }
.quiz-step.active { display: block; }

.quiz-question {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest-900);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.quiz-sub {
  color: var(--gray-500);
  font-size: 0.87rem;
  margin-bottom: 1.5rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--gray-100);
  text-align: left;
  width: 100%;
}
.quiz-option:hover {
  border-color: var(--forest-500);
  background: var(--forest-50);
  color: var(--forest-800);
}
.quiz-option.selected {
  border-color: var(--forest-600);
  background: var(--forest-50);
  color: var(--forest-800);
  font-weight: 600;
}
.quiz-option-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.quiz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.quiz-back {
  color: var(--gray-500);
  font-size: 0.85rem;
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
}
.quiz-back:hover { color: var(--gray-800); }

/* Quiz result */
.quiz-result {
  display: none;
  animation: fadeSlideUp 0.6s var(--ease-out) both;
}
.quiz-result.active { display: block; }

.result-header {
  background: linear-gradient(135deg, var(--forest-800), var(--forest-700));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
}
.result-header h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: 0.75rem;
}
.result-program {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.result-fit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.result-fit-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.result-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.result-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber-400), var(--amber-500));
  border-radius: var(--radius-full);
  transition: width 1s var(--ease-out) 0.3s;
  width: 0;
}
.result-fit-score { font-size: 0.85rem; font-weight: 700; color: var(--amber-400); }

.result-also {
  margin-bottom: 1.25rem;
}
.result-also h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.result-alt-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest-700);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.3rem 0;
}
.result-alt-item::before { content: '→'; color: var(--amber-500); }

.result-disclaimer {
  font-size: 0.72rem;
  color: var(--gray-400);
  line-height: 1.5;
  border-top: 1px solid var(--gray-200);
  padding-top: 1rem;
  margin-top: 1rem;
}

/* ── STORIES SECTION ── */
.stories-section {
  padding: var(--section-gap) 0;
  background: var(--forest-950);
}

.stories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
}
.stories-header-left h2 { color: var(--white); }
.stories-header-left p { color: rgba(255,255,255,0.5); margin-top: 0.75rem; max-width: 480px; }

.stories-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.25rem;
}

.story-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.story-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

.story-card-inner {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--forest-800), var(--forest-900));
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.story-card.large .story-card-inner { aspect-ratio: 4/5; }

.story-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
.story-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,14,10,0.95) 0%, rgba(7,14,10,0.4) 50%, transparent 100%);
}

.story-card-content {
  position: relative;
  padding: 1.75rem;
}
.story-route {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,158,11,0.2);
  border: 1px solid rgba(245,158,11,0.4);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.7rem;
  color: var(--amber-400);
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.story-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.story-card.large .story-name { font-size: 1.5rem; }
.story-quote {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  line-height: 1.6;
  font-style: italic;
}
.story-card.large .story-quote { font-size: 0.93rem; }

/* ── CITIES SECTION ── */
.cities-section {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

.cities-header { text-align: center; margin-bottom: 3.5rem; }
.cities-header h2 { color: var(--forest-900); }
.cities-header p {
  color: var(--gray-600);
  margin-top: 1rem;
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.city-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all var(--transition);
}
.city-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.city-card-inner {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--forest-700), var(--forest-900));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.city-card.wide .city-card-inner { aspect-ratio: 2/1; }

.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 100%);
}
.city-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  transition: transform 0.6s var(--ease-out), opacity var(--transition);
}
.city-card:hover .city-card-bg { transform: scale(1.06); opacity: 0.65; }

.city-card-content { position: relative; }
.city-emoji { font-size: 1.5rem; margin-bottom: 0.4rem; }
.city-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.city-tag {
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 500;
}

/* City backgrounds as gradients */
.city-vancouver { background: linear-gradient(145deg, #1a4a6b, #0d2b3e); }
.city-toronto   { background: linear-gradient(145deg, #3d1f5e, #1a0d2e); }
.city-calgary   { background: linear-gradient(145deg, #4a2c0d, #2e1a08); }
.city-montreal  { background: linear-gradient(145deg, #1a2d4a, #0a1520); }
.city-ottawa    { background: linear-gradient(145deg, #1b4332, #0d2b1f); }
.city-halifax   { background: linear-gradient(145deg, #0d3b4a, #07202e); }
.city-edmonton  { background: linear-gradient(145deg, #3b2d0a, #1f1805); }
.city-winnipeg  { background: linear-gradient(145deg, #2d1b4a, #150d25); }

/* ── STATS SECTION ── */
.stats-section {
  background: var(--forest-800);
  padding: 5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--amber-400);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: var(--section-gap) 0;
  background: var(--cream);
  text-align: center;
}
.cta-box {
  background: linear-gradient(135deg, var(--forest-800) 0%, var(--forest-900) 100%);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52,183,120,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.cta-box h2 .accent { color: var(--amber-400); font-style: italic; }
.cta-box p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-note {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 5rem 0 2rem;
  color: rgba(255,255,255,0.6);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}

.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.footer-logo span { color: var(--amber-400); }
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-btn:hover {
  border-color: var(--amber-400);
  color: var(--amber-400);
  background: rgba(245,158,11,0.1);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-link {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  line-height: 1.4;
}
.footer-link:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  max-width: 600px;
  line-height: 1.6;
  text-align: right;
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  justify-content: flex-end;
}
.footer-legal-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-legal-link:hover { color: rgba(255,255,255,0.7); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 55vh;
  background: linear-gradient(135deg, var(--forest-900) 0%, var(--forest-800) 60%, var(--forest-700) 100%);
  display: flex;
  align-items: center;
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 30%, rgba(245,158,11,0.1) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.15rem; line-height: 1.7; }
.page-hero .hero-badge { margin-bottom: 1.5rem; animation: none; }

/* ── ACCORDION ── */
.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
  margin-bottom: 0.75rem;
}
.accordion-item:hover { border-color: var(--forest-300); }
.accordion-item.open { border-color: var(--forest-500); box-shadow: var(--shadow-md); }

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  gap: 1rem;
}
.accordion-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--forest-900);
}
.accordion-emoji { font-size: 1.5rem; }
.accordion-chevron {
  font-size: 1rem;
  color: var(--gray-400);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.accordion-item.open .accordion-chevron { transform: rotate(180deg); color: var(--forest-600); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.accordion-item.open .accordion-body { max-height: 800px; }

.accordion-content {
  padding: 0 2rem 2rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1.5rem;
  margin-top: 0;
}

.accordion-who {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.accordion-pathways {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.acc-pathway-tag {
  background: var(--forest-50);
  border: 1px solid var(--forest-200);
  color: var(--forest-700);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.accordion-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 80px;
  width: 1px;
  height: calc(100% + 0rem);
  background: linear-gradient(to bottom, var(--forest-200), transparent);
}
.process-step:last-child::before { display: none; }

.step-number-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.5rem;
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-number.amber { background: var(--amber-500); color: var(--forest-900); }

.step-body {
  padding: 0.25rem 0 3.5rem;
}
.step-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-600);
  margin-bottom: 0.4rem;
}
.step-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest-900);
  margin-bottom: 0.75rem;
}
.step-body p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.step-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--gray-700);
}
.step-list li::before { content: '→'; color: var(--amber-500); font-weight: 700; }

/* ── TEAM CARDS ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--forest-200); }

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-600), var(--forest-800));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--forest-100);
}
.team-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--forest-900);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.82rem;
  color: var(--forest-600);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}
.team-license {
  font-size: 0.75rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.team-license a {
  color: var(--forest-600);
  text-decoration: underline;
  transition: color var(--transition);
}
.team-license a:hover { color: var(--forest-800); }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
}
.pricing-card.featured {
  background: var(--forest-800);
  border-color: var(--forest-700);
  color: white;
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber-500);
  color: var(--forest-900);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-name {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-600);
  margin-bottom: 0.5rem;
}
.pricing-card.featured .pricing-name { color: var(--amber-400); }
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest-900);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-period {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.6); }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--gray-700);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.75); }
.pricing-check {
  color: var(--forest-500);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pricing-card.featured .pricing-check { color: var(--amber-400); }

/* ── FILTER TABS ── */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-tab {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-200);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.filter-tab:hover { border-color: var(--forest-400); color: var(--forest-700); }
.filter-tab.active {
  background: var(--forest-800);
  border-color: var(--forest-800);
  color: var(--white);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── UTILITY ── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 2rem 0;
}

.tag {
  display: inline-block;
  background: var(--forest-50);
  border: 1px solid var(--forest-200);
  color: var(--forest-700);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}
.tag-amber {
  background: var(--amber-100);
  border-color: var(--amber-300);
  color: var(--amber-600);
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .pathways-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid  { grid-template-columns: 1fr 1fr; }
  .cities-grid   { grid-template-columns: repeat(3, 1fr); }
  .footer-top    { grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; }
  .footer-top .footer-col:nth-child(4),
  .footer-top .footer-col:nth-child(5) { display: none; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr 1fr; }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-gap: 5rem; }
  .nav-links { display: none; }
  .nav-portal { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }

  .pathfinder-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --section-gap: 4rem; }

  .hero-tiles { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .hero-tile { padding: 1rem; }
  .hero-tile-icon { font-size: 1.4rem; width: 36px; }
  .hero-tile-text strong { font-size: 0.82rem; }
  .hero-tile-text span { display: none; }

  .pathways-grid { grid-template-columns: 1fr; }
  .stories-grid  { grid-template-columns: 1fr; }
  .cities-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .grid-3        { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .footer-col:nth-child(4),
  .footer-top .footer-col:nth-child(5) { display: none; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .stories-header { flex-direction: column; align-items: flex-start; }

  .process-step { grid-template-columns: 54px 1fr; gap: 1rem; }
  .process-step::before { left: 27px; }
}

@media (max-width: 480px) {
  .hero-tiles { grid-template-columns: 1fr; max-width: 320px; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MEGA-MENU NAVIGATION
   ============================================================ */

/* Drop trigger */
.nav-has-mega {
  position: relative;
}
.nav-has-mega > .nav-link::after {
  content: ' ▾';
  font-size: 0.7em;
  opacity: 0.7;
}

/* Mega panel */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  background: rgba(7,14,10,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out), visibility 0.22s;
  transform: translateX(-50%) translateY(8px);
  z-index: 1000;
}

.nav-has-mega:hover .mega-menu,
.nav-has-mega.mega-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Bridge gap so hover stays */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.mega-col {
  padding: 0 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child  { padding-right: 0; border-right: none; }

.mega-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber-400);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(245,158,11,0.2);
}

.mega-link {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0;
  transition: color 0.18s;
  line-height: 1.4;
}
.mega-link:hover { color: var(--white); }
.mega-link:hover::before {
  content: '→ ';
  color: var(--amber-400);
}

/* ============================================================
   PROGRAM / CONTENT PAGE STYLES
   ============================================================ */

/* Hero for program pages */
.prog-hero {
  background: linear-gradient(135deg, var(--forest-950) 0%, var(--forest-900) 60%, var(--forest-800) 100%);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.prog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(64,145,108,0.15) 0%, transparent 60%);
}

.prog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  position: relative;
}
.prog-breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.prog-breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.prog-breadcrumb span { color: rgba(255,255,255,0.25); }

.prog-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(64,145,108,0.18);
  border: 1px solid rgba(64,145,108,0.3);
  color: var(--forest-200);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.prog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.prog-hero h1 .accent { color: var(--amber-400); }

.prog-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  line-height: 1.7;
}

/* Quick facts bar */
.prog-facts {
  display: flex;
  gap: 0;
  margin-top: 2.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.prog-fact {
  flex: 1;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.prog-fact:last-child { border-right: none; }
.prog-fact-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber-400);
  display: block;
}
.prog-fact-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
}

/* Content layout: main + sidebar */
.prog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.prog-main h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--forest-900);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-200);
}
.prog-main h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.prog-main h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest-800);
  margin-bottom: 0.75rem;
  margin-top: 1.75rem;
}
.prog-main p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}
.prog-main ul, .prog-main ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.prog-main li {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 0.4rem;
  font-size: 0.97rem;
}
.prog-main ul li { list-style: disc; }
.prog-main ol li { list-style: decimal; }

/* Eligibility grid */
.elig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.elig-card {
  background: var(--forest-50);
  border: 1px solid var(--forest-100);
  border-left: 4px solid var(--forest-600);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.elig-card-title {
  font-weight: 700;
  color: var(--forest-800);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.elig-card p, .elig-card li {
  font-size: 0.88rem;
  color: var(--gray-600);
}

/* Process steps */
.process-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.proc-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.proc-step-num {
  counter-increment: step;
  width: 48px;
  height: 48px;
  background: var(--forest-800);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.proc-step-body h4 {
  font-weight: 700;
  color: var(--forest-900);
  margin-bottom: 0.35rem;
  font-size: 1rem;
}
.proc-step-body p, .proc-step-body li {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Info table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.9rem;
}
.info-table th {
  background: var(--forest-800);
  color: white;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
}
.info-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}
.info-table tr:nth-child(even) td { background: var(--gray-100); }
.info-table tr:hover td { background: var(--forest-50); }

/* Callout box */
.prog-callout {
  background: linear-gradient(135deg, var(--forest-50), var(--amber-100));
  border: 1px solid var(--forest-200);
  border-left: 5px solid var(--forest-600);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.75rem 0;
}
.prog-callout-title {
  font-weight: 700;
  color: var(--forest-800);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.prog-callout p { margin-bottom: 0; }

/* Warning box */
.prog-warning {
  background: #FFF8F0;
  border: 1px solid #FCD34D;
  border-left: 5px solid var(--amber-500);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  color: var(--gray-700);
}

/* Sidebar */
.prog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.sidebar-card-header {
  background: var(--forest-800);
  color: white;
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
}
.sidebar-card-body {
  padding: 1.25rem;
}
.sidebar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.85rem;
}
.sidebar-row:last-child { border-bottom: none; }
.sidebar-row-label { color: var(--gray-500); }
.sidebar-row-value { font-weight: 600; color: var(--forest-800); }

/* WhatsApp CTA block (reused across pages) */
.prog-cta {
  background: linear-gradient(135deg, var(--forest-900) 0%, var(--forest-800) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  color: white;
  margin-top: 3rem;
}
.prog-cta h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: white;
}
.prog-cta p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.75rem;
  font-size: 1rem;
}
.prog-cta .wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.prog-cta .wa-btn:hover {
  background: #20c05b;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}

/* Disclaimer */
.prog-disclaimer {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-top: 2rem;
}

/* Province cards (PNP section) */
.province-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.province-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.province-card:hover {
  border-color: var(--forest-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.province-card-abbr {
  display: inline-block;
  background: var(--forest-800);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}
.province-card h4 {
  font-weight: 700;
  color: var(--forest-900);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.province-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.province-link {
  font-size: 0.82rem;
  color: var(--forest-600);
  font-weight: 600;
}

/* Section divider with icon */
.prog-section-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.prog-section-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--forest-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.prog-section-icon-text h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-900);
  margin: 0;
  padding: 0;
  border: none;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-method-block {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-method-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest-900);
  margin-bottom: 0.5rem;
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-field {
  margin-bottom: 1.25rem;
}
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--forest-900);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  background: var(--gray-100);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--forest-500);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   RESPONSIVE — MEGA-MENU & PROGRAM PAGES
   ============================================================ */

@media (max-width: 1024px) {
  .mega-menu { width: 700px; grid-template-columns: repeat(3, 1fr); }
  .mega-col:nth-child(4), .mega-col:nth-child(5) { display: none; }
  .prog-layout { grid-template-columns: 1fr; }
  .prog-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-has-mega > .mega-menu { display: none; }
  .elig-grid { grid-template-columns: 1fr; }
  .province-grid { grid-template-columns: 1fr 1fr; }
  .prog-facts { flex-wrap: wrap; }
  .prog-fact { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .prog-cta { padding: 2rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .province-grid { grid-template-columns: 1fr; }
  .prog-hero { padding: 5rem 0 3rem; }
}
