/* =====================================================================
   TOUCH ABROAD — Master Stylesheet
   Design system extracted from the approved reference and extended for
   all program / utility pages. Single source of truth for the whole site.
   ===================================================================== */

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

:root {
  /* ── Brand palette ─────────────────────────── */
  --navy:    #0B1E4A;
  --navy-mid:#152B6B;
  --navy-lt: #1E3A8A;
  --red:     #C1272D;
  --red-dk:  #9B1E23;
  --red-lt:  #E8383E;
  --cream:   #F8F5F0;
  --ivory:   #FDFAF6;
  --white:   #FFFFFF;
  --gray-50: #F4F4F6;
  --gray-100:#E8E8EC;
  --gray-300:#C4C4CC;
  --gray-500:#80808C;
  --gray-700:#3C3C48;
  --text:    #0F1523;
  --green:   #1B8A5A;
  --green-bg:#E7F4EE;

  /* ── Type ──────────────────────────────────── */
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;

  /* ── Shape & depth ─────────────────────────── */
  --radius:  12px;
  --radius-lg: 20px;
  --shadow:  0 2px 20px rgba(11,30,74,0.08);
  --shadow-md: 0 8px 40px rgba(11,30,74,0.12);
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* Accessibility: visible keyboard focus + reduced motion */
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 10px 18px; z-index: 2000; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ── UTILITY ─────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.tag { display: inline-block; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.headline { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--navy); line-height: 1.2; }
.headline em { font-style: italic; color: var(--red); }
.subtext { font-family: var(--sans); font-size: 1.0625rem; color: var(--gray-500); line-height: 1.75; margin-top: 16px; }
.text-center { text-align: center; }
.divider { width: 56px; height: 3px; background: var(--red); border-radius: 2px; margin: 20px 0; }
.divider.center { margin-left: auto; margin-right: auto; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--sans); font-size: 0.9375rem; font-weight: 600; padding: 14px 32px; border-radius: 6px; text-decoration: none; transition: all .22s ease; cursor: pointer; border: none; line-height: 1.2; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dk); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(193,39,45,.32); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }
.btn-ghost-light { background: transparent; color: rgba(255,255,255,.9); border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* Image placeholder (swap for <img> when assets supplied) */
.img-placeholder { background: var(--gray-100); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--gray-500); font-size: 0.875rem; font-weight: 500; text-align: center; position: relative; overflow: hidden; padding: 24px; }
.img-placeholder::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,.03) 20px, rgba(0,0,0,.03) 21px); }
.img-placeholder svg { opacity: .35; position: relative; z-index: 1; }
.img-placeholder span { position: relative; z-index: 1; }
/* When you drop a real image in, give it .ratio-img to keep the rounded frame */
.ratio-img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: inherit; }
/* Hero-side illustration (contact page) */
.hero-illus { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); filter: drop-shadow(0 24px 48px rgba(11,30,74,.30)); }
/* PSW funding switch bar */
.switch-bar { background: var(--cream); border-bottom: 1px solid var(--gray-200); }
.switch-bar .container { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; padding: 14px 20px; font-size: .92rem; color: var(--navy); }
.switch-bar .sw-label { font-weight: 700; }
.switch-bar .sw-opt { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; text-decoration: none; font-weight: 600; }
.switch-bar .sw-opt.active { background: var(--navy); color: #fff; }
.switch-bar .sw-opt.link { background: #fff; color: var(--navy); border: 1px solid var(--gray-200); transition: all .15s; }
.switch-bar .sw-opt.link:hover { border-color: var(--red); color: var(--red); }
.switch-bar .sw-note { color: var(--gray-500); }
@media (max-width: 768px){ .switch-bar .sw-note { display: none; } }

/* ── PROMO / FUNDING BAR ─────────────────────── */
.promo-bar { background: linear-gradient(90deg, var(--red-dk), var(--red)); color: #fff; text-align: center; font-size: .85rem; font-weight: 500; padding: 9px 16px; }
.promo-bar a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ── TOPBAR ──────────────────────────────────── */
.topbar { background: var(--navy); color: rgba(255,255,255,.7); font-size: .8125rem; padding: 10px 0; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-left a, .topbar-left span { color: rgba(255,255,255,.7); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar-left a:hover { color: var(--white); }
.topbar-right { display: flex; gap: 14px; }
.social-link { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); text-decoration: none; transition: all .2s; font-size: .75rem; font-weight: 600; }
.social-link:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── NAVBAR ──────────────────────────────────── */
.navbar { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 52px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
.logo-name span { color: var(--red); }
.logo-tagline { font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-500); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--gray-700); text-decoration: none; padding: 8px 14px; border-radius: 6px; transition: all .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--navy); background: var(--gray-50); }
.nav-links a.active { color: var(--red); }
/* Dropdown for Programs */
.nav-item { position: relative; }
.nav-dropdown { position: absolute; top: calc(100% + 6px); left: 0; background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 8px; min-width: 290px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .2s; z-index: 120; }
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: 8px; }
.nav-dropdown a strong { font-size: .9rem; color: var(--navy); font-weight: 600; }
.nav-dropdown a small { font-size: .78rem; color: var(--gray-500); }
.nav-dropdown a:hover { background: var(--gray-50); }
.nav-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--gray-100); padding: 16px 24px 24px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; font-size: .9375rem; font-weight: 500; color: var(--gray-700); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--gray-50); }
.mobile-menu .sub a { padding-left: 16px; font-size: .9rem; color: var(--gray-500); }

