/* ═══════════════════════════════════════════════════════════
   JOMADA FOUNDATION — Design System
   Primary: Deep Navy #7b3294 | Accent: Amber Gold #cd8e3e
   Font: Plus Jakarta Sans + Cormorant Garamond
   ═══════════════════════════════════════════════════════════ */

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

/* ── TOKENS ── */
:root {
  --navy:      #7b3294;
  --navy2:     #5a2570;
  --navy3:     #3d1a4d;
  --gold:      #cd8e3e;
  --gold2:     #e0a855;
  --gold3:     #f0c07a;
  --gold-soft: rgba(205,142,62,.12);
  --gold-glow: rgba(205,142,62,.22);
  --white:     #FFFFFF;
  --cream:     #FAFAF8;
  --mist:      #F4F4F0;
  --border:    rgba(0,0,0,.08);
  --text:      #2C2C3A;
  --soft:      #6B6B80;
  --green:     #22c55e;
  --red:       #ef4444;
  --r:         14px;
  --r-sm:      8px;
  --r-lg:      24px;
  --shadow:    0 4px 24px rgba(123,50,148,.10);
  --shadow-lg: 0 16px 48px rgba(123,50,148,.16);
  --font:      'Plus Jakarta Sans', sans-serif;
  --serif:     'Cormorant Garamond', serif;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--mist); }
::-webkit-scrollbar-thumb { background: var(--gold-glow); border-radius: 3px; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(123,50,148,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(205,142,62,.15);
  box-shadow: 0 2px 32px rgba(0,0,0,.25);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 48px; width: auto; max-width: 200px;
  object-fit: contain;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--serif); font-size: 17px; font-weight: 600;
  color: var(--white); letter-spacing: .02em; line-height: 1.1;
}
.nav-logo-tagline {
  font-size: 9.5px; font-weight: 500; letter-spacing: .12em;
  color: var(--gold2); text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.75);
  padding: 8px 14px; border-radius: var(--r-sm);
  transition: var(--transition); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white); background: rgba(205,142,62,.12);
}
.nav-cta-btn {
  background: var(--gold); color: var(--navy3);
  padding: 10px 22px; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  transition: var(--transition); white-space: nowrap;
  box-shadow: 0 4px 16px rgba(205,142,62,.3);
}
.nav-cta-btn:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(205,142,62,.4); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; justify-content: center; align-items: center;
  background: rgba(255,255,255,.08); border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.12);
  transition: var(--transition);
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--navy3);
  border-top: 1px solid rgba(205,142,62,.12);
  padding: 16px 24px 20px;
  gap: 4px;
}
.nav-mobile a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.75);
  padding: 12px 16px; border-radius: var(--r-sm);
  transition: var(--transition); display: block;
}
.nav-mobile a:hover { color: var(--white); background: rgba(205,142,62,.1); }
.nav-mobile .nav-cta-btn { margin-top: 8px; text-align: center; display: block; }
.nav-mobile.open { display: flex; }

/* ══════════════════════════════════════════
   PAGE WRAPPER — offset for fixed nav
══════════════════════════════════════════ */
.page-wrapper { padding-top: 72px; }

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  min-height: 92vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/hero_banner.png');
  background-size: cover; background-position: center;
  opacity: .18;
  filter: saturate(1.2);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(123,50,148,.97) 0%, rgba(123,50,148,.85) 50%, rgba(205,142,62,.08) 100%);
}
.hero-grid-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(205,142,62,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(205,142,62,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(205,142,62,.07) 0%, transparent 65%);
  top: -200px; right: -100px; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 80px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-content {}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(205,142,62,.12); border: 1px solid rgba(205,142,62,.3);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 28px;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold3); animation: pulse-dot 2s infinite; }
.hero-badge span { font-size: 12px; font-weight: 600; color: var(--gold2); letter-spacing: .06em; text-transform: uppercase; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.6)} }
.hero h1 {
  font-family: var(--font); font-weight: 800;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.05; letter-spacing: -.03em;
  color: var(--white); margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--gold2); }
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,.6);
  font-weight: 300; line-height: 1.8; margin-bottom: 40px; max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.btn-primary {
  background: var(--gold); color: var(--navy3);
  padding: 14px 32px; border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 700; letter-spacing: .04em;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(205,142,62,.35);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(205,142,62,.45); }
