/* ══════════════════════════════════════════════════════════════
   ImpacTeen Africa — Premium Design System v10
   1200px container · Glassmorphism nav · Apple-style cards
   ══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --blue-xdark:  #1E3A8A;
  --blue-light:  #EFF6FF;
  --blue-mid:    #DBEAFE;
  --ink:         #0F172A;
  --ink-soft:    #1E293B;
  --body:        #374151;
  --muted:       #6B7280;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --border:      #E2E8F0;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.05);
  --shadow:      0 4px 20px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 30px rgba(0,0,0,0.09);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.12);
  --r-sm:        8px;
  --r-md:        12px;
  --r-lg:        20px;
  --r-pill:      999px;
  --t-xs:        0.75rem;
  --t-sm:        0.875rem;
  --t-base:      1rem;
  --t-lg:        1.125rem;
  --t-xl:        1.25rem;
  --t-2xl:       1.5rem;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--body);
       background: var(--white); line-height: 1.6;
       -webkit-font-smoothing: antialiased; font-size: var(--t-base); }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; color: var(--ink); }
h1 { font-size: 3.5rem; font-weight: 800;
     line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 700;
     line-height: 1.18; letter-spacing: -0.025em; }
h3 { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 600; line-height: 1.35; }
h4 { font-size: var(--t-base); font-weight: 700; line-height: 1.4; }
p  { font-size: var(--t-base); color: var(--body); line-height: 1.6; }

/* ── LAYOUT — single 1200px container across every page ─────── */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.container--narrow{ max-width: 780px;  margin: 0 auto; padding: 0 2rem; }
section           { padding: 5.5rem 0; }

/* ── LABEL (chip) ────────────────────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 0.4rem; width: fit-content;
  font-size: var(--t-xs); font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue-light); border: 1px solid var(--blue-mid);
  padding: 0.35rem 0.9rem; border-radius: var(--r-pill); margin-bottom: 1.1rem;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: var(--t-sm); padding: 0.65rem 1.5rem;
  border-radius: var(--r-pill); cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.22s ease, background 0.2s ease;
  border: 2px solid transparent; white-space: nowrap; letter-spacing: 0.01em;
}
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-2px) scale(1.03);
                      box-shadow: 0 10px 32px rgba(37,99,235,0.38); }
.btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px) scale(1.03);
                       box-shadow: 0 8px 24px rgba(37,99,235,0.2); }
.btn--white  { background: #fff; color: var(--blue); }
.btn--white:hover { background: var(--blue-light); transform: translateY(-2px) scale(1.03); }
.btn--ghost  { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.35); }
.btn--ghost:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px) scale(1.03); }

/* ── NAV — Glassmorphism, sticky ────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,0.7);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%;
              display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 38px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 0.15rem; }
.nav__links a { color: var(--body); font-size: var(--t-sm); font-weight: 500;
                padding: 0.45rem 0.9rem; border-radius: var(--r-sm);
                transition: color 0.18s, background 0.18s; }
.nav__links a:hover,
.nav__links a.active { color: var(--blue); background: var(--blue-light); }
.nav__cta { background: var(--blue) !important; color: #fff !important;
            padding: 0.5rem 1.3rem !important; border-radius: var(--r-pill) !important;
            font-weight: 700 !important; font-size: var(--t-sm) !important; }
.nav__cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px);
                  box-shadow: 0 4px 16px rgba(37,99,235,0.3); }
.nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px;
               background: none; border: none; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
                    transition: transform 0.3s ease, opacity 0.3s ease; display: block; }
.nav__mobile { display: none; position: fixed; inset: 68px 0 0 0;
               background: rgba(255,255,255,0.96); backdrop-filter: blur(18px);
               z-index: 999; padding: 1.5rem; flex-direction: column; gap: 0.3rem;
               overflow-y: auto; border-top: 1px solid var(--border); }
.nav__mobile.open { display: flex; }
.nav__mobile a { color: var(--body); font-size: var(--t-lg); font-weight: 500;
                 padding: 0.9rem 1.25rem; border-radius: var(--r-sm);
                 transition: background 0.18s, color 0.18s; }
.nav__mobile a:hover { background: var(--blue-light); color: var(--blue); }
.nav__mobile .nav__cta { background: var(--blue) !important; color: #fff !important;
                          margin-top: 0.5rem; text-align: center; justify-content: center; }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
  border-bottom: 1px solid var(--blue-mid);
  padding: 5rem 2rem 4rem; text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 3.8vw, 2.7rem);
                font-weight: 800; margin-bottom: 0.9rem; }
.page-hero p  { color: var(--body); max-width: 600px; margin: 0 auto 1.75rem;
                font-size: var(--t-lg); }
.page-hero__actions { display: flex; justify-content: center; gap: 0.85rem; flex-wrap: wrap; }

/* ── HOMEPAGE HERO — 60/40 split, left-aligned ───────────────── */
.hero { position: relative; overflow: hidden; background: var(--white); }
.hero__wrap { max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%;
              min-height: 90vh; display: flex; align-items: center;
              position: relative; z-index: 2; }