/* ── HERO (home) ──────────────────────────────── */
.hero { background: var(--navy); position: relative; overflow: hidden; min-height: 92vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(11,30,74,.97) 45%, rgba(11,30,74,.65) 100%); }
.hero-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 50%, rgba(193,39,45,.12) 0%, transparent 55%); }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-top: 56px; padding-bottom: 56px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(193,39,45,.15); border: 1px solid rgba(193,39,45,.3); color: #f08080; font-size: .8125rem; font-weight: 600; letter-spacing: 1px; padding: 7px 16px; border-radius: 100px; margin-bottom: 24px; text-transform: uppercase; }
.hero-badge span.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red-lt); display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.hero-title { font-family: var(--serif); font-size: clamp(2.25rem, 4.6vw, 3.5rem); font-weight: 800; color: var(--white); line-height: 1.12; margin-bottom: 20px; }
.hero-title em { font-style: italic; color: #f08080; }
.hero-desc { font-size: 1.0625rem; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 26px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-usps { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; max-width: 520px; }
.hero-usp { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: rgba(255,255,255,.85); }
.hero-usp svg { flex-shrink: 0; color: #6fd49a; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 28px; margin-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat-num { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--white); }
.hero-stat-num span { color: var(--red-lt); }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: 2px; letter-spacing: .3px; }

/* ── INTERNAL PAGE HERO ──────────────────────── */
.page-hero { background: var(--navy); position: relative; overflow: hidden; }
.page-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(11,30,74,.97) 40%, rgba(11,30,74,.6) 100%); }
.page-hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-top: 56px; padding-bottom: 56px; }
@media (max-width: 880px) { .page-hero .container, .hero .container { grid-template-columns: 1fr; } }