/* White-text variant — use when btn-primary sits on a purple/navy background */
.btn-primary.btn-white { color: var(--white) !important; }
.btn-primary.btn-white:hover { color: var(--white) !important; }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
  padding: 14px 32px; border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 600; letter-spacing: .04em;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--gold2); color: var(--gold2); transform: translateY(-2px); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.08); border-radius: var(--r); overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.hero-stat { background: rgba(123,50,148,.7); padding: 20px; text-align: center; backdrop-filter: blur(8px); }
.hero-stat-num { font-size: 28px; font-weight: 800; color: var(--gold2); letter-spacing: -.02em; display: block; font-family: var(--font); }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; font-weight: 500; margin-top: 3px; display: block; }
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-image-card {
  width: 100%; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 3px solid rgba(205,142,62,.2);
  position: relative;
}
.hero-image-card img { width: 100%; height: 420px; object-fit: cover; }
.hero-float-card {
  position: absolute; bottom: -20px; left: -24px;
  background: var(--white); border-radius: var(--r);
  padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.hero-float-icon { width: 40px; height: 40px; background: rgba(205,142,62,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.hero-float-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.hero-float-text span { font-size: 12px; color: var(--soft); }

/* ══════════════════════════════════════════
   TRUST BAR / ANNOUNCEMENT
══════════════════════════════════════════ */
.trust-bar {
  background: var(--navy3);
  border-top: 1px solid rgba(205,142,62,.12);
  border-bottom: 1px solid rgba(205,142,62,.12);
  padding: 14px 32px;
}
.trust-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
}
.trust-item-icon { font-size: 16px; }
.trust-item span { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.6); }
.trust-item strong { color: var(--gold2); }
.trust-sep { width: 1px; height: 20px; background: rgba(255,255,255,.12); }

/* ══════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════ */
.section { padding: 96px 32px; }
.section-sm { padding: 64px 32px; }
.container { max-width: 1280px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.section-tag::before { content: ''; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-title {
  font-family: var(--font); font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1; letter-spacing: -.025em;
  color: var(--navy); margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--gold); }
.section-subtitle { font-size: 16.5px; color: var(--soft); font-weight: 300; line-height: 1.75; max-width: 640px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-tag { justify-content: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ══════════════════════════════════════════
   ABOUT INTRO SECTION (Two-Column)
══════════════════════════════════════════ */
.about-intro { background: var(--white); }
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-intro-visual { position: relative; }
.about-intro-img {
  width: 100%; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-intro-img img { width: 100%; height: 480px; object-fit: cover; }
.about-accent-card {
  position: absolute; top: -20px; right: -20px;
  background: var(--navy); border-radius: var(--r);
  padding: 20px 24px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(205,142,62,.2);
}
.about-accent-card-num { font-size: 32px; font-weight: 800; color: var(--gold2); letter-spacing: -.02em; display: block; }
.about-accent-card-label { font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; font-weight: 500; margin-top: 2px; }
.about-intro-content {}
.about-lead {
  font-size: 18px; font-weight: 600; color: var(--navy);
  line-height: 1.55; margin-bottom: 20px;
}
.about-body { font-size: 15.5px; color: var(--soft); line-height: 1.8; margin-bottom: 28px; }
.values-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.value-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--mist); border-radius: var(--r-sm);
  padding: 12px 16px; border: 1px solid var(--border);
  transition: var(--transition);
}
.value-pill:hover { border-color: var(--gold); background: rgba(205,142,62,.04); }
.value-pill-icon { font-size: 20px; flex-shrink: 0; }
.value-pill-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.value-pill-text span { font-size: 11.5px; color: var(--soft); }

/* ══════════════════════════════════════════
   STATS COUNTER
══════════════════════════════════════════ */
.stats-section { background: var(--navy); position: relative; overflow: hidden; }
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(205,142,62,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(205,142,62,.04) 1px,transparent 1px);
  background-size: 64px 64px;
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat-item {
  padding: 48px 32px; text-align: center;
  border-right: 1px solid rgba(205,142,62,.12);
  border-bottom: none;
}
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.stat-number {
  font-size: clamp(36px, 4vw, 52px); font-weight: 800; color: var(--gold2);
  letter-spacing: -.03em; display: block; line-height: 1;
  font-family: var(--font);
}
.stat-suffix { font-size: 22px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 8px; display: block; font-weight: 400; }

/* ══════════════════════════════════════════
   SERVICES / PROGRAMS CARDS
══════════════════════════════════════════ */
.services-section { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--r);
  padding: 32px 28px; border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold3));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(205,142,62,.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; background: rgba(123,50,148,.06);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px; transition: var(--transition);
  border: 1px solid rgba(123,50,148,.08);
}
.service-card:hover .service-icon { background: var(--gold-soft); border-color: var(--gold-glow); }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--soft); line-height: 1.7; margin-bottom: 18px; }
.service-link {
  font-size: 13px; font-weight: 700; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ══════════════════════════════════════════
   HOW YOU CAN HELP (CTA Blocks)
══════════════════════════════════════════ */
.help-section { background: var(--white); }
.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.help-card {
  background: var(--mist); border-radius: var(--r);
  padding: 40px 28px; text-align: center;
  border: 2px solid transparent; transition: var(--transition);
  position: relative; overflow: hidden;
}
.help-card:hover { border-color: var(--gold); background: rgba(205,142,62,.03); transform: translateY(-3px); box-shadow: var(--shadow); }
.help-icon { font-size: 40px; margin-bottom: 18px; display: block; }
.help-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.help-card p { font-size: 14px; color: var(--soft); line-height: 1.7; margin-bottom: 24px; }
.help-btn {
  background: var(--navy); color: var(--white);
  padding: 12px 28px; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  transition: var(--transition); display: inline-block;
}
.help-btn:hover { background: var(--gold); color: var(--navy3); }
.help-card.featured { background: var(--navy); border-color: var(--gold); }
.help-card.featured h3 { color: var(--white); }
.help-card.featured p { color: rgba(255,255,255,.6); }
.help-card.featured .help-btn { background: var(--gold); color: var(--navy3); }
.help-card.featured .help-btn:hover { background: var(--gold2); }

/* ══════════════════════════════════════════
   BOARD MEMBERS
══════════════════════════════════════════ */
.board-section { background: var(--cream); }
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.board-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.board-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Photo wrap — portrait aspect */
.board-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.board-photo-wrap > img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform .5s ease;
}
.board-card:hover .board-photo-wrap > img { transform: scale(1.05); }