.hero__left { padding: 5rem 4rem 5rem 0; width: 60%;
              display: flex; flex-direction: column; justify-content: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem;
               background: var(--blue-light); border: 1px solid var(--blue-mid);
               color: var(--blue); font-size: var(--t-xs); font-weight: 800;
               letter-spacing: 0.08em; text-transform: uppercase;
               padding: 0.4rem 1rem; border-radius: var(--r-pill);
               margin-bottom: 1.75rem; width: fit-content; }
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue);
                   animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero__sub { font-size: var(--t-lg); color: var(--body); max-width: 520px;
             margin-bottom: 2.25rem; line-height: 1.72; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__right { position: absolute; top: 0; right: 0; bottom: 0; width: 43%;
               z-index: 1; padding: 1.5rem 1.5rem 1.5rem 0;
               display: flex; align-items: stretch; }
.hero__right img { width: 100%; height: 100%; object-fit: cover; object-position: center top;
                   border-radius: var(--r-lg); }

/* ── TRUST BAR ───────────────────────────────────────────────── */
.trustbar { background: var(--off-white); border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border); padding: 1.1rem 2rem; }
.trustbar__inner { max-width: 1200px; margin: 0 auto;
                   display: flex; align-items: center; justify-content: center;
                   gap: 2rem; flex-wrap: wrap; }
.trustbar__item { display: flex; align-items: center; gap: 0.5rem;
                  color: var(--body); font-size: var(--t-sm); }
.trustbar__item strong { color: var(--blue); font-weight: 800; font-family: 'Poppins', sans-serif; }
.trustbar__sep { width: 1px; height: 16px; background: var(--border); }

/* ── WHAT IS IT ──────────────────────────────────────────────── */
.what { background: var(--white); }
.what__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.what__body p { margin-bottom: 1.15rem; font-size: var(--t-lg); }
.what__pull { background: var(--blue-light); border-left: 3px solid var(--blue);
              border-radius: 0 var(--r-md) var(--r-md) 0;
              padding: 1.25rem 1.5rem; font-size: var(--t-lg); font-weight: 600;
              color: var(--ink); margin: 1.75rem 0; line-height: 1.55; }
