/* =============================================
   LIIV FIT — Shared Stylesheet
   Brand Kit v2.0 · Do not modify token values
   ============================================= */

/* =============================================
   BRAND TOKENS
   ============================================= */
:root {
  --paper:       #FFFFFF;
  --ivory:       #F7F6F2;
  --mist:        #EEEEEC;
  --fog:         #DCDCD8;
  --stone:       #B8B8B3;

  --ink:         #0E0E0C;
  --ink-soft:    #2E2E2C;
  --ink-mute:    #6A6A66;

  --blue:        #1E2F4A;
  --blue-deep:   #131F33;
  --blue-mid:    #3A4E6C;
  --blue-soft:   #5A6E85;
  --blue-wash:   #E6EAF0;

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', ui-monospace, monospace;

  --r-pill: 999px;
  --r-md:   4px;
  --r-sm:   2px;
}

/* =============================================
   RESET + BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--fog);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 48px;
}

/* WORDMARK */
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.14em;
  flex-shrink: 0;
  color: var(--ink);
}
.logo .liiv { font-weight: 900; }
.logo .fit  { font-weight: 400; color: var(--ink-soft); }

.nav-links {
  display: flex;
  gap: 36px;
  flex: 1;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }

.nav-cta { margin-left: auto; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.2s;
}

.mobile-menu {
  display: none;
  background: var(--paper);
  border-top: 1px solid var(--fog);
  padding: 24px 48px 32px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 14px 0;
  border-bottom: 1px solid var(--fog);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--ink); }
.mobile-menu a:last-child { border-bottom: none; }

/* =============================================
   BUTTONS — pill-shaped per brand kit
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  padding: 14px 28px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--ink-soft); }

.btn-accent {
  background: var(--blue);
  color: var(--paper);
}
.btn-accent:hover { background: var(--blue-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-ghost-white {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); }

/* Arrow decoration */
.btn .arrow {
  display: inline-block;
  width: 16px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.btn .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 5px; height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* Tag pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--mist);
  color: var(--ink-mute);
  border: 1px solid var(--fog);
}
.pill .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* =============================================
   SECTION WRAPPER
   ============================================= */
.section { padding: 96px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-ivory { background: var(--ivory); }
.section-blue  { background: var(--blue);  color: var(--paper); }
.section-ink   { background: var(--ink);   color: var(--paper); }

.section-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.section-meta .num { color: var(--blue); }
.section-meta .rule { width: 20px; height: 1px; background: var(--fog); }

h2.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 58px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-blue h2.section-title,
.section-ink  h2.section-title { color: var(--paper); }

.section-lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.section-blue .section-lede,
.section-ink  .section-lede { color: rgba(255,255,255,0.65); }

hr.rule { border: none; border-top: 1px solid var(--fog); }

/* =============================================
   HERO
   ============================================= */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 7vw, 96px);
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 860px;
}

.hero h1 em {
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* Inline quote */
.hero-quote-inline {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--fog);
  max-width: 640px;
}
.hero-quote-inline p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 10px;
}
.hero-quote-inline cite {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-style: normal;
}

/* Page hero variant (about, programs) */
.page-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px 64px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 80px);
  letter-spacing: -0.05em;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 800px;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.7;
}

/* =============================================
   WHY SECTION
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.why-text p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 18px;
}

.closing-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--fog);
}

.founder-block { display: flex; flex-direction: column; }

.founder-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--fog);
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.founder-credit {
  background: var(--blue);
  color: var(--paper);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.founder-credit .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.founder-credit .role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.founder-credit .mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.04em;
  opacity: 0.4;
  display: flex;
  align-items: baseline;
  gap: 0.1em;
}
.founder-credit .mark .fit { font-weight: 400; }

/* =============================================
   PILLARS
   ============================================= */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--fog);
  border: 1px solid var(--fog);
}

.pillar {
  background: var(--paper);
  padding: 40px 36px 52px;
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}

.pillar h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.72;
}

/* =============================================
   RESOURCES
   ============================================= */
.resources-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--fog);
  border: 1px solid var(--fog);
  margin-top: 56px;
}

.resource-card {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 48px;
  padding: 44px 48px;
  align-items: start;
  transition: background 0.2s;
}
.resource-card:hover { background: var(--ivory); }

.resource-header { margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }

.resource-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(19px, 1.8vw, 24px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}

.resource-hook {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}

.resource-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.resource-list li {
  font-size: 0.9rem;
  color: var(--ink-mute);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.resource-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 5px; height: 1px;
  background: var(--blue);
}

.resource-cta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 2px;
}