/* Dark gradient from bottom */
.board-photo-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,26,77,.94) 0%, rgba(61,26,77,.40) 45%, transparent 72%);
  pointer-events: none;
}

/* Name + role pill at bottom of photo */
.board-pill {
  position: absolute; bottom: 16px; left: 16px; right: 58px;
  z-index: 2;
}
.board-pill-name {
  display: block; font-size: 15px; font-weight: 700; color: var(--white);
  margin-bottom: 4px; line-height: 1.25;
}
.board-pill-creds {
  display: block; font-size: 11px; color: rgba(255,255,255,.6); margin-bottom: 6px;
}
.board-pill-role {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  color: var(--navy3); background: var(--gold);
  padding: 3px 12px; border-radius: 100px; letter-spacing: .04em;
}

/* + toggle button (top-right) */
.board-plus-btn {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.55);
  color: var(--white); font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition); z-index: 3;
}
.board-plus-btn:hover {
  background: var(--gold); border-color: var(--gold); color: var(--navy3);
}

/* Social action stack that appears when + clicked */
.board-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 4;
  opacity: 0; pointer-events: none;
  transform: scale(0.7) translateY(-8px);
  transform-origin: top right;
  transition: opacity .22s ease, transform .22s cubic-bezier(.4,0,.2,1);
}
.board-actions.open {
  opacity: 1; pointer-events: all;
  transform: scale(1) translateY(0);
}

.board-action-close,
.board-action-link {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer; border: none;
  transition: var(--transition); text-decoration: none;
  box-shadow: 0 3px 12px rgba(0,0,0,.28);
}
.board-action-close {
  background: rgba(255,255,255,.92); color: var(--navy);
}
.board-action-close:hover { background: var(--white); transform: scale(1.1); }
.board-action-link {
  background: var(--gold); color: var(--navy3);
}
.board-action-link:hover { background: var(--gold2); transform: scale(1.1); }