.what__diffs { display: flex; flex-direction: column; gap: 1.1rem; }
.diff { display: flex; gap: 1.1rem; align-items: flex-start; }
.diff__icon { width: 44px; height: 44px; border-radius: var(--r-sm);
              background: var(--blue-light); color: var(--blue);
              display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.diff h4 { margin-bottom: 0.2rem; font-size: var(--t-sm); }
.diff p  { font-size: var(--t-sm); color: var(--body); margin: 0; }

/* ── PATHS TEASER ────────────────────────────────────────────── */
.paths-teaser { background: var(--off-white); }
.sh { margin-bottom: 2.5rem; }
.paths-teaser__grid { display: grid; grid-template-columns: repeat(3,1fr);
                      gap: 1px; background: var(--border);
                      border: 1.5px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.path-tile { background: var(--white); padding: 1.5rem;
             display: flex; align-items: flex-start; gap: 0.9rem;
             transition: background 0.18s; }
.path-tile:hover { background: var(--blue-light); }
.path-tile__num { font-family: 'Poppins', sans-serif; font-size: var(--t-xs);
                  font-weight: 800; color: var(--blue); letter-spacing: 0.1em; flex-shrink: 0; margin-top: 0.1rem; }
.path-tile__name { font-family: 'Poppins', sans-serif; font-size: var(--t-sm);
                   font-weight: 600; color: var(--ink); margin-bottom: 0.15rem; }
.path-tile__desc { font-size: var(--t-xs); color: var(--muted); line-height: 1.5; }
.paths-teaser__cta { text-align: center; margin-top: 2rem; }

/* ── CTA STRIP ───────────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--blue-xdark) 0%, var(--blue) 100%);
               padding: 5.5rem 2rem; text-align: center; }
.cta-section h2 { color: #fff; max-width: 700px; margin: 0 auto 0.85rem;
                  font-size: clamp(1.6rem,3vw,2.3rem); }
.cta-section p  { color: rgba(255,255,255,0.78); margin-bottom: 2rem; font-size: var(--t-lg); }
.cta-section__actions { display: flex; justify-content: center; gap: 0.85rem; flex-wrap: wrap; }

/* ── PILLARS — Apple-style cards, equal height ───────────────── */
.pillars { background: var(--off-white); }
.pillars__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
                 gap: 1.5rem; margin-top: 2.5rem; align-items: stretch; }
.pillar { background: #fff; border-radius: 16px;
          padding: 2.5rem; border: 1px solid var(--border);
          box-shadow: 0 10px 30px rgba(0,0,0,0.04);
          transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
                      box-shadow 0.25s ease;
          display: flex; flex-direction: column; }
.pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.pillar__icon { width: 52px; height: 52px; border-radius: var(--r-sm);
                background: var(--blue-light); color: var(--blue);
                display: flex; align-items: center; justify-content: center; margin-bottom: 1.35rem; }
.pillar h3 { margin-bottom: 0.6rem; font-size: var(--t-lg); }
.pillar p  { font-size: var(--t-sm); color: var(--muted); flex: 1; }

/* ── ABOUT ───────────────────────────────────────────────────── */
.story { background: var(--white); }
.story__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.story__body p { margin-bottom: 1.15rem; }
.story__pull { background: var(--blue-light); border-left: 3px solid var(--blue);
               border-radius: 0 var(--r-sm) var(--r-sm) 0;
               padding: 1.25rem 1.5rem; font-size: var(--t-lg); font-weight: 600;
               color: var(--ink); margin: 1.75rem 0; line-height: 1.55;
               box-shadow: var(--shadow-sm); }
.story__mission { background: var(--off-white); border-radius: var(--r-md);
                  padding: 2rem; border: 1px solid var(--border);
                  box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.story__mission h3 { color: var(--blue); margin-bottom: 0.75rem; }
.story__mission p  { font-size: var(--t-sm); }

/* ── VALUES ──────────────────────────────────────────────────── */
.values { background: var(--white); }
.values__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; margin-top: 2rem; align-items: stretch; }
.value-card { background: var(--off-white); border-radius: var(--r-md);
              padding: 2.5rem; border: 1px solid var(--border);
              box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.value-card h3 { color: var(--blue); margin-bottom: 0.5rem; }
.value-card p  { font-size: var(--t-sm); color: var(--muted); }

/* ── FACILITATOR ─────────────────────────────────────────────── */
.facilitator { background: var(--off-white); }
.facilitator__grid { display: grid; grid-template-columns: 340px 1fr; gap: 4rem; align-items: start; }
.facilitator__photo-wrap { display: flex; flex-direction: column; }
.facilitator__photo { width: 100%; aspect-ratio: 4/5;
                      border-radius: var(--r-md) var(--r-md) 0 0; overflow: hidden; }
.facilitator__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.facilitator__credit { background: var(--white); border: 1px solid var(--border);
                       border-top: none; border-radius: 0 0 var(--r-md) var(--r-md);
                       padding: 1rem 1.25rem 1.25rem; text-align: center;
                       box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.facilitator__name  { font-family: 'Poppins', sans-serif; font-weight: 700;
                      font-size: var(--t-xl); color: var(--ink); margin: 0; }
.facilitator__title { font-size: var(--t-xs); font-weight: 800; letter-spacing: 0.1em;
                      text-transform: uppercase; color: var(--blue); margin: 0.3rem 0 0; }
.facilitator__body  { display: flex; flex-direction: column; justify-content: center; }
.facilitator__body h2 { margin-bottom: 1rem; }
.facilitator__body > p { font-size: var(--t-lg); margin-bottom: 1.5rem; line-height: 1.7; }
.facilitator__bullets { display: flex; flex-direction: column; gap: 0.6rem; }
.facilitator__bullets li { font-size: var(--t-sm); color: var(--body);
                            padding-left: 1.4rem; position: relative; line-height: 1.55; }
.facilitator__bullets li::before { content: '→'; position: absolute; left: 0;
                                    color: var(--blue); font-weight: 700; }
.facilitator__creds { display: flex; flex-direction: column; gap: 0.85rem; }
.cred { display: flex; gap: 1rem; align-items: flex-start;
        background: #fff; border-radius: 16px;
        padding: 1.5rem; border: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.04); }
.cred__icon { color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.cred h4 { font-size: var(--t-sm); margin-bottom: 0.15rem; }
.cred p  { font-size: var(--t-xs); color: var(--muted); margin: 0; }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how { background: var(--white); }
.how__steps { display: grid; grid-template-columns: repeat(5,1fr);
              gap: 1.25rem; margin-top: 2.5rem; position: relative; }
.how__steps::before { content: ''; position: absolute; top: 35px; left: 10%; right: 10%;
                      height: 2px; background: var(--blue-mid); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step__num { width: 70px; height: 70px; border-radius: 50%;
             background: var(--blue-light); border: 2px solid var(--blue-mid);
             display: flex; align-items: center; justify-content: center;
             font-family: 'Poppins', sans-serif; font-weight: 800; font-size: var(--t-xl);
             color: var(--blue); margin: 0 auto 1.1rem;
             transition: background 0.2s, color 0.2s, border-color 0.2s; }
.step:hover .step__num { background: var(--blue); color: #fff; border-color: var(--blue); }
.step h3 { font-size: var(--t-sm); margin-bottom: 0.4rem; }
.step p  { font-size: var(--t-xs); color: var(--muted); line-height: 1.55; }

/* ── FOUNDATION ──────────────────────────────────────────────── */
.foundation { background: var(--blue-light); border-top: 1px solid var(--blue-mid); }
.foundation__weeks { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.foundation__week { background: #fff; border-radius: 16px;
                    padding: 2.5rem; border-top: 3px solid var(--blue);
                    box-shadow: 0 10px 30px rgba(0,0,0,0.04); }
.foundation__week h3 { color: var(--blue); margin-bottom: 0.85rem; }
.foundation__week li { font-size: var(--t-sm); padding-left: 1.15rem; position: relative;
                       color: var(--body); margin-bottom: 0.45rem; }
.foundation__week li::before { content: '→'; position: absolute; left: 0;
                                color: var(--blue); font-weight: 700; }

/* ── PROGRAMME STRUCTURE ─────────────────────────────────────── */
.structure__meta { display: flex; align-items: center; justify-content: center;
  gap: 0.85rem; flex-wrap: wrap; margin: 0.85rem 0 2.5rem;
  font-size: var(--t-sm); color: var(--muted); }
.structure__meta strong { color: var(--ink); }
.structure__meta span.dot { color: var(--border); }
.structure__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.25rem; align-items: stretch; }
.struct-card { background: #fff; border-radius: 16px; padding: 2.5rem;
               border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.04);
               display: flex; flex-direction: column; align-items: flex-start; }
.struct-card__icon { width: 44px; height: 44px; border-radius: var(--r-sm);
                     background: var(--blue-light); color: var(--blue);
                     display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.struct-card h3 { font-size: var(--t-sm); margin-bottom: 0.4rem; }
.struct-card p  { font-size: var(--t-xs); color: var(--muted); line-height: 1.6; }

/* ── CAPSTONE ────────────────────────────────────────────────── */
.capstone { background: var(--white); }
.capstone__body { font-size: var(--t-lg); margin: 0.85rem 0 1.5rem; max-width: 680px; }
.capstone__quote { border-left: 3px solid var(--blue); padding: 1.25rem 1.5rem;
                   background: var(--off-white); border-radius: 0 var(--r-sm) var(--r-sm) 0;
                   font-size: var(--t-lg); font-style: italic; color: var(--ink);
                   margin-bottom: 2rem; max-width: 700px;
                   box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.capstone__outcomes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; max-width: 580px; }
.capstone__outcomes li { color: var(--body); font-size: var(--t-sm);
                          padding-left: 1.4rem; position: relative; }
.capstone__outcomes li::before { content: '✓'; position: absolute; left: 0;
                                  color: var(--blue); font-weight: 700; }

/* ── JOIN SECTION ────────────────────────────────────────────── */
.join-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; }

/* ── SCHOOLS ─────────────────────────────────────────────────── */
.schools { background: var(--white); }
.schools__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.schools__benefits { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }
.benefit { display: flex; gap: 1rem; align-items: flex-start;
           padding: 1.5rem; background: #fff; border-radius: 16px;
           border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.04); }
.benefit__icon { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.benefit h4 { font-size: var(--t-sm); margin-bottom: 0.2rem; }
.benefit p  { font-size: var(--t-xs); color: var(--muted); margin: 0; }
.schools__models { display: flex; flex-direction: column; gap: 1rem; }
.model { border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem;
         box-shadow: 0 10px 30px rgba(0,0,0,0.04);
         transition: border-color 0.2s, box-shadow 0.2s; }
.model:hover { border-color: var(--blue); box-shadow: 0 8px 30px rgba(37,99,235,0.1); }
.model h4 { color: var(--blue); margin-bottom: 0.4rem; }
.model p  { font-size: var(--t-xs); color: var(--muted); margin: 0; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq { background: var(--off-white); }
.faq__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.65rem; max-width: 820px; }
.faq-item { background: #fff; border-radius: 16px;
            border: 1px solid var(--border); overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item.is-open { border-color: var(--blue); }
.faq-item__q { padding: 1.25rem 1.5rem; cursor: pointer;
               display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item__q h4 { font-size: var(--t-sm); font-weight: 600; color: var(--ink);
                  line-height: 1.45; margin: 0; flex: 1; }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%;
              background: var(--blue-light); color: var(--blue);
              display: flex; align-items: center; justify-content: center; flex-shrink: 0;
              font-size: 1.35rem; font-weight: 700; line-height: 1;
              transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), background 0.2s, color 0.2s; }
.faq-item.is-open .faq-toggle { background: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-item__a { display: none; padding: 0 1.5rem 1.25rem; }
.faq-item.is-open .faq-item__a { display: block; }
.faq-item__a p { font-size: var(--t-sm); color: var(--body); line-height: 1.75; margin: 0;
                 padding-top: 0.85rem; border-top: 1px solid var(--border); }

/* ── PATHS PAGE ──────────────────────────────────────────────── */
.paths { padding: 4.5rem 0 5.5rem; background: var(--off-white); }
.paths__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; margin-top: 2.5rem; align-items: stretch; }
.path-card { background: #fff; border-radius: 16px;
             border: 1px solid var(--border);
             box-shadow: 0 10px 30px rgba(0,0,0,0.04); overflow: hidden;
             transition: border-color 0.2s, box-shadow 0.25s cubic-bezier(0.34,1.56,0.64,1);
             cursor: pointer; }
.path-card:hover { border-color: var(--blue); box-shadow: 0 12px 36px rgba(37,99,235,0.12); }
.path-card.is-open { border-color: var(--blue); box-shadow: 0 16px 48px rgba(37,99,235,0.14); }
.path-card__header { padding: 1.5rem; position: relative; }
.path-card__meta { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.85rem; }
.path-card__num { font-family: 'Poppins', sans-serif; font-size: var(--t-xs);
                  font-weight: 800; letter-spacing: 0.12em; color: var(--blue);
                  background: var(--blue-light); border: 1px solid var(--blue-mid);
                  padding: 0.25rem 0.7rem; border-radius: var(--r-pill); }
.path-card__icon { width: 52px; height: 52px; border-radius: var(--r-sm);
                   background: var(--blue-light); color: var(--blue);
                   display: flex; align-items: center; justify-content: center; margin-bottom: 0.85rem; }
.path-card__header h3 { margin-bottom: 0.45rem; font-size: var(--t-lg); }
.path-card__header p  { font-size: var(--t-sm); color: var(--muted); line-height: 1.55; margin: 0; }
.path-toggle { position: absolute; top: 1.25rem; right: 1.25rem;
               width: 30px; height: 30px; border-radius: 50%;
               background: var(--blue-light); color: var(--blue);
               display: flex; align-items: center; justify-content: center;
               transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.2s, color 0.2s; }
.path-card.is-open .path-toggle { transform: rotate(45deg); background: var(--blue); color: #fff; }
.path-card__body { display: none; padding: 0 1.5rem 1.5rem; border-top: 1px solid var(--border); }
.path-card.is-open .path-card__body { display: block; }
.body-label { font-size: var(--t-xs); font-weight: 800; letter-spacing: 0.1em;
              text-transform: uppercase; color: var(--blue); margin: 1.25rem 0 0.6rem; }
.path-card__body ul li { font-size: var(--t-sm); color: var(--body); padding-left: 1.2rem;
                          position: relative; margin-bottom: 0.4rem; line-height: 1.5; }
.path-card__body ul li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.tools-wrap { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.tool-chip { font-size: var(--t-xs); font-weight: 700; padding: 0.3rem 0.75rem;
             border-radius: var(--r-pill); background: var(--off-white);
             border: 1px solid var(--border); color: var(--ink-soft); }
.capstone-box { background: var(--blue-light); border-left: 3px solid var(--blue);
                border-radius: 0 var(--r-sm) var(--r-sm) 0;
                padding: 0.85rem 1.1rem; font-size: var(--t-sm); color: var(--ink-soft);
                font-weight: 500; line-height: 1.55; }
.path-card__enrol { margin-top: 1.5rem; }

/* ── SECTION HEAD CENTERING ──────────────────────────────────── */
.section-head-center { text-align: center; }
.section-head-center .label { display: inline-flex; width: fit-content; margin-left: auto; margin-right: auto; }
.section-head-center h2, .section-head-center h1, .section-head-center p { margin-left: auto; margin-right: auto; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 4rem 0 2rem; }
.footer__grid { max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%;
                display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 3rem; }
.footer__logo { margin-bottom: 0.85rem; filter: brightness(10); }
.footer__logo img { height: 36px; }
.footer__tagline { font-size: var(--t-sm); color: rgba(255,255,255,0.45); }
.footer h4 { color: #fff; font-size: var(--t-sm); margin-bottom: 0.85rem;
             font-family: 'Poppins', sans-serif; letter-spacing: 0.04em; }
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a, .footer__links span { font-size: var(--t-sm); color: rgba(255,255,255,0.45);
                                         transition: color 0.18s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { max-width: 1200px; margin: 2.5rem auto 0; padding: 1.25rem 2rem 0; width: 100%;
                  border-top: 1px solid rgba(255,255,255,0.08);
                  display: flex; justify-content: space-between; flex-wrap: wrap;
                  gap: 0.5rem; font-size: var(--t-xs); color: rgba(255,255,255,0.3); }

/* ── MODAL ───────────────────────────────────────────────────── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(15,23,42,0.65);
                 z-index: 2000; align-items: center; justify-content: center;
                 padding: 1.5rem; backdrop-filter: blur(6px); }
.modal-overlay.is-open { display: flex; }
.modal { background: var(--white); border-radius: var(--r-lg); width: 100%; max-width: 560px;
         max-height: 90vh; overflow-y: auto; padding: 2.25rem;
         box-shadow: var(--shadow-lg); position: relative; }
.modal__close { position: absolute; top: 1rem; right: 1rem; background: none; border: none;
                font-size: 1.75rem; cursor: pointer; color: var(--muted); line-height: 1;
                transition: color 0.18s; }
.modal__close:hover { color: var(--ink); }
.modal__steps { display: flex; margin-bottom: 1.75rem; border-bottom: 2px solid var(--border); }
.modal__step-tab { flex: 1; text-align: center; padding: 0.65rem; font-size: var(--t-sm);
                   font-weight: 600; color: var(--muted); border-bottom: 2px solid transparent;
                   margin-bottom: -2px; transition: color 0.2s, border-color 0.2s; }
.modal__step-tab.active { color: var(--blue); border-color: var(--blue); }
.modal-step { display: none; }
.modal-step.active { display: block; }
.modal h2 { font-size: var(--t-2xl); margin-bottom: 0.4rem; }
.modal-step > p { font-size: var(--t-sm); color: var(--muted); margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.05em;
                    text-transform: uppercase; color: var(--ink); }
.form-group input, .form-group select {
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 0.75rem 1rem; font-size: var(--t-sm);
  font-family: 'DM Sans', sans-serif; color: var(--ink);
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%; outline: none; }
.form-group input:focus, .form-group select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.modal-actions { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.btn--back { background: var(--off-white); color: var(--ink); border: 2px solid var(--border);
             font-family: 'Poppins', sans-serif; font-weight: 600; font-size: var(--t-sm);
             padding: 0.65rem 1.35rem; border-radius: var(--r-pill); cursor: pointer; }
.btn--back:hover { background: var(--border); }
.payment-summary { background: var(--off-white); border-radius: var(--r-sm);
                   padding: 1.1rem 1.25rem; display: flex; justify-content: space-between;
                   align-items: center; margin-bottom: 1.25rem; border: 1px solid var(--border); }
.ps-label  { font-size: var(--t-xs); color: var(--muted); font-weight: 600;
             text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.ps-path   { font-weight: 700; color: var(--ink); font-size: var(--t-sm); }
.ps-amount { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: var(--t-xl); color: var(--blue); }
.payment-note { display: flex; align-items: center; gap: 0.4rem; font-size: var(--t-xs);
                color: var(--muted); margin-top: 0.85rem; justify-content: center; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__left { width: 60%; padding: 4rem 2rem 4rem 0; }
  .hero__right { width: 44%; }
  .facilitator__grid { grid-template-columns: 1fr; }
  .facilitator__photo-wrap { max-width: 300px; }
  .story__grid { grid-template-columns: 1fr; }
  .what__grid { grid-template-columns: 1fr; }
  .schools__grid { grid-template-columns: 1fr; }
  .structure__cards { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__left  { width: 100%; padding: 4rem 0 2rem; }
  .hero__right { position: relative; width: 100%; height: 340px; padding: 0 0 1.5rem; }
  .hero__wrap  { min-height: auto; flex-direction: column; }
  .pillars__grid  { grid-template-columns: 1fr 1fr; }
  .paths__grid    { grid-template-columns: 1fr 1fr; }
  .how__steps     { grid-template-columns: repeat(3,1fr); }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .paths-teaser__grid { grid-template-columns: 1fr 1fr; }
  .values__grid   { grid-template-columns: 1fr; }
  .join-grid      { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  section { padding: 3.5rem 0; }
  .container, .container--narrow { padding: 0 1.25rem; }
  .hero__left { padding: 3rem 0 2rem; }
  .pillars__grid  { grid-template-columns: 1fr; }
  .pillar { padding: 2rem; }
  .paths__grid    { grid-template-columns: 1fr; }
  .how__steps     { grid-template-columns: repeat(2,1fr); }
  .how__steps::before { display: none; }
  .foundation__weeks { grid-template-columns: 1fr; }
  .capstone__outcomes { grid-template-columns: 1fr; }
  .footer__grid   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .paths-teaser__grid { grid-template-columns: 1fr; }
  .page-hero      { padding: 3.5rem 1.25rem 3rem; }
  .trustbar__inner { gap: 1.25rem; }
  .trustbar__sep  { display: none; }
  .structure__cards { grid-template-columns: 1fr 1fr; }
}