/* ── LEAD FORM CARD ──────────────────────────── */
.lead-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,.28); overflow: hidden; }
.lead-card-head { background: linear-gradient(135deg, var(--red-dk), var(--red)); padding: 22px 28px; color: #fff; }
.lead-card-head h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; }
.lead-card-head p { font-size: .85rem; opacity: .9; margin-top: 4px; }
.lead-card-body { padding: 24px 28px 28px; }
.lead-foot { font-size: .78rem; color: var(--gray-500); text-align: center; margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* Generic form section (footer / contact) */
.form-shell { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.form-shell .lead-card-head { background: var(--navy); }

/* Form fields */
.field { margin-bottom: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: .8rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: .95rem; color: var(--text);
  padding: 12px 14px; border: 1.5px solid var(--gray-100); border-radius: 8px;
  background: var(--gray-50); transition: border-color .18s, background .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy-lt); background: #fff; box-shadow: 0 0 0 3px rgba(30,58,138,.1); outline: none; }
.field textarea { resize: vertical; min-height: 92px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); background: #fff5f5; }
.field-error { display: none; color: var(--red); font-size: .76rem; margin-top: 5px; font-weight: 500; }
.field.has-error .field-error { display: block; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 6px 0 16px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--red); }
.consent label { font-size: .78rem; color: var(--gray-500); line-height: 1.5; font-weight: 400; }
.consent a { color: var(--navy); text-decoration: underline; }
/* honeypot — visually hidden anti-spam field */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-alert { padding: 12px 16px; border-radius: 8px; font-size: .88rem; font-weight: 500; margin-bottom: 14px; display: none; }
.form-alert.success { display: block; background: var(--green-bg); color: var(--green); border: 1px solid #b6e3cd; }
.form-alert.error { display: block; background: #fdecec; color: var(--red-dk); border: 1px solid #f5c2c4; }
.btn-submit .spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.btn-submit.loading .spinner { display: inline-block; }
.btn-submit.loading .btn-label { opacity: .8; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── TRUST BAR ───────────────────────────────── */
.trust-bar { background: var(--red); padding: 28px 0; }
.trust-bar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-label { font-size: .8rem; color: rgba(255,255,255,.75); font-weight: 500; }
.trust-value { font-family: var(--serif); font-size: 1.2rem; color: var(--white); font-weight: 700; }
.trust-sep { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* ── ABOUT ───────────────────────────────────── */
.about { background: var(--ivory); }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { height: 500px; border-radius: var(--radius-lg); overflow: hidden; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--navy); border-radius: var(--radius); padding: 24px 28px; color: var(--white); text-align: center; box-shadow: var(--shadow-md); }
.about-badge-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.about-badge-num span { color: var(--red-lt); }
.about-badge-label { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.about-checkpoints { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-check { display: flex; align-items: flex-start; gap: 14px; }
.check-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(193,39,45,.1); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.about-check p { font-size: .9375rem; color: var(--gray-700); line-height: 1.5; }
.about-check strong { color: var(--navy); font-weight: 600; }

/* ── AUDIENCE (who we help) ──────────────────── */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.audience-card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 32px 26px; transition: all .25s; }
.audience-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.audience-emoji { width: 56px; height: 56px; border-radius: 14px; background: rgba(11,30,74,.06); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px; }
.audience-card h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--navy); font-weight: 700; margin-bottom: 10px; }
.audience-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.6; }

/* ── SERVICES / OFFERINGS ────────────────────── */
.services { background: var(--white); }
.services-header { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); overflow: hidden; transition: all .28s ease; padding: 30px 26px; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-icon-wrap { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: rgba(11,30,74,.06); }
.service-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.service-desc { font-size: .9rem; color: var(--gray-500); line-height: 1.65; }

/* ── PROGRAM CARDS (home) ────────────────────── */
.programs { background: var(--cream); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 12px; }
.program-card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: all .28s; }
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.program-card.featured { border-top: 3px solid var(--red); }
.program-top { padding: 28px 26px 20px; }
.program-emoji { width: 56px; height: 56px; border-radius: 14px; background: rgba(193,39,45,.08); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 16px; }
.program-pill { display: inline-block; background: rgba(193,39,45,.08); color: var(--red); font-size: .7rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; margin-bottom: 10px; }
.program-card h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.program-tagline { font-size: .82rem; color: var(--red); font-weight: 600; margin-bottom: 12px; }
.program-card > .program-top > p { font-size: .9rem; color: var(--gray-500); line-height: 1.6; }
.program-points { list-style: none; padding: 0 26px; margin: 0 0 4px; display: flex; flex-direction: column; gap: 8px; }
.program-points li { font-size: .85rem; color: var(--gray-700); display: flex; align-items: flex-start; gap: 8px; }
.program-points li::before { content: '✓'; color: var(--red); font-weight: 800; }
.program-outcome { margin: 18px 26px 0; padding: 14px 16px; background: var(--gray-50); border-radius: 10px; }
.program-outcome-label { font-size: .72rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--navy); margin-bottom: 4px; }
.program-outcome-roles { font-size: .82rem; color: var(--gray-500); line-height: 1.5; }
.program-foot { margin-top: auto; padding: 20px 26px 26px; }