/* Bio text below photo */
.board-bio-area { padding: 18px 20px 22px; }
.board-bio-area p { font-size: 13px; color: var(--soft); line-height: 1.7; }

/* ══════════════════════════════════════════
   TESTIMONIALS / STORIES
══════════════════════════════════════════ */
.testimonials-section { background: var(--navy); position: relative; overflow: hidden; }
.testimonials-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(205,142,62,.03) 1px,transparent 1px), linear-gradient(90deg,rgba(205,142,62,.03) 1px,transparent 1px);
  background-size: 56px 56px;
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,.5); }
.testimonials-section .section-tag { color: var(--gold2); }
.testimonials-section .section-tag::before { background: var(--gold2); }
.testimonial-slider { position: relative; }
.testimonial-track { overflow: hidden; }
.testimonial-slides { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testimonial-slide { min-width: 100%; }
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(205,142,62,.15);
  border-radius: var(--r-lg);
  padding: 48px 52px;
  max-width: 820px; margin: 0 auto;
  position: relative;
}
.testimonial-quote {
  font-size: 80px; font-family: var(--serif);
  color: rgba(205,142,62,.15); line-height: 1;
  position: absolute; top: 16px; left: 32px; pointer-events: none;
}
.testimonial-text {
  font-size: 19px; font-weight: 300; color: rgba(255,255,255,.88);
  line-height: 1.75; font-style: italic;
  font-family: var(--serif); margin-bottom: 32px;
  position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--gold-soft); border: 2px solid var(--gold-glow); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--gold2); display: block; }
.testimonial-desc { font-size: 12.5px; color: rgba(255,255,255,.45); }
.slider-controls {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 36px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: none;
  cursor: pointer; transition: var(--transition);
}
.slider-dot.active { background: var(--gold2); width: 24px; border-radius: 4px; }
.slider-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: var(--white); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer;
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy3); }

/* ══════════════════════════════════════════
   FAQ / ACCORDION
══════════════════════════════════════════ */
.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: rgba(205,142,62,.3); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer;
  gap: 12px; background: var(--white);
  transition: var(--transition);
}
.faq-question:hover { background: var(--mist); }
.faq-item.open .faq-question { background: rgba(205,142,62,.05); }
.faq-q-text { font-size: 14.5px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--mist); display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--transition); color: var(--navy);
  border: 1px solid var(--border);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--navy3); border-color: var(--gold); transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 20px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 14px; color: var(--soft); line-height: 1.75; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(205,142,62,.06) 0%, transparent 60%);
}
.cta-banner-inner {
  position: relative; z-index: 1;
  max-width: 860px; margin: 0 auto;
  text-align: center; padding: 88px 32px;
}
.cta-banner-tag { color: var(--gold2); }
.cta-banner-tag::before { background: var(--gold2); }
.cta-banner h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: var(--white); letter-spacing: -.025em; margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,.6); font-weight: 300; line-height: 1.75; margin-bottom: 40px; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--navy3); border-top: 1px solid rgba(205,142,62,.1); }
.footer-top {
  padding: 72px 32px 48px;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 52px;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.footer-logo-name { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--white); }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.8; margin-bottom: 24px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy3); }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold2); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold2); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; }