/* How-it-works steps */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.how-step { display: flex; gap: 14px; align-items: flex-start; }
.step-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--blue);
  flex-shrink: 0;
  width: 20px;
  margin-top: 2px;
}
.step-text { font-size: 0.9rem; color: var(--ink-mute); line-height: 1.5; }
.resource-note {
  font-size: 0.87rem;
  font-style: italic;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* =============================================
   EMAIL BAND — navy per brand kit
   ============================================= */
.email-band {
  background: var(--blue);
  padding: 80px 48px;
}
.email-band-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.email-band h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--paper);
  margin-bottom: 14px;
}
.email-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 36px;
}
.email-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto 14px;
}
.email-input {
  flex: 1;
  height: 52px;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-right: none;
  color: var(--paper);
  outline: none;
  border-radius: var(--r-pill) 0 0 var(--r-pill);
  transition: border-color 0.2s;
}
.email-input::placeholder { color: rgba(255,255,255,0.35); }
.email-input:focus { border-color: rgba(255,255,255,0.55); }
.email-submit {
  height: 52px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  background: var(--paper);
  color: var(--blue);
  border: none;
  cursor: pointer;
  border-radius: 0 var(--r-pill) var(--r-pill) 0;
  transition: background 0.2s;
  white-space: nowrap;
}
.email-submit:hover { background: var(--blue-wash); }
.email-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   FOOTER — navy bg per brand kit
   ============================================= */
.footer {
  background: var(--blue);
  color: var(--paper);
  padding: 80px 48px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(64px, 10vw, 140px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  display: flex;
  align-items: baseline;
  gap: 0.14em;
  margin-bottom: 20px;
}
.footer-mark .liiv { font-weight: 900; }
.footer-mark .fit  { font-weight: 400; opacity: 0.6; }

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 48px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.35;
  flex-shrink: 0;
}
.footer-disclaimers { max-width: 680px; }
.disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
  margin-bottom: 8px;
}
.disclaimer strong { color: rgba(255,255,255,0.4); font-weight: 500; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-block { max-width: 440px; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .section { padding: 64px 20px; }
  .hero { padding: 64px 20px; }
  .hero h1 { font-size: 44px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .page-hero { padding: 64px 20px 48px; }

  .pillars-grid {
    grid-template-columns: 1fr;
    background: var(--paper);
    border: none;
    gap: 0;
  }
  .pillar { border: 1px solid var(--fog); border-bottom: none; }
  .pillar:last-child { border-bottom: 1px solid var(--fog); }

  .resource-card { grid-template-columns: 1fr; gap: 28px; padding: 28px 20px; }
  .resource-cta-col { align-items: flex-start; }

  .email-form { flex-direction: column; }
  .email-input  { border-right: 1px solid rgba(255,255,255,0.25); border-bottom: none; border-radius: var(--r-pill); }
  .email-submit { border-radius: var(--r-pill); height: 48px; }

  .footer { padding: 64px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }

  .mobile-menu { padding: 20px 20px 28px; }
}

/* =============================================
   STAT BAR — A few numbers (about.html)
   ============================================= */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--fog);
  border: 1px solid var(--fog);
  margin-top: 32px;
}
.stat-item {
  background: var(--paper);
  padding: 40px 32px;
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* =============================================
   PILLARS GRID — 2×2 variant (about.html)
   ============================================= */
.pillars-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--fog);
  border: 1px solid var(--fog);
}

/* =============================================
   PROGRAM CARDS (programs.html)
   ============================================= */
.programs-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--fog);
  border: 1px solid var(--fog);
  margin-top: 56px;
}
.program-card {
  background: var(--paper);
  padding: 56px 48px;
}
.program-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.coming-soon-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-wash);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}
.program-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 64px;
  align-items: start;
}
.program-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 10px;
}
.program-headline {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 24px;
}
.program-desc {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.72;
  max-width: 600px;
  margin-bottom: 28px;
}
.program-section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
  margin-top: 28px;
}
.program-who {
  font-size: 0.93rem;
  color: var(--ink-mute);
  line-height: 1.65;
  font-style: italic;
}
.program-cta-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.program-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.program-price-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}
.program-note {
  font-size: 0.87rem;
  font-style: italic;
  color: var(--ink-mute);
  line-height: 1.6;
  border-top: 1px solid var(--fog);
  padding-top: 16px;
  margin-top: 4px;
}

/* =============================================
   FAQ (programs.html)
   ============================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--fog);
  margin-top: 56px;
}
.faq-item {
  padding: 36px 40px;
  border-bottom: 1px solid var(--fog);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 12px;
}
.faq-a {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.72;
}

/* =============================================
   CTA BAND (about.html + programs.html)
   ============================================= */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 48px;
  text-align: center;
}
.cta-band-inner {
  max-width: 560px;
  margin: 0 auto;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: 14px;
}
.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 36px;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   RESPONSIVE — new components
   ============================================= */
@media (max-width: 1024px) {
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pillars-grid-4 {
    grid-template-columns: 1fr;
    background: var(--paper);
    border: none;
    gap: 0;
  }
  .program-card { padding: 32px 20px; }
  .program-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-item { padding: 24px 20px; }
  .cta-band { padding: 64px 20px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; justify-content: center; }
}