/* ── WHY US ──────────────────────────────────── */
.why { background: var(--navy); overflow: hidden; }
.why .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-content .tag { color: rgba(240,128,128,.9); }
.why-content .headline { color: var(--white); }
.why-content .headline em { color: #f08080; }
.why-content .subtext { color: rgba(255,255,255,.6); }
.why-features { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.why-feat { display: flex; align-items: flex-start; gap: 18px; padding: 22px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); transition: background .25s; }
.why-feat:hover { background: rgba(255,255,255,.08); }
.why-feat-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(193,39,45,.2); border: 1px solid rgba(193,39,45,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.4rem; }
.why-feat-title { font-family: var(--serif); font-size: 1.0625rem; color: var(--white); font-weight: 600; margin-bottom: 6px; }
.why-feat-desc { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.why-visual { position: relative; }
.why-img-main { height: 480px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); color: rgba(255,255,255,.25); }
.why-img-over { position: absolute; bottom: 32px; left: -32px; background: var(--white); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-md); max-width: 240px; }
.why-img-over-title { font-family: var(--serif); font-size: 1rem; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.why-img-over-sub { font-size: .8rem; color: var(--gray-500); line-height: 1.5; }
.why-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 36px; }
.why-stat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px 20px; }
.why-stat-num { font-family: var(--serif); font-size: 1.5rem; font-weight: 800; color: #fff; }
.why-stat-num span { color: var(--red-lt); }
.why-stat-label { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: 2px; }

/* ── PROCESS ─────────────────────────────────── */
.process { background: var(--cream); }
.process-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: calc(12.5% + 16px); right: calc(12.5% + 16px); height: 1px; background: var(--gray-100); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--white); border: 2px solid var(--gray-100); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--serif); font-size: 1.375rem; font-weight: 800; color: var(--gray-300); transition: all .3s; }
.process-step:hover .step-num { background: var(--navy); border-color: var(--navy); color: var(--white); }
.process-step.active .step-num { background: var(--red); border-color: var(--red); color: var(--white); }
.step-title { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: .875rem; color: var(--gray-500); line-height: 1.6; }

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials { background: var(--white); }
.testimonials-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--ivory); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 32px; transition: all .25s; }
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testi-card.featured { background: var(--navy); border-color: var(--navy); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; color: #F59E0B; font-size: 1rem; letter-spacing: 1px; }
.testi-text { font-family: var(--serif); font-size: 1rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testi-card.featured .testi-text { color: rgba(255,255,255,.88); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: .875rem; font-weight: 700; color: var(--navy); flex-shrink: 0; }
.testi-card.featured .testi-avatar { background: rgba(255,255,255,.15); color: var(--white); }
.testi-name { font-size: .9rem; font-weight: 600; color: var(--navy); }
.testi-card.featured .testi-name { color: var(--white); }
.testi-role { font-size: .8rem; color: var(--gray-500); }
.testi-card.featured .testi-role { color: rgba(255,255,255,.55); }

/* ── ELIGIBILITY / CHECKLIST ─────────────────── */
.elig { background: var(--ivory); }
.elig-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 940px; margin: 0 auto; }
.elig-item { display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 20px 22px; }
.elig-check { width: 28px; height: 28px; border-radius: 50%; background: var(--green-bg); color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 800; }
.elig-item h4 { font-size: .95rem; color: var(--navy); font-weight: 600; margin-bottom: 3px; }
.elig-item p { font-size: .85rem; color: var(--gray-500); line-height: 1.55; }

/* ── CURRICULUM / FEATURE GRID ───────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.feature-card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 28px 26px; transition: all .25s; }
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-emoji { width: 52px; height: 52px; border-radius: 13px; background: rgba(11,30,74,.06); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
.feature-card h3 { font-family: var(--serif); font-size: 1.08rem; color: var(--navy); font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: .88rem; color: var(--gray-500); line-height: 1.6; }

/* Two-column curriculum list panels */
.curr-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.curr-panel { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 32px; }
.curr-panel h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.curr-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.curr-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .92rem; color: var(--gray-700); }
.curr-list li::before { content: ''; width: 20px; height: 20px; border-radius: 50%; background: rgba(193,39,45,.1); flex-shrink: 0; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C1272D' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* ── SPLIT / IMAGE+TEXT ──────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; min-height: 360px; }
.split-content .tag { margin-bottom: 12px; }

/* role chips */
.role-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.role-chip { background: #fff; border: 1px solid var(--gray-100); border-radius: 100px; padding: 9px 18px; font-size: .85rem; font-weight: 500; color: var(--navy); }
.role-chip.navy { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── CTA BANNER ──────────────────────────────── */
.cta-banner { background: var(--red); position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.06); }
.cta-banner::after { content: ''; position: absolute; bottom: -40px; left: -40px; width: 200px; height: 200px; border-radius: 50%; background: rgba(0,0,0,.06); }
.cta-banner .container { position: relative; z-index: 2; text-align: center; padding: 80px 24px; }
.cta-banner h2 { font-family: var(--serif); font-size: clamp(1.75rem, 4vw, 2.6rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-banner p { font-size: 1.0625rem; color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }

/* ── FAQ ─────────────────────────────────────── */
.faq { background: var(--ivory); }
.faq-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s; }
.faq-item.open { box-shadow: var(--shadow); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; background: none; border: none; cursor: pointer; text-align: left; gap: 16px; }
.faq-q-text { font-family: var(--sans); font-size: .9375rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--gray-50); border: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .25s; color: var(--gray-500); }
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 28px 22px; font-size: .9375rem; color: var(--gray-500); line-height: 1.75; border-top: 1px solid var(--gray-50); padding-top: 16px; }

/* ── BREADCRUMBS ─────────────────────────────── */
.breadcrumbs { background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.breadcrumbs .container { display: flex; align-items: center; gap: 8px; padding-top: 14px; padding-bottom: 14px; font-size: .82rem; color: var(--gray-500); }
.breadcrumbs a { color: var(--navy); text-decoration: none; }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs span.sep { color: var(--gray-300); }

/* ── FOOTER ──────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer-top { padding: 72px 0 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand .logo-img { height: 48px; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.75; margin-top: 16px; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-col h4 { font-family: var(--serif); font-size: 1.0625rem; color: var(--white); font-weight: 700; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .9rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.footer-contact-text { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.footer-contact-text a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-contact-text a:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8375rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8375rem; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── WHATSAPP FLOAT ──────────────────────────── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none; z-index: 999; transition: transform .2s; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ── THANK YOU PAGE ──────────────────────────── */
.ty-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.ty-inner { max-width: 600px; }
.ty-check { width: 92px; height: 92px; border-radius: 50%; background: var(--green-bg); color: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; }
.ty-inner h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.75rem); color: var(--navy); margin-bottom: 16px; }
.ty-inner p { font-size: 1.05rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 14px; }
.ty-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.ty-next { background: var(--ivory); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 22px 26px; margin-top: 36px; text-align: left; }
.ty-next h3 { font-family: var(--serif); color: var(--navy); font-size: 1.05rem; margin-bottom: 8px; }
.ty-next p { font-size: .9rem; margin-bottom: 0; }