.footer-contact-icon { font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }
.footer-contact-item strong { color: rgba(255,255,255,.75); font-weight: 500; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 32px;
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-bottom-left { font-size: 12.5px; color: rgba(255,255,255,.3); }
.footer-bottom-left strong { color: rgba(255,255,255,.5); font-weight: 500; }
.footer-bottom-right { display: flex; gap: 20px; }
.footer-bottom-right a { font-size: 12.5px; color: rgba(255,255,255,.3); transition: var(--transition); }
.footer-bottom-right a:hover { color: var(--gold2); }

/* ══════════════════════════════════════════
   WHATSAPP FLOAT + CHATBOT
══════════════════════════════════════════ */
.wa-float-wrapper {
  position: fixed; bottom: 28px; right: 28px; z-index: 8888;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.wa-popover {
  background: var(--white); border-radius: var(--r);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  border: 1px solid var(--border);
  width: 280px; overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0) translateY(10px);
  opacity: 0; pointer-events: none;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}
.wa-popover.open {
  transform: scale(1) translateY(0);
  opacity: 1; pointer-events: all;
}
.wa-popover-header {
  background: #25D366; padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
}
.wa-popover-header-icon { font-size: 22px; color: var(--white); }
.wa-popover-header-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); }
.wa-popover-header-text span { font-size: 11px; color: rgba(255,255,255,.7); }
.wa-options { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.wa-option {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  background: var(--mist); border: 1px solid var(--border);
  font-size: 13px; font-weight: 500; color: var(--navy);
  transition: var(--transition); cursor: pointer; text-decoration: none;
}
.wa-option:hover { background: rgba(37,211,102,.08); border-color: rgba(37,211,102,.3); color: #1a7a40; }
.wa-option-icon { font-size: 16px; flex-shrink: 0; }
.wa-fab {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 8px 28px rgba(37,211,102,.4);
  transition: var(--transition); cursor: pointer; border: none;
}
.wa-fab:hover { background: #1ebe5a; transform: scale(1.08); box-shadow: 0 12px 36px rgba(37,211,102,.5); }

/* Chatbot */
.chat-widget {
  position: fixed; bottom: 28px; left: 28px; z-index: 8888;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
}
.chat-window {
  width: 320px; background: var(--white); border-radius: var(--r);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  border: 1px solid var(--border); overflow: hidden;
  transform-origin: bottom left;
  transform: scale(0) translateY(10px);
  opacity: 0; pointer-events: none;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s ease;
  display: flex; flex-direction: column; max-height: 440px;
}
.chat-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chat-header {
  background: var(--navy); padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-soft); border: 2px solid var(--gold-glow); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.chat-header-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); }
.chat-header-text span { font-size: 10.5px; color: var(--green); font-weight: 500; }
.chat-close { background: rgba(255,255,255,.1); border: none; color: rgba(255,255,255,.7); font-size: 15px; width: 28px; height: 28px; border-radius: 6px; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.chat-close:hover { background: rgba(255,255,255,.2); color: var(--white); }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { max-width: 85%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-bubble {
  padding: 10px 14px; border-radius: 14px;
  font-size: 13px; line-height: 1.55;
}
.chat-msg.bot .chat-bubble { background: var(--mist); color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg.user .chat-bubble { background: var(--navy); color: var(--white); border-bottom-right-radius: 4px; }
.chat-time { font-size: 10px; color: var(--soft); margin-top: 3px; padding: 0 4px; }
.chat-suggestions { padding: 8px 16px 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.chat-suggest {
  background: var(--mist); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 12px;
  font-size: 11.5px; font-weight: 500; color: var(--navy);
  cursor: pointer; transition: var(--transition);
}
.chat-suggest:hover { background: var(--gold-soft); border-color: var(--gold-glow); color: var(--gold); }
.chat-input-row {
  display: flex; gap: 8px; padding: 12px 14px;
  border-top: 1px solid var(--border);
}
.chat-input {
  flex: 1; background: var(--mist); border: 1px solid var(--border);
  border-radius: 100px; padding: 9px 14px; font-family: var(--font);
  font-size: 13px; color: var(--text); outline: none;
  transition: var(--transition);
}
.chat-input:focus { border-color: var(--gold-glow); background: var(--white); }
.chat-send {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-size: 14px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); border: none; cursor: pointer; flex-shrink: 0;
}
.chat-send:hover { background: var(--gold); }
.chat-fab {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: var(--shadow-lg);
  transition: var(--transition); cursor: pointer; border: none;
  position: relative;
}
.chat-fab:hover { background: var(--navy2); transform: scale(1.08); }
.chat-fab-badge {
  position: absolute; top: -2px; right: -2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}

/* ══════════════════════════════════════════
   SCROLL-REVEAL ANIMATION
══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: var(--navy); padding: 80px 32px 72px;
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(205,142,62,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(205,142,62,.04) 1px,transparent 1px);
  background-size: 56px 56px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-hero-tag { color: var(--gold2); justify-content: center; }
.page-hero-tag::before { background: var(--gold2); }
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: var(--white); letter-spacing: -.025em; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.6); font-weight: 300; line-height: 1.75; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 24px; }
.breadcrumb a, .breadcrumb span { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.4); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold2); }
.breadcrumb-sep { color: rgba(255,255,255,.2); font-size: 10px; }

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 28px; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gold-soft); border: 1px solid var(--gold-glow); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-info-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.contact-info-item span { font-size: 14px; color: var(--soft); }
.form-card { background: var(--white); border-radius: var(--r); padding: 40px 36px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 700; color: var(--navy); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--mist);
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 12px 16px; font-family: var(--font); font-size: 14.5px;
  color: var(--text); outline: none; transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(205,142,62,.12); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; appearance: none; }
.form-submit {
  width: 100%; background: var(--navy); color: var(--white);
  padding: 15px; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 700; letter-spacing: .04em;
  transition: var(--transition); margin-top: 8px;
}
.form-submit:hover { background: var(--gold); color: var(--navy3); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(205,142,62,.3); }

/* ══════════════════════════════════════════
   BLOG CARDS
══════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white); border-radius: var(--r);
  overflow: hidden; border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb { height: 190px; background: var(--navy); overflow: hidden; position: relative; }
.blog-thumb-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-thumb-img { transform: scale(1.05); }
.blog-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); }
.blog-cat { position: absolute; top: 12px; left: 12px; }
.blog-cat span { background: var(--gold); color: var(--navy3); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 3px 10px; border-radius: 4px; }
.blog-info { padding: 22px 20px; }
.blog-date { font-size: 11.5px; color: var(--soft); font-weight: 500; margin-bottom: 8px; display: block; }
.blog-title { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
.blog-excerpt { font-size: 13px; color: var(--soft); line-height: 1.7; margin-bottom: 16px; }
.blog-read-link { font-size: 12.5px; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 5px; transition: var(--transition); }
.blog-read-link:hover { gap: 9px; }

/* ══════════════════════════════════════════
   PROGRAM DETAIL CARDS
══════════════════════════════════════════ */
.programs-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.program-card {
  background: var(--white); border-radius: var(--r);
  border: 1px solid var(--border); overflow: hidden;
  transition: var(--transition);
}
.program-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.program-card-top {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(123,50,148,.03) 0%, transparent 100%);
}
.program-card-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.program-card h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.program-card-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; background: rgba(205,142,62,.1); color: #7a5c1e; border-radius: 4px; padding: 3px 10px; }
.program-card-body { padding: 22px 28px; }
.program-card-body p { font-size: 14px; color: var(--soft); line-height: 1.75; margin-bottom: 16px; }
.program-features { display: flex; flex-direction: column; gap: 8px; }
.program-feature { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--text); }
.program-feature::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════════════════
   IMPACT PAGE
══════════════════════════════════════════ */
.impact-philosophy { background: var(--navy); }
.impact-philosophy h2 { color: var(--white); }
.impact-philosophy p { color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.8; }
.impact-stories-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.impact-story-card {
  background: var(--white); border-radius: var(--r);
  overflow: hidden; border: 1px solid var(--border);
  transition: var(--transition);
}
.impact-story-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.impact-story-top { background: linear-gradient(135deg, var(--navy), var(--navy2)); padding: 28px; }
.impact-story-avatar { font-size: 40px; margin-bottom: 10px; display: block; }
.impact-story-name { font-size: 16px; font-weight: 700; color: var(--gold2); margin-bottom: 3px; }
.impact-story-level { font-size: 11.5px; color: rgba(255,255,255,.5); font-weight: 500; }
.impact-story-body { padding: 22px; }
.impact-story-body p { font-size: 13.5px; color: var(--soft); line-height: 1.7; font-style: italic; }

/* ══════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 96px; right: 28px; z-index: 8000;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  border: 1.5px solid rgba(205,142,62,.3);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  box-shadow: var(--shadow); transition: var(--transition);
  opacity: 0; pointer-events: none; cursor: pointer;
  transform: translateY(10px);
  overflow: hidden;
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-navy { background: var(--navy); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.mt-auto { margin-top: auto; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(34px, 6vw, 52px); }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-visual { display: none; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(205,142,62,.12); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}
@media (max-width: 768px) {
  .section { padding: 64px 20px; }
  .section-sm { padding: 48px 20px; }
  .nav-links, .nav-cta-btn { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .programs-full-grid { grid-template-columns: 1fr; }
  .impact-stories-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 20px; }
  .trust-sep { display: none; }
  .hero-stats { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .hero { min-height: auto; }
  .hero-inner { padding: 56px 20px; }
  .board-grid { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
}