/* ── LEGAL / PROSE ───────────────────────────── */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); margin: 36px 0 14px; }
.prose h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--navy); margin: 24px 0 10px; }
.prose p, .prose li { font-size: .98rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 12px; }
.prose ul { padding-left: 22px; margin-bottom: 16px; }
.prose a { color: var(--red); text-decoration: underline; }
.prose .meta { font-size: .85rem; color: var(--gray-500); }

/* ── CONTACT ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin: 28px 0; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(193,39,45,.08); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item h4 { font-size: .95rem; color: var(--navy); margin-bottom: 3px; }
.contact-info-item p, .contact-info-item a { font-size: .92rem; color: var(--gray-500); text-decoration: none; }
.contact-info-item a:hover { color: var(--red); }
.map-embed { margin-top: 28px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-100); height: 280px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ── ANIMATIONS ──────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: .08s; } .fade-up.d2 { transition-delay: .16s; } .fade-up.d3 { transition-delay: .24s; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 880px) {
  .hero .container, .page-hero .container { grid-template-columns: 1fr; gap: 36px; padding-top: 40px; }
  .about .container, .why .container, .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-media { order: 0; }
  .why-visual { display: none; }
  .curr-panels { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .hero { min-height: auto; }
  .about-img-wrap { order: -1; }
  .about-badge { right: 8px; bottom: -12px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid, .feature-grid, .feature-grid.cols-2 { grid-template-columns: 1fr; }
  .programs-grid, .audience-grid, .services-grid { grid-template-columns: 1fr; }
  .elig-grid { grid-template-columns: 1fr; }
  .trust-bar .container { flex-direction: column; gap: 16px; }
  .trust-sep { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .field-row { grid-template-columns: 1fr; }
  .hero-usps { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2rem; }
  .headline { font-size: 1.75rem; }
  .hero-stats { gap: 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}
@media (min-width: 1400px) { .container { max-width: 1320px; } }

/* ── NAV ACTIVE STATE (driven by body[data-page]) ────────────── */
body[data-page="home"]   .nav-home,
body[data-page="psw"]    .nav-psw,
body[data-page="office"] .nav-office,
body[data-page="eca"]    .nav-eca,
body[data-page="contact"].nav-contact { color: var(--red); }
body[data-page="psw"]    .nav-programs,
body[data-page="office"] .nav-programs,
body[data-page="eca"]    .nav-programs { color: var(--red); }

/* ── Free Consultation modal ─────────────────── */
.consult-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: flex-start; justify-content: center;
  padding: 5vh 20px 40px; overflow-y: auto;
  background: rgba(11,30,74,.55); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .25s ease;
}
.consult-modal.open { display: flex; opacity: 1; }
.consult-dialog {
  position: relative; width: 100%; max-width: 480px; margin: auto;
  transform: translateY(16px) scale(.98); transition: transform .25s ease;
}
.consult-modal.open .consult-dialog { transform: none; }
.consult-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 34px; height: 34px; border: none; border-radius: 50%;
  background: rgba(255,255,255,.18); color: #fff; cursor: pointer;
  font-size: 1.4rem; line-height: 1; display: flex; align-items: center;
  justify-content: center; transition: background .2s ease;
}
.consult-close:hover { background: rgba(255,255,255,.32); }
.consult-close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.consult-dialog .lead-card-body { max-height: none; }
body.modal-open { overflow: hidden; }
@media (max-width: 560px) {
  .consult-modal { padding: 0; align-items: stretch; }
  .consult-dialog { max-width: none; min-height: 100%; }
  .consult-dialog .lead-card { border-radius: 0; min-height: 100vh; }
}
