/* ============================================================
   KALEIDOSCOPE CONSOLIDATED STYLESHEET
   Complete superset of all mockup styles
   Generated from 15 original mockup HTML files
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Color palette */
  --cream: #FFF8F0;
  --cream-warm: #FFF3E6;
  --blush: #F4D6CC;
  --blush-deep: #E8A99A;
  --sage: #B8CFC4;
  --sage-deep: #8FB5A6;
  --sage-muted: #D4E4DC;
  --lavender: #D4C8E2;
  --lavender-deep: #A68DC2;
  --sky: #B8D4E8;
  --sky-deep: #7BAECC;
  --gold: #E8C97A;
  --gold-warm: #D4A843;
  --teal: #5BA5A5;
  --teal-deep: #3D8282;
  --coral: #E07A6A;
  --navy: #2C3347;
  --navy-soft: #3D465E;

  /* Text colors */
  --text-primary: #2C3347;
  --text-secondary: #5A6175;
  --text-light: #8891A5;
  --white: #FFFFFF;

  /* Shadows */
  --shadow-soft: 0 2px 20px rgba(44, 51, 71, 0.06);
  --shadow-medium: 0 4px 30px rgba(44, 51, 71, 0.1);
  --shadow-glow: 0 8px 40px rgba(91, 165, 165, 0.12);

  /* Border radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}


/* ============================================================
   2. RESET & BASE TYPOGRAPHY
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
}


/* ============================================================
   3. NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 200, 226, 0.2);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--lavender-deep), var(--teal), var(--coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.nav-logo::after {
  content: '\2726';
  color: white;
  font-size: 18px;
}

/* When a real logo image is present, hide the fallback icon */
.nav-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.nav-logo:has(img)::after {
  display: none !important;
  content: none !important;
}

.nav-brand-text {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--teal-deep);
}

.nav-links a.active {
  color: var(--teal-deep);
  font-weight: 600;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.2s;
}
.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(44, 51, 71, 0.08);
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.dropdown-group {
  padding: 0 20px;
  border-right: 1px solid rgba(44, 51, 71, 0.06);
}
.dropdown-group:last-child {
  border-right: none;
}
.dropdown-group-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-deep);
  text-decoration: none;
  padding: 8px 0;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.dropdown-group-title:hover {
  color: var(--teal);
}
.dropdown-link {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s;
}
.dropdown-link:hover {
  color: var(--teal-deep);
}


/* ============================================================
   4. BUTTONS
   ============================================================ */

/* Ghost button (outline / secondary) */
.btn-ghost {
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--sage-deep);
  background: transparent;
  color: var(--sage-deep);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
}
.btn-ghost:hover {
  background: var(--sage-deep);
  color: white;
}

/* Primary button (teal gradient) */
.btn-primary {
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  border: none;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 2px 12px rgba(91, 165, 165, 0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(91, 165, 165, 0.4);
}

/* Hero-size primary button */
.btn-hero {
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  border: none;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 24px rgba(91, 165, 165, 0.35);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(91, 165, 165, 0.45);
}

/* Hero ghost button */
.btn-hero-ghost {
  padding: 16px 28px;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(44, 51, 71, 0.15);
  background: transparent;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
}
.btn-hero-ghost:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
}

/* Submit button (full-width form submit) */
.btn-submit {
  width: 100%;
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  border: none;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(91, 165, 165, 0.3);
  margin-top: 8px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(91, 165, 165, 0.4);
}

/* Book button (classes/coaching) */
.book-btn {
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  border: none;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 2px 12px rgba(91, 165, 165, 0.3);
  white-space: nowrap;
  transition: all 0.3s;
}
.book-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(91, 165, 165, 0.4);
}

/* Class book button (small outline) */
.class-book {
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--teal);
  background: transparent;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.class-book:hover {
  background: var(--teal);
  color: white;
}


/* ============================================================
   5. PAGE HERO (inner pages)
   ============================================================ */
.page-hero-wrapper {
  background: linear-gradient(135deg, var(--sage-muted) 0%, var(--lavender) 40%, var(--blush) 80%, var(--cream-warm) 100%);
  margin: 72px 24px 0;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.page-hero-wrapper::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px 72px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Breadcrumb inside page hero */
.page-hero .breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a {
  color: var(--teal-deep);
  text-decoration: none;
  font-weight: 500;
}
.page-hero .breadcrumb a:hover {
  text-decoration: underline;
}

/* Tag inside hero (neurodiversity page) */
.page-hero .tag {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  background: rgba(212, 200, 226, 0.35);
  border: 1px solid rgba(166, 141, 194, 0.2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin-bottom: 20px;
}

/* Eyebrow label */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 16px;
}

.page-hero .eyebrow {
  color: var(--teal-deep);
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--teal-deep);
}

.page-hero .lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}


/* ============================================================
   5b. HOMEPAGE HERO (two-column with routing panel)
   ============================================================ */
.hero-wrapper {
  background: linear-gradient(135deg, var(--sage-muted) 0%, var(--lavender) 40%, var(--blush) 80%, var(--cream-warm) 100%);
  margin: 72px 24px 0;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.hero-wrapper::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.hero {
  padding: 80px 40px 80px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(212, 200, 226, 0.3), rgba(184, 207, 196, 0.3));
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(91, 165, 165, 0.15);
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--teal-deep);
  font-weight: 400;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 56px;
}

/* Trust bar */
.trust-bar {
  display: flex;
  gap: 36px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.trust-icon.edu { background: rgba(232, 201, 122, 0.55); }
.trust-icon.safe { background: rgba(184, 207, 196, 0.6); }
.trust-icon.heart { background: rgba(244, 214, 204, 0.5); }
.trust-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.3;
}

/* Audience Routing Card */
.routing-panel {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.routing-header {
  margin-bottom: 24px;
}
.routing-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.routing-header h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-primary);
}
.routing-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.route-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(44, 51, 71, 0.08);
  background: var(--cream);
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
}
.route-btn:hover {
  border-color: var(--teal);
  background: rgba(91, 165, 165, 0.04);
  transform: translateX(4px);
}
.route-label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.route-emoji {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.route-emoji.nd { background: rgba(212, 200, 226, 0.3); }
.route-emoji.cs { background: rgba(91, 165, 165, 0.12); }
.route-emoji.ed { background: rgba(232, 201, 122, 0.25); }
.route-emoji.sup { background: rgba(244, 214, 204, 0.4); }
.route-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}
.route-arrow {
  color: var(--text-light);
  font-size: 16px;
  transition: transform 0.2s, color 0.2s;
}
.route-btn:hover .route-arrow {
  transform: translateX(3px);
  color: var(--teal);
}
.routing-note {
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(91, 165, 165, 0.06), rgba(166, 141, 194, 0.06));
  border-radius: var(--radius-md);
  border-left: 3px solid var(--teal);
}
.routing-note p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}


/* ============================================================
   6. SECTION HEADERS (reusable pattern)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin: 0 auto 16px;
}

.section-header h2 em {
  font-style: italic;
  color: var(--lavender-deep);
}

.section-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}


/* ============================================================
   7. VALUES STRIP (homepage)
   ============================================================ */
.values-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.value-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(212, 200, 226, 0.12);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.value-card:nth-child(1)::before { background: linear-gradient(90deg, var(--lavender-deep), var(--lavender)); }
.value-card:nth-child(2)::before { background: linear-gradient(90deg, var(--teal), var(--sage)); }
.value-card:nth-child(3)::before { background: linear-gradient(90deg, var(--coral), var(--blush)); }
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.value-card:nth-child(1) .value-icon { background: rgba(212, 200, 226, 0.25); }
.value-card:nth-child(2) .value-icon { background: rgba(184, 207, 196, 0.3); }
.value-card:nth-child(3) .value-icon { background: rgba(244, 214, 204, 0.35); }
.value-card h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}


/* ============================================================
   8. PILLARS / FRAMEWORK SECTION (homepage)
   ============================================================ */
.pillars-section {
  padding: 80px 40px 100px;
  max-width: 1280px;
  margin: 0 auto;
}

.framework-banner {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 200, 226, 0.15);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.framework-left {}
.coalition-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(91, 165, 165, 0.1), rgba(232, 201, 122, 0.08));
  border: 1px solid rgba(91, 165, 165, 0.2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.framework-banner h3 {
  font-size: 30px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.framework-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 440px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.pillar-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid rgba(44, 51, 71, 0.05);
  transition: all 0.3s;
  cursor: default;
}
.pillar-card:hover {
  background: var(--cream-warm);
  border-color: rgba(91, 165, 165, 0.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.pillar-card:nth-child(1) .pillar-icon { background: rgba(244, 214, 204, 0.4); }
.pillar-card:nth-child(2) .pillar-icon { background: rgba(184, 212, 232, 0.35); }
.pillar-card:nth-child(3) .pillar-icon { background: rgba(212, 200, 226, 0.3); }
.pillar-card:nth-child(4) .pillar-icon { background: rgba(184, 207, 196, 0.35); }
.pillar-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
  font-family: 'DM Sans', sans-serif;
}
.pillar-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}


/* ============================================================
   9. PROGRAMS SECTION (homepage)
   ============================================================ */
.programs-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 50%, var(--cream) 100%);
}
.programs-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.program-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(212, 200, 226, 0.12);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.program-card:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.program-tag {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: var(--radius-xl);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.program-card:nth-child(1) .program-tag {
  background: rgba(212, 200, 226, 0.25);
  color: var(--lavender-deep);
}
.program-card:nth-child(2) .program-tag {
  background: rgba(91, 165, 165, 0.1);
  color: var(--teal-deep);
}
.program-card h3 {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.program-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.program-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.feature-chip {
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  background: var(--cream);
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  border: 1px solid rgba(44, 51, 71, 0.06);
}
.program-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-deep);
  text-decoration: none;
  transition: gap 0.2s;
}
.program-link:hover { gap: 10px; }


/* ============================================================
   10. MISSION SECTION (homepage)
   ============================================================ */
.mission-section {
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mission-visual {
  position: relative;
}
.mission-blob {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  background: linear-gradient(135deg, var(--sage-muted), var(--lavender), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mission-blob-inner {
  text-align: center;
  padding: 40px;
  position: relative;
  z-index: 1;
}
.mission-blob-inner .quote {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 12px;
}
.mission-blob-inner .attr {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}
.mission-content h2 {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.mission-content h2 em {
  font-style: italic;
  color: var(--teal-deep);
}
.mission-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.founder-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(44, 51, 71, 0.06);
}
.founder-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
}
.founder-info {
  font-size: 14px;
}
.founder-name {
  font-weight: 600;
  color: var(--text-primary);
}
.founder-role {
  color: var(--text-light);
}

/* Mission blocks (about page) */
.mission-block {
  margin-bottom: 64px;
}
.mission-block h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.mission-block h2 em { font-style: italic; color: var(--teal-deep); }
.mission-block p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}


/* ============================================================
   11. ABOUT PAGE - BELIEFS/VALUES
   ============================================================ */
.beliefs-section {
  padding: 80px 40px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 50%, var(--cream) 100%);
}
.beliefs-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.beliefs-header {
  text-align: center;
  margin-bottom: 48px;
}
.beliefs-header .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.beliefs-header h2 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.beliefs-header h2 em { font-style: italic; color: var(--lavender-deep); }
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.belief-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(212, 200, 226, 0.12);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.belief-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.belief-card:nth-child(1)::before { background: linear-gradient(90deg, var(--teal), var(--sage)); }
.belief-card:nth-child(2)::before { background: linear-gradient(90deg, var(--lavender-deep), var(--lavender)); }
.belief-card:nth-child(3)::before { background: linear-gradient(90deg, var(--coral), var(--blush)); }
.belief-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); }
.belief-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.belief-card:nth-child(1) .belief-icon { background: rgba(184, 207, 196, 0.3); }
.belief-card:nth-child(2) .belief-icon { background: rgba(212, 200, 226, 0.25); }
.belief-card:nth-child(3) .belief-icon { background: rgba(244, 214, 204, 0.35); }
.belief-card h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-family: 'Fraunces', serif;
}
.belief-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}


/* ============================================================
   12. ABOUT PAGE - FOUNDER
   ============================================================ */
.founder-section {
  padding: 80px 40px 100px;
  max-width: 1100px;
  margin: 0 auto;
}
.founder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}
.founder-visual {
  position: relative;
}
.founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.founder-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-tag {
  position: absolute;
  bottom: -16px;
  left: 24px;
  padding: 10px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}
.founder-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.founder-content .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.founder-content h2 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.founder-content .role {
  font-size: 17px;
  color: var(--lavender-deep);
  font-weight: 500;
  margin-bottom: 24px;
}
.founder-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.founder-details {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(44, 51, 71, 0.06);
}
.founder-details h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}
.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.detail-chip {
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  background: var(--cream);
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  border: 1px solid rgba(44, 51, 71, 0.06);
}


/* ============================================================
   13. ABOUT PAGE - PROGRAMS OVERVIEW
   ============================================================ */
.programs-overview {
  padding: 80px 40px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 50%, var(--cream) 100%);
}
.programs-header {
  text-align: center;
  margin-bottom: 48px;
}
.programs-header .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.programs-header h2 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.programs-header p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 12px auto 0;
}
.programs-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.prog-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(212, 200, 226, 0.12);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
}
.prog-card:hover { box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.prog-tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.prog-card:nth-child(1) .prog-tag { background: rgba(212, 200, 226, 0.25); color: var(--lavender-deep); }
.prog-card:nth-child(2) .prog-tag { background: rgba(91, 165, 165, 0.1); color: var(--teal-deep); }
.prog-card h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.prog-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.prog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-deep);
  text-decoration: none;
  transition: gap 0.2s;
}
.prog-link:hover { gap: 10px; }


/* ============================================================
   14. ABOUT PAGE - INCLUSIVITY
   ============================================================ */
.inclusivity-section {
  padding: 80px 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.inclusivity-banner {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  border: 1px solid rgba(212, 200, 226, 0.12);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.inclusivity-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-muted), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.inclusivity-content h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
}
.inclusivity-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}


/* ============================================================
   15. PROGRAMS PAGE - FULL WIDTH CARDS
   ============================================================ */
.program-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-medium);
  margin-bottom: 32px;
  transition: all 0.3s;
}
.program-full:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.program-visual {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.program-full:nth-child(1) .program-visual {
  background: linear-gradient(160deg, rgba(212, 200, 226, 0.2) 0%, rgba(184, 207, 196, 0.15) 100%);
}
.program-full:nth-child(2) .program-visual {
  background: linear-gradient(160deg, rgba(91, 165, 165, 0.1) 0%, rgba(184, 212, 232, 0.15) 100%);
}
.program-visual-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}
.program-full:nth-child(1) .program-visual-icon { background: rgba(212, 200, 226, 0.35); }
.program-full:nth-child(2) .program-visual-icon { background: rgba(91, 165, 165, 0.15); }
.program-visual h2 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.program-visual .program-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 380px;
}
.program-details {
  padding: 56px 48px;
}
.program-details h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
}
.offering-list {
  list-style: none;
  margin-bottom: 28px;
}
.offering-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(44, 51, 71, 0.04);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.offering-list li:last-child { border-bottom: none; }
.offering-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.program-full:nth-child(1) .offering-dot { background: var(--lavender-deep); }
.program-full:nth-child(2) .offering-dot { background: var(--teal); }
.program-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
}
.program-full:nth-child(1) .program-cta {
  background: var(--lavender-deep);
  color: white;
  box-shadow: 0 2px 12px rgba(166, 141, 194, 0.3);
}
.program-full:nth-child(1) .program-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(166, 141, 194, 0.4);
}
.program-full:nth-child(2) .program-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: white;
  box-shadow: 0 2px 12px rgba(91, 165, 165, 0.3);
}
.program-full:nth-child(2) .program-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(91, 165, 165, 0.4);
}
.program-full:nth-child(1) .program-tag {
  background: rgba(212, 200, 226, 0.25);
  color: var(--lavender-deep);
}
.program-full:nth-child(2) .program-tag {
  background: rgba(91, 165, 165, 0.12);
  color: var(--teal-deep);
}


/* ============================================================
   16. PROGRAMS PAGE - AUDIENCE SECTION
   ============================================================ */
.audience-section {
  padding: 80px 40px 40px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 50%, var(--cream) 100%);
}
.audience-inner { max-width: 1100px; margin: 0 auto; }
.audience-header {
  text-align: center;
  margin-bottom: 48px;
}
.audience-header .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.audience-header h2 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.audience-header h2 em { font-style: italic; color: var(--lavender-deep); }
.audience-header p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 12px auto 0;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.audience-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(44, 51, 71, 0.05);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.3s;
}
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}
.audience-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
  position: relative;
}
.audience-card:nth-child(1) .audience-icon { background: linear-gradient(135deg, rgba(244, 214, 204, 0.5), rgba(232, 168, 154, 0.3)); border: 1px solid rgba(232, 168, 154, 0.2); }
.audience-card:nth-child(2) .audience-icon { background: linear-gradient(135deg, rgba(184, 207, 196, 0.45), rgba(143, 181, 166, 0.3)); border: 1px solid rgba(143, 181, 166, 0.2); }
.audience-card:nth-child(3) .audience-icon { background: linear-gradient(135deg, rgba(232, 201, 122, 0.35), rgba(212, 168, 67, 0.2)); border: 1px solid rgba(212, 168, 67, 0.15); }
.audience-card:nth-child(4) .audience-icon { background: linear-gradient(135deg, rgba(212, 200, 226, 0.4), rgba(166, 141, 194, 0.25)); border: 1px solid rgba(166, 141, 194, 0.15); }
.audience-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}
.audience-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}


/* ============================================================
   17. PROGRAMS PAGE - HOW IT WORKS
   ============================================================ */
.how-section {
  padding: 80px 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.how-header {
  text-align: center;
  margin-bottom: 48px;
}
.how-header .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.how-header h2 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.how-step { text-align: center; }
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-muted), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 auto 16px;
}
.how-step h4 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: 'Fraunces', serif;
}
.how-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 260px;
  margin: 0 auto;
}


/* ============================================================
   18. PROGRAMS PAGE - CERTIFICATION PREVIEW
   ============================================================ */
.cert-section {
  padding: 0 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.cert-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  padding: 48px 56px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 200, 226, 0.12);
  box-shadow: var(--shadow-soft);
  align-items: center;
}
.cert-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
}
.cert-content h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}
.cert-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.cert-tiers {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cert-tier {
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 600;
}


/* ============================================================
   19. NEURODIVERSITY PAGE - OFFERINGS
   ============================================================ */
.offerings-section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.offerings-header { text-align: center; margin-bottom: 48px; }
.offerings-header h2 { font-size: 36px; font-weight: 400; line-height: 1.2; }
.offerings-header h2 em { font-style: italic; color: var(--lavender-deep); }
.offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(212, 200, 226, 0.12);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lavender-deep), var(--lavender));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.offer-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); }
.offer-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(212, 200, 226, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.offer-card h4 { font-size: 18px; font-weight: 500; margin-bottom: 10px; }
.offer-card p { font-size: 14px; line-height: 1.65; color: var(--text-secondary); }


/* ============================================================
   20. NEURODIVERSITY PAGE - CLASS TOPICS
   ============================================================ */
.topics-section { padding: 80px 40px; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 50%, var(--cream) 100%); }
.topics-inner { max-width: 1100px; margin: 0 auto; }
.topics-header { text-align: center; margin-bottom: 48px; }
.topics-header h2 { font-size: 36px; font-weight: 400; line-height: 1.2; }
.topics-header h2 em { font-style: italic; color: var(--lavender-deep); }
.topics-header p { font-size: 17px; line-height: 1.6; color: var(--text-secondary); max-width: 520px; margin: 12px auto 0; }
.topics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.topic-chip {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(44, 51, 71, 0.05);
  box-shadow: var(--shadow-soft);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 14px;
}
.topic-chip:hover { border-color: var(--lavender-deep); transform: translateX(4px); }
.topic-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lavender-deep); flex-shrink: 0; opacity: 0.6; }
.topic-chip span { font-size: 15px; font-weight: 500; color: var(--text-primary); }


/* ============================================================
   21. NEURODIVERSITY PAGE - WHO IS THIS FOR
   ============================================================ */
.who-section { padding: 80px 40px; max-width: 1000px; margin: 0 auto; }
.who-header { text-align: center; margin-bottom: 48px; }
.who-header h2 { font-size: 36px; font-weight: 400; }
.who-header h2 em { font-style: italic; color: var(--lavender-deep); }
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.who-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(212, 200, 226, 0.1);
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s;
}
.who-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-medium); }
.who-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 200, 226, 0.3), rgba(184, 207, 196, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.who-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; font-family: 'DM Sans', sans-serif; }
.who-card p { font-size: 14px; line-height: 1.55; color: var(--text-secondary); }


/* ============================================================
   22. NEURODIVERSITY PAGE - APPROACH / DISCLAIMER
   ============================================================ */
.approach-section { padding: 0 40px 80px; max-width: 1000px; margin: 0 auto; }
.approach-banner {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  border: 1px solid rgba(212, 200, 226, 0.12);
  box-shadow: var(--shadow-soft);
}
.approach-banner h3 { font-size: 24px; font-weight: 400; margin-bottom: 16px; }
.approach-banner h3 em { font-style: italic; color: var(--lavender-deep); }
.approach-banner p { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 12px; }
.approach-banner p:last-child { margin-bottom: 0; }
.disclaimer {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: var(--cream);
  border-left: 3px solid var(--lavender-deep);
}
.disclaimer p { font-size: 13px; line-height: 1.6; color: var(--text-light); margin-bottom: 0; }


/* ============================================================
   23. BLOG PAGE
   ============================================================ */
/* Category Filters */
.filter-bar { padding: 24px 40px; max-width: 1200px; margin: 0 auto; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-chip {
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1.5px solid rgba(44, 51, 71, 0.08);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
}
.filter-chip:hover { border-color: var(--teal); color: var(--teal-deep); }
.filter-chip.active { background: var(--teal); color: white; border-color: var(--teal); }

/* Featured Post */
.featured-section { padding: 40px 40px 0; max-width: 1200px; margin: 0 auto; }
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-medium);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text-primary);
}
.featured-card:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(44, 51, 71, 0.12); }
.featured-img {
  background: linear-gradient(135deg, var(--sage-muted), var(--lavender), var(--blush));
  min-height: 280px;
  max-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 16px;
}
.featured-img-placeholder { font-size: 48px; opacity: 0.4; }
.featured-img-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.featured-img-icon svg {
  width: 120px;
  height: 120px;
  opacity: 0.85;
}
.featured-content { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.featured-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.featured-label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.featured-content h2 { font-size: 28px; font-weight: 400; line-height: 1.3; margin-bottom: 12px; letter-spacing: -0.01em; }
.featured-meta { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.featured-excerpt { font-size: 15px; line-height: 1.65; color: var(--text-secondary); margin-bottom: 24px; }
.featured-link { font-size: 15px; font-weight: 600; color: var(--teal-deep); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.featured-card:hover .featured-link { gap: 10px; }

/* Post Grid */
.posts-section { padding: 48px 40px 80px; max-width: 1200px; margin: 0 auto; }
.posts-header { margin-bottom: 32px; }
.posts-header h3 { font-size: 24px; font-weight: 400; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(44, 51, 71, 0.05);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.post-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--cream-warm);
}
.post-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
}
.post-img-placeholder { font-size: 36px; opacity: 0.3; }
.post-img-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.post-img-icon svg {
  width: 80px;
  height: 80px;
  opacity: 0.75;
}
.post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: var(--radius-xl);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}
.post-card:nth-child(1) .post-tag { background: rgba(212, 200, 226, 0.25); color: var(--lavender-deep); }
.post-card:nth-child(2) .post-tag { background: rgba(91, 165, 165, 0.1); color: var(--teal-deep); }
.post-card:nth-child(3) .post-tag { background: rgba(244, 214, 204, 0.35); color: var(--blush-deep); }
.post-body h4 { font-size: 18px; font-weight: 500; line-height: 1.35; margin-bottom: 8px; }
.post-meta { font-size: 12px; color: var(--text-light); margin-bottom: 12px; }
.post-excerpt { font-size: 14px; line-height: 1.6; color: var(--text-secondary); flex: 1; }
.post-link { font-size: 14px; font-weight: 600; color: var(--teal-deep); margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.post-card:hover .post-link { gap: 10px; }

/* Newsletter */
.newsletter-section { padding: 0 40px 80px; max-width: 800px; margin: 0 auto; }
.newsletter-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  border: 1px solid rgba(212, 200, 226, 0.12);
  box-shadow: var(--shadow-soft);
}
.newsletter-card h3 { font-size: 26px; font-weight: 400; margin-bottom: 8px; }
.newsletter-card h3 em { font-style: italic; color: var(--lavender-deep); }
.newsletter-card p { font-size: 15px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.5; }
.newsletter-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(44, 51, 71, 0.1);
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: var(--teal); }
.newsletter-btn {
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  border: none;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(91, 165, 165, 0.3);
  white-space: nowrap;
}
.newsletter-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(91, 165, 165, 0.4); }
.newsletter-success {
  color: #3D8282;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 0;
}


/* ============================================================
   24. BLOG POST TEMPLATE
   ============================================================ */
.article-hero-wrapper { background: linear-gradient(135deg, var(--sage-muted) 0%, var(--lavender) 40%, var(--blush) 80%, var(--cream-warm) 100%); margin: 72px 24px 0; border-radius: 0 0 var(--radius-xl) var(--radius-xl); position: relative; overflow: hidden; }
.article-hero-wrapper::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(255, 255, 255, 0.4) 0%, transparent 70%); pointer-events: none; }
.article-hero { max-width: 760px; margin: 0 auto; padding: 80px 40px 60px; position: relative; z-index: 1; }
.article-breadcrumb { font-size: 13px; color: var(--text-light); margin-bottom: 20px; }
.article-breadcrumb a { color: var(--teal-deep); text-decoration: none; font-weight: 500; }
.article-breadcrumb a:hover { text-decoration: underline; }
.article-category {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: var(--radius-xl);
  background: rgba(212, 200, 226, 0.3);
  border: 1px solid rgba(166, 141, 194, 0.2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin-bottom: 16px;
}
.article-hero h1 { font-size: 40px; font-weight: 400; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 20px; }
.article-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.author-row { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blush), var(--lavender)); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-size: 16px; color: white; font-weight: 500; }
.author-name { font-size: 14px; font-weight: 600; }
.meta-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--text-light); }
.meta-date, .meta-read { font-size: 14px; color: var(--text-light); }

/* Article featured image */
.article-image { max-width: 760px; margin: 0 auto; padding: 0 40px; }
.article-image-placeholder {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212, 200, 226, 0.2), rgba(184, 207, 196, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  opacity: 0.3;
  margin-bottom: 48px;
}

/* Article body */
.article-body { max-width: 680px; margin: 0 auto; padding: 0 40px 60px; }
.article-body p { font-size: 17px; line-height: 1.85; color: var(--text-secondary); margin-bottom: 24px; }
.article-body p strong { color: var(--text-primary); font-weight: 600; }
.article-body h2 { font-size: 26px; font-weight: 500; margin-top: 40px; margin-bottom: 16px; line-height: 1.3; }
.article-body h3 { font-size: 20px; font-weight: 600; margin-top: 32px; margin-bottom: 12px; font-family: 'DM Sans', sans-serif; }
.article-body ul, .article-body ol { margin-bottom: 24px; padding-left: 24px; }
.article-body li { font-size: 16px; line-height: 1.75; color: var(--text-secondary); margin-bottom: 8px; }
.article-body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--teal);
  background: rgba(91, 165, 165, 0.04);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
}
.article-body .callout {
  margin: 32px 0;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 200, 226, 0.12), rgba(184, 207, 196, 0.08));
  border: 1px solid rgba(212, 200, 226, 0.15);
}
.article-body .callout p { margin-bottom: 0; font-size: 15px; }

/* Article tags */
.article-tags { max-width: 680px; margin: 0 auto; padding: 0 40px 40px; }
.tags-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 12px; }
.tags-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-chip {
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(44, 51, 71, 0.06);
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.tag-chip:hover { border-color: var(--teal); color: var(--teal-deep); }

/* Author bio */
.author-section { max-width: 680px; margin: 0 auto; padding: 0 40px 48px; }
.author-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(212, 200, 226, 0.1);
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 20px;
  align-items: center;
}
.author-card-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--blush), var(--lavender)); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-size: 24px; color: white; font-weight: 500; flex-shrink: 0; }
.author-card-info h4 { font-size: 17px; font-weight: 600; margin-bottom: 2px; font-family: 'DM Sans', sans-serif; }
.author-card-info .role { font-size: 13px; color: var(--lavender-deep); font-weight: 500; margin-bottom: 6px; }
.author-card-info p { font-size: 14px; line-height: 1.55; color: var(--text-secondary); }

/* Related posts */
.related-section { padding: 48px 40px 80px; max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(44, 51, 71, 0.06); }
.related-header { margin-bottom: 32px; }
.related-header h3 { font-size: 24px; font-weight: 400; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(44, 51, 71, 0.05);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.related-img { height: 160px; }
.related-card:nth-child(1) .related-img { background: linear-gradient(135deg, rgba(91, 165, 165, 0.12), rgba(184, 212, 232, 0.15)); }
.related-card:nth-child(2) .related-img { background: linear-gradient(135deg, rgba(244, 214, 204, 0.3), rgba(232, 201, 122, 0.15)); }
.related-card:nth-child(3) .related-img { background: linear-gradient(135deg, rgba(212, 200, 226, 0.3), rgba(184, 207, 196, 0.2)); }
.related-body { padding: 20px; }
.related-body h4 { font-size: 16px; font-weight: 500; line-height: 1.35; margin-bottom: 6px; }
.related-body .meta { font-size: 12px; color: var(--text-light); }


/* ============================================================
   25. CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form-card { background: var(--white); border-radius: var(--radius-xl); padding: 44px; box-shadow: var(--shadow-medium); border: 1px solid rgba(212, 200, 226, 0.1); }
.contact-form-card h3 { font-size: 24px; font-weight: 400; margin-bottom: 8px; }
.contact-form-card .sub { font-size: 15px; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.5; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card { padding: 28px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid rgba(212, 200, 226, 0.1); box-shadow: var(--shadow-soft); transition: all 0.3s; display: flex; gap: 16px; align-items: flex-start; }
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-medium); }
.info-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.info-card:nth-child(1) .info-icon { background: linear-gradient(135deg, rgba(91, 165, 165, 0.15), rgba(184, 207, 196, 0.2)); }
.info-card:nth-child(2) .info-icon { background: linear-gradient(135deg, rgba(212, 200, 226, 0.3), rgba(184, 207, 196, 0.15)); }
.info-card:nth-child(3) .info-icon { background: linear-gradient(135deg, rgba(244, 214, 204, 0.4), rgba(232, 201, 122, 0.2)); }
.info-card:nth-child(4) .info-icon { background: linear-gradient(135deg, rgba(184, 212, 232, 0.3), rgba(212, 200, 226, 0.2)); }
.info-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.info-card p { font-size: 14px; line-height: 1.55; color: var(--text-secondary); }
.info-card a { color: var(--teal-deep); text-decoration: none; font-weight: 500; }
.info-card a:hover { text-decoration: underline; }

/* Social Strip */
.social-card { padding: 28px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid rgba(212, 200, 226, 0.1); box-shadow: var(--shadow-soft); }
.social-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 16px; font-family: 'DM Sans', sans-serif; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  padding: 10px 18px;
  border-radius: var(--radius-xl);
  background: var(--cream);
  border: 1px solid rgba(44, 51, 71, 0.06);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.social-btn:hover { border-color: var(--teal); color: var(--teal-deep); background: rgba(91, 165, 165, 0.04); }


/* ============================================================
   26. FORMS
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(44, 51, 71, 0.1);
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6175' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Form success states */
.form-success { text-align: center; padding: 40px 20px; }
.form-success h3 { font-family: 'Fraunces', serif; color: #3D8282; margin-bottom: 8px; }
.form-success p { color: #5A6175; }


/* ============================================================
   27. FAQ SECTION
   ============================================================ */
.faq-section { padding: 0 40px 80px; max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 32px; }
.faq-header h2 { font-size: 30px; font-weight: 400; }
.faq-header h2 em { font-style: italic; color: var(--lavender-deep); }
.faq-item {
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(44, 51, 71, 0.05);
  box-shadow: var(--shadow-soft);
  margin-bottom: 12px;
}
.faq-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; color: var(--text-primary); }
.faq-item p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); }


/* ============================================================
   28. CLASSES & COACHING PAGE
   ============================================================ */
.content-section { padding: 60px 40px 80px; max-width: 1100px; margin: 0 auto; }

/* Discovery Call Banner */
.discovery-banner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(91, 165, 165, 0.15);
  margin-bottom: 48px;
}
.discovery-icon { width: 56px; height: 56px; border-radius: var(--radius-md); background: rgba(91, 165, 165, 0.1); display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.discovery-info h3 { font-size: 20px; font-weight: 500; margin-bottom: 4px; }
.discovery-info p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.discovery-info .meta-row { display: flex; gap: 16px; margin-top: 8px; font-size: 13px; color: var(--text-light); }
.discovery-cta { margin-left: auto; flex-shrink: 0; }

/* Section Headers (classes page) */
.section-header { margin-bottom: 24px; }
.section-header h2 { font-size: 28px; font-weight: 400; margin-bottom: 6px; }
.section-header p { font-size: 15px; color: var(--text-secondary); }

/* Class Cards */
.classes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 48px; }
.class-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(44, 51, 71, 0.05);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.class-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); }
.class-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.class-card h4 { font-size: 18px; font-weight: 500; line-height: 1.3; font-family: 'Fraunces', serif; flex: 1; }
.class-price { font-size: 14px; font-weight: 700; color: var(--teal-deep); white-space: nowrap; margin-left: 12px; padding: 4px 12px; background: rgba(91, 165, 165, 0.08); border-radius: var(--radius-xl); }
.class-card p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); flex: 1; margin-bottom: 16px; }
.class-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.class-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-light); }
.class-meta span { display: flex; align-items: center; gap: 4px; }

/* Coaching Card */
.coaching-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-medium);
  margin-bottom: 48px;
}
.coaching-visual { background: linear-gradient(135deg, rgba(212, 200, 226, 0.2), rgba(184, 207, 196, 0.15)); display: flex; align-items: center; justify-content: center; min-height: 280px; font-size: 56px; opacity: 0.3; }
.coaching-content { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.coaching-content h2 { font-size: 26px; font-weight: 400; margin-bottom: 12px; line-height: 1.3; }
.coaching-content p { font-size: 15px; line-height: 1.65; color: var(--text-secondary); margin-bottom: 20px; }
.coaching-details { display: flex; gap: 20px; margin-bottom: 24px; }
.coaching-detail { font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.coaching-detail strong { color: var(--text-primary); font-weight: 600; }


/* ============================================================
   29. PODCAST PAGE
   ============================================================ */
.podcast-intro {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 200, 226, 0.1);
}
.podcast-cover { width: 200px; height: 200px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--lavender), var(--teal)); display: flex; align-items: center; justify-content: center; font-size: 56px; }
.podcast-info h2 { font-size: 24px; font-weight: 400; margin-bottom: 8px; }
.podcast-info .host { font-size: 14px; color: var(--lavender-deep); font-weight: 600; margin-bottom: 12px; }
.podcast-info p { font-size: 15px; line-height: 1.65; color: var(--text-secondary); margin-bottom: 20px; }
.listen-links { display: flex; flex-wrap: wrap; gap: 10px; }
.listen-btn { padding: 10px 18px; border-radius: var(--radius-xl); background: var(--cream); border: 1px solid rgba(44, 51, 71, 0.08); font-size: 13px; font-weight: 600; color: var(--text-secondary); text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.listen-btn:hover { border-color: var(--teal); color: var(--teal-deep); }

.upcoming-banner { padding: 32px; background: linear-gradient(135deg, rgba(91, 165, 165, 0.08), rgba(212, 200, 226, 0.1)); border-radius: var(--radius-lg); border-left: 3px solid var(--teal); margin-bottom: 48px; }
.upcoming-banner .eyebrow { margin-bottom: 8px; }
.upcoming-banner h3 { font-size: 22px; font-weight: 400; margin-bottom: 8px; }
.upcoming-banner p { font-size: 15px; color: var(--text-secondary); line-height: 1.5; }

.episodes-header { margin-bottom: 24px; }
.episodes-header h3 { font-size: 24px; font-weight: 400; }
.episode-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 51, 71, 0.05);
  box-shadow: var(--shadow-soft);
  margin-bottom: 16px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
}
.episode-card:hover { transform: translateX(4px); box-shadow: var(--shadow-medium); }
.ep-number { width: 48px; height: 48px; border-radius: var(--radius-md); background: rgba(212, 200, 226, 0.25); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-size: 18px; font-weight: 500; color: var(--lavender-deep); flex-shrink: 0; }
.ep-info h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.ep-info .ep-meta { font-size: 12px; color: var(--text-light); margin-bottom: 6px; }
.ep-info p { font-size: 14px; line-height: 1.55; color: var(--text-secondary); }


/* ============================================================
   30. SCREENING TOOLS PAGE
   ============================================================ */
.tip-banner { padding: 28px 32px; background: linear-gradient(135deg, rgba(91, 165, 165, 0.06), rgba(212, 200, 226, 0.08)); border-radius: var(--radius-lg); border-left: 3px solid var(--lavender-deep); margin-bottom: 48px; }
.tip-banner h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; font-family: 'DM Sans', sans-serif; }
.tip-banner p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); }

.screening-group { margin-bottom: 48px; }
.screening-group h2 { font-size: 28px; font-weight: 400; margin-bottom: 8px; }
.screening-group .group-desc { font-size: 15px; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.5; }
.screening-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.screen-card {
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(44, 51, 71, 0.05);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text-primary);
  display: block;
}
.screen-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-medium); border-color: var(--teal); }
.screen-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; color: var(--teal-deep); }
.screen-card p { font-size: 13px; line-height: 1.5; color: var(--text-secondary); }

.reading-section { padding: 0 40px 80px; max-width: 1100px; margin: 0 auto; }
.reading-section h3 { font-size: 22px; font-weight: 400; margin-bottom: 16px; }
.reading-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.reading-link { padding: 14px 20px; border-radius: var(--radius-md); background: var(--white); border: 1px solid rgba(44, 51, 71, 0.05); font-size: 14px; color: var(--teal-deep); text-decoration: none; transition: all 0.2s; display: flex; align-items: center; gap: 8px; }
.reading-link:hover { border-color: var(--teal); transform: translateX(4px); }
.rdot { width: 6px; height: 6px; border-radius: 50%; background: var(--lavender-deep); flex-shrink: 0; }


/* ============================================================
   31. RESOURCES PAGE
   ============================================================ */
.resource-program { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.resource-program + .resource-program { padding-top: 0; }

.program-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(44, 51, 71, 0.04);
}
.program-header-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.nd-accent .program-header-icon { background: linear-gradient(135deg, rgba(212, 200, 226, 0.3), rgba(184, 207, 196, 0.2)); }
.cs-accent .program-header-icon { background: linear-gradient(135deg, rgba(91, 165, 165, 0.15), rgba(184, 212, 232, 0.2)); }
.program-header h2 { font-size: 30px; font-weight: 400; letter-spacing: -0.01em; }
.program-header p { font-size: 15px; color: var(--text-secondary); line-height: 1.5; margin-top: 4px; }

.resource-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.resource-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(44, 51, 71, 0.05);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.resource-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.nd-accent .resource-card::before { background: linear-gradient(90deg, var(--lavender-deep), var(--lavender)); }
.cs-accent .resource-card::before { background: linear-gradient(90deg, var(--teal), var(--sage)); }
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.resource-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.nd-accent .resource-icon { background: rgba(212, 200, 226, 0.25); }
.cs-accent .resource-icon { background: rgba(91, 165, 165, 0.12); }
.resource-card h4 { font-size: 17px; font-weight: 500; margin-bottom: 8px; line-height: 1.3; }
.resource-card p { font-size: 13px; line-height: 1.6; color: var(--text-secondary); flex: 1; }
.resource-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
  transition: gap 0.2s;
}
.nd-accent .card-link { color: var(--lavender-deep); }
.cs-accent .card-link { color: var(--teal-deep); }
.resource-card:hover .card-link { gap: 10px; }

/* External Resources Section */
.external-section { padding: 40px 40px 80px; max-width: 1200px; margin: 0 auto; }
.external-header { text-align: center; margin-bottom: 40px; }
.external-header h2 { font-size: 30px; font-weight: 400; }
.external-header h2 em { font-style: italic; color: var(--lavender-deep); }
.external-header p { font-size: 16px; color: var(--text-secondary); margin-top: 8px; }
.external-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.external-grid.row-2 { margin-top: 18px; }
.ext-category {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(44, 51, 71, 0.05);
  box-shadow: var(--shadow-soft);
  min-height: 240px;
}
.ext-category h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(44, 51, 71, 0.05);
}
.ext-link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--teal-deep);
  text-decoration: none;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(44, 51, 71, 0.03);
  word-break: break-word;
}
.ext-link:last-child { border-bottom: none; }
.ext-link:hover { color: var(--lavender-deep); transform: translateX(4px); }
.ext-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); flex-shrink: 0; margin-top: 7px; }


/* ============================================================
   32. CTA BANNER SECTION
   ============================================================ */
.cta-section {
  padding: 40px 40px 100px;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-card {
  background: linear-gradient(135deg, var(--sage-muted) 0%, var(--lavender) 50%, var(--blush) 100%);
  border-radius: var(--radius-xl);
  padding: 72px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
}

.cta-card h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.cta-card p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-cta-dark {
  padding: 18px 36px;
  border-radius: var(--radius-xl);
  border: none;
  background: var(--navy);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(44, 51, 71, 0.25);
}
.btn-cta-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(44, 51, 71, 0.35);
}

.btn-cta-outline {
  padding: 18px 32px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--text-primary);
  background: transparent;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
}
.btn-cta-outline:hover {
  background: var(--text-primary);
  color: var(--white);
}


/* ============================================================
   33. FOOTER
   ============================================================ */
footer {
  padding: 60px 40px 40px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(44, 51, 71, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--teal-deep);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(44, 51, 71, 0.04);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-light);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(44, 51, 71, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  color: var(--text-light);
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--teal);
  color: white;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}


/* ============================================================
   34. ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.page-hero {
  animation: fadeUp 0.7s ease-out;
}

.hero-content { animation: fadeUp 0.7s ease-out; }
.routing-panel { animation: fadeUp 0.7s ease-out 0.15s both; }
.value-card:nth-child(1) { animation: fadeUp 0.5s ease-out 0.1s both; }
.value-card:nth-child(2) { animation: fadeUp 0.5s ease-out 0.2s both; }
.value-card:nth-child(3) { animation: fadeUp 0.5s ease-out 0.3s both; }
.article-hero { animation: fadeUp 0.7s ease-out; }
.featured-card { animation: fadeUp 0.6s ease-out 0.1s both; }
.mission-block { animation: fadeUp 0.6s ease-out 0.1s both; }
.contact-form-card { animation: fadeUp 0.6s ease-out 0.1s both; }
.contact-info { animation: fadeUp 0.6s ease-out 0.2s both; }


/* ============================================================
   35. HAMBURGER MENU & MOBILE NAV OVERLAY
   ============================================================ */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #2C3347;
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

/* Hamburger active state (X shape) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Dark overlay behind mobile menu */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 98;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* ============================================================
   36. RESPONSIVE - TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* Grid collapses */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-strip { grid-template-columns: 1fr 1fr; }
  .beliefs-grid { grid-template-columns: 1fr 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .programs-cards { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }

  /* Homepage hero */
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .routing-panel { max-width: 480px; }

  /* About page */
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo-placeholder { max-width: 360px; }

  /* Framework / banner cards */
  .framework-banner { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Programs page */
  .program-full { grid-template-columns: 1fr; }
  .cert-banner { grid-template-columns: 1fr; text-align: center; }
  .cert-badge { margin: 0 auto; }
  .cert-tiers { justify-content: center; }

  /* Blog */
  .featured-card { grid-template-columns: 1fr; }
  .featured-img { min-height: 220px; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }

  /* Neurodiversity page */
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .topics-grid { grid-template-columns: 1fr 1fr; }

  /* Classes */
  .classes-grid { grid-template-columns: 1fr; }
  .coaching-card { grid-template-columns: 1fr; }
  .coaching-visual { min-height: 200px; }

  /* Screening */
  .screening-grid { grid-template-columns: 1fr; }
  .reading-links { grid-template-columns: 1fr; }

  /* Resources */
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .external-grid { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   37. RESPONSIVE - MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 0 20px; }
  .nav-links { display: none; }

  /* Hamburger shows */
  .hamburger { display: block; }

  /* Mobile slide-out nav */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px;
    right: -300px;
    width: 280px;
    height: calc(100vh - 72px);
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 8px;
    z-index: 99;
    transition: right 0.3s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
    border-left: 1px solid rgba(212, 200, 226, 0.2);
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(44, 51, 71, 0.06);
  }
  .nav-cta { display: none; }

  /* Nav Dropdown - mobile */
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    grid-template-columns: 1fr;
    padding: 8px 0 8px 16px;
    min-width: unset;
  }
  .dropdown-group {
    border-right: none;
    padding: 0;
    margin-bottom: 8px;
  }
  .dropdown-arrow { display: none; }

  /* Hero sections */
  .page-hero-wrapper { margin: 72px 12px 0; }
  .page-hero { padding: 60px 20px 56px; }
  .page-hero h1 { font-size: 34px; }
  .hero-wrapper { margin: 72px 12px 0; }
  .hero { padding: 60px 20px 60px; }
  .hero h1 { font-size: 36px; }

  /* Grid collapses to single column */
  .values-strip { grid-template-columns: 1fr; }
  .beliefs-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .external-grid { grid-template-columns: 1fr; }

  /* Content sections */
  .contact-section { padding: 60px 20px; }
  .contact-form-card { padding: 28px 24px; }
  .mission-section { padding: 60px 20px; }
  .founder-section { padding: 60px 20px; }
  .programs-section { padding: 60px 20px; }
  .resource-program { padding: 60px 20px; }
  .inclusivity-banner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    text-align: center;
  }
  .approach-banner { padding: 36px 24px; }

  /* CTA section */
  .cta-card { padding: 48px 28px; }
  .cta-card h2 { font-size: 30px; }

  /* Framework / banners */
  .framework-banner { padding: 36px 24px; }
  .framework-banner h3 { font-size: 24px; }
  .cert-banner { padding: 36px 24px; }

  /* Programs page cards */
  .program-visual { padding: 36px 28px; }
  .program-details { padding: 36px 28px; }

  /* Homepage hero specifics */
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  /* Pillars */
  .pillars-grid { grid-template-columns: 1fr; }

  /* Blog post */
  .article-hero-wrapper { margin: 72px 12px 0; }
  .article-hero { padding: 60px 20px 48px; }
  .article-hero h1 { font-size: 30px; }
  .article-body { padding: 0 20px 48px; }
  .article-tags { padding: 0 20px 32px; }
  .author-section { padding: 0 20px 40px; }
  .author-card { flex-direction: column; text-align: center; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; }

  /* Blog filter bar */
  .filter-bar { padding: 24px 20px; }

  /* Podcast */
  .podcast-intro { grid-template-columns: 1fr; text-align: center; }
  .podcast-cover { margin: 0 auto; }

  /* Classes */
  .discovery-banner { flex-direction: column; text-align: center; }
  .discovery-cta { margin-left: 0; }

  /* Program header (resources) */
  .program-header { flex-direction: column; text-align: center; }
}


/* ============================================================
   38. RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .page-hero h1 { font-size: 28px; }
  .cta-card h2 { font-size: 26px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-cta-dark,
  .cta-buttons .btn-cta-outline { width: 100%; text-align: center; }
}


/* ============================================================
   39. CHILD SAFETY & CERTIFICATION PAGE STYLES
   Additional CSS variables and rules from mockup pages
   ============================================================ */

/* Extended CSS Variables for child safety pages */
:root {
  --sage-light: #d4e5dc;
  --sage-dark: #8fb3a3;
  --lavender-light: #e8e0f0;
  --blush-light: #fae9e3;
  --teal-dark: #4a8f8f;
  --teal-light: #e8f4f4;
  --navy-light: #3d4660;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #999;
  --gray-600: #666;
  --gray-700: #444;
  --gray-800: #2a2a2a;
  --gold-light: #F5ECD7;
  --shadow-xl: 0 12px 60px rgba(44,51,71,0.15);
  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
}


/* ============================================================
   40. COALITION INDEX PAGE — PILLARS, CERTS, INVOLVED
   ============================================================ */

/* Pillars Section */
.pillars-section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.pillars-header { text-align: center; margin-bottom: 48px; }
.pillars-header h2 { font-size: 36px; font-weight: 400; line-height: 1.2; }
.pillars-header h2 em { font-style: italic; color: var(--teal-deep, var(--teal-dark)); }
.pillars-header p { font-size: 17px; line-height: 1.6; color: var(--text-secondary, var(--gray-600)); max-width: 560px; margin: 12px auto 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pillar-card { padding: 36px 32px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid rgba(91,165,165,0.08); box-shadow: var(--shadow-soft, var(--shadow-sm, 0 2px 8px rgba(44,51,71,0.06))); transition: all 0.3s; position: relative; overflow: hidden; }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--sage)); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.pillar-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium, var(--shadow-md, 0 4px 20px rgba(44,51,71,0.08))); }
.pillar-num { font-family: 'Fraunces', serif; font-size: 36px; font-weight: 300; color: var(--teal); opacity: 0.5; margin-bottom: 12px; }
.pillar-card h4 { font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.pillar-card p { font-size: 14px; line-height: 1.65; color: var(--text-secondary, var(--gray-600)); }

/* Cert Section (Coalition index) */
.cert-section { padding: 80px 40px; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm, #FFF3E6) 50%, var(--cream) 100%); }
.cert-inner { max-width: 1100px; margin: 0 auto; }
.cert-header { text-align: center; margin-bottom: 48px; }
.cert-header h2 { font-size: 36px; font-weight: 400; line-height: 1.2; }
.cert-header h2 em { font-style: italic; color: var(--teal-deep, var(--teal-dark)); }
.cert-header p { font-size: 17px; line-height: 1.6; color: var(--text-secondary, var(--gray-600)); max-width: 520px; margin: 12px auto 0; }
.cert-grid { display: grid; grid-template-columns: 200px 1fr; gap: 48px; align-items: center; }
.cert-badge-img { width: 100%; }
.cert-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tier-card { padding: 24px 20px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid rgba(91,165,165,0.08); box-shadow: var(--shadow-soft, var(--shadow-sm, 0 2px 8px rgba(44,51,71,0.06))); text-align: center; transition: all 0.3s; }
.tier-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-medium, var(--shadow-md, 0 4px 20px rgba(44,51,71,0.08))); }
.tier-icon { margin-bottom: 12px; display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: var(--radius-md); background: var(--cream); margin: 0 auto 12px; }
.tier-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; font-family: 'DM Sans', sans-serif; }
.tier-card p { font-size: 13px; line-height: 1.55; color: var(--text-secondary, var(--gray-600)); }

/* Involved Section */
.involved-section { padding: 80px 40px; max-width: 1000px; margin: 0 auto; }
.involved-header { text-align: center; margin-bottom: 48px; }
.involved-header h2 { font-size: 36px; font-weight: 400; }
.involved-header h2 em { font-style: italic; color: var(--teal-deep, var(--teal-dark)); }
.involved-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.involved-card { padding: 28px 24px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid rgba(91,165,165,0.08); box-shadow: var(--shadow-soft, var(--shadow-sm)); display: flex; gap: 16px; align-items: flex-start; transition: all 0.3s; }
.involved-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-medium, var(--shadow-md)); }
.involved-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(91,165,165,0.15), rgba(184,212,232,0.2)); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.involved-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; font-family: 'DM Sans', sans-serif; }
.involved-card p { font-size: 14px; line-height: 1.55; color: var(--text-secondary, var(--gray-600)); }


/* ============================================================
   41. CURRICULUM PAGE STYLES
   ============================================================ */

/* Breadcrumb */
.breadcrumb { max-width: 1200px; margin: 0 auto; padding: 20px 32px 0; font-size: 0.82rem; color: var(--gray-400, #999); }
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* Course Hero */
.course-hero { max-width: 1200px; margin: 0 auto; padding: 32px 32px 0; display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.course-hero-left { padding-bottom: 48px; }
.course-track-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--teal-light); color: var(--teal-dark); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 16px; border-radius: 100px; margin-bottom: 20px; }
.course-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.02em; }
.course-hero-desc { font-size: 1.05rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 28px; max-width: 620px; }
.course-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-label { font-size: 0.72rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; }
.meta-value { font-size: 0.92rem; font-weight: 600; color: var(--navy); line-height: 1.35; }
.course-enroll-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: var(--white); font-weight: 600; font-size: 1rem; padding: 16px 36px; border-radius: 100px; text-decoration: none; border: none; cursor: pointer; transition: all 0.25s ease; box-shadow: 0 4px 16px rgba(91,165,165,0.3); }
.course-enroll-btn:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(91,165,165,0.4); }
.enroll-note { font-size: 0.82rem; color: var(--gray-400); margin-top: 10px; }

/* Enrollment Card (sidebar) */
.enroll-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-md, 0 4px 20px rgba(44,51,71,0.08)); position: sticky; top: 90px; border: 1px solid var(--gray-200); margin-bottom: 32px; }
.enroll-card-header { text-align: center; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-200); }
.enroll-card-header .price { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--teal); }
.enroll-card-header .price-note { font-size: 0.82rem; color: var(--gray-400); margin-top: 2px; }
.enroll-card-btn { display: block; width: 100%; background: var(--teal); color: var(--white); font-weight: 600; font-size: 0.95rem; padding: 14px; border-radius: 100px; text-decoration: none; text-align: center; border: none; cursor: pointer; transition: all 0.25s ease; margin-bottom: 20px; }
.enroll-card-btn:hover { background: var(--teal-dark); }
.enroll-card-details { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.enroll-card-details li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.88rem; color: var(--gray-700); }
.enroll-card-details li .detail-icon { width: 20px; text-align: center; flex-shrink: 0; font-size: 0.9rem; }

/* Track Paths */
.track-paths { max-width: 1200px; margin: 0 auto; padding: 0 32px 16px; }
.track-paths h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.track-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.track-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); padding: 22px 20px; text-decoration: none; transition: all 0.25s ease; display: flex; align-items: center; gap: 14px; }
.track-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm, 0 2px 8px rgba(44,51,71,0.06)); transform: translateY(-2px); }
.track-card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.track-card-text h4 { font-family: var(--font-display); font-size: 0.92rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; line-height: 1.3; }
.track-card-text p { font-size: 0.78rem; color: var(--gray-400); }

/* Course Tabs */
.course-tabs-wrapper { background: var(--white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); position: sticky; top: 69px; z-index: 90; margin-top: 16px; }
.course-tabs { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; gap: 0; }
.course-tab { padding: 16px 24px; font-size: 0.88rem; font-weight: 500; color: var(--gray-600); text-decoration: none; border-bottom: 3px solid transparent; transition: all 0.2s; }
.course-tab:hover { color: var(--navy); }
.course-tab.active { color: var(--teal); font-weight: 600; border-bottom-color: var(--teal); }

/* Containers */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.course-content-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.course-main { padding: 48px 0 80px; }
.course-sidebar-spacer { display: block; }

/* What You'll Learn */
.learn-box { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px; margin-bottom: 48px; }
.learn-box h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.learn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.learn-item { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: var(--gray-700); line-height: 1.55; }
.learn-check { color: var(--teal); font-weight: 700; font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }

/* Skills */
.skills-section { margin-bottom: 48px; }
.skills-section h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.skills-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-chip { background: var(--teal-light); color: var(--teal-dark); font-size: 0.82rem; font-weight: 500; padding: 8px 18px; border-radius: 100px; transition: all 0.2s; }
.skill-chip:hover { background: var(--teal); color: var(--white); }

/* Module Accordion */
.modules-section { margin-bottom: 48px; }
.modules-section h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.modules-subtitle { font-size: 0.92rem; color: var(--gray-600); margin-bottom: 24px; }
.module-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.2s; }
.module-card:hover { box-shadow: var(--shadow-sm, 0 2px 8px rgba(44,51,71,0.06)); }
.module-header { padding: 24px 28px; cursor: pointer; display: flex; align-items: center; gap: 20px; user-select: none; }
.module-number { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.mod-1 { background: linear-gradient(135deg, var(--sage-dark), var(--sage)); }
.mod-2 { background: linear-gradient(135deg, #7a6b96, var(--lavender)); }
.mod-3 { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.mod-4 { background: linear-gradient(135deg, #b8756a, var(--blush)); }
.module-info { flex: 1; }
.module-info h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.module-meta { font-size: 0.8rem; color: var(--gray-400); }
.module-chevron { width: 24px; height: 24px; color: var(--gray-400); transition: transform 0.3s ease; flex-shrink: 0; }
.module-card.open .module-chevron { transform: rotate(180deg); }
.module-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.module-card.open .module-body { max-height: 800px; }
.module-body-inner { padding: 0 28px 28px; padding-left: 96px; }
.module-objectives { margin-bottom: 20px; }
.module-objectives h4 { font-size: 0.82rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.module-objectives ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.module-objectives li { font-size: 0.88rem; color: var(--gray-700); padding-left: 20px; position: relative; line-height: 1.55; }
.module-objectives li::before { content: '\2713'; position: absolute; left: 0; color: var(--teal); font-weight: 700; font-size: 0.82rem; }
.module-survey-preview { background: var(--gray-100); border-radius: var(--radius-sm); padding: 16px 20px; }
.module-survey-preview h4 { font-size: 0.78rem; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.module-survey-preview p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.55; font-style: italic; }

/* Assessment */
.assessment-section { margin-bottom: 48px; }
.assessment-section h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.assessment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.assess-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 24px; }
.assess-card h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.assess-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.55; }
.survey-domains { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.domain-chip { background: var(--lavender-light); color: #6b5b8a; font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.04em; }

/* Outcomes Preview (curriculum) */
.outcomes-preview { margin-bottom: 48px; }
.outcomes-preview h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.outcomes-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.outcome-mini { background: var(--white); border-radius: var(--radius-md); padding: 24px; border: 1px solid var(--gray-200); text-align: center; }
.outcome-mini .stat { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--teal); margin-bottom: 4px; }
.outcome-mini .stat-label { font-size: 0.82rem; color: var(--gray-600); line-height: 1.4; }

/* Org Note */
.org-note { background: var(--white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--gray-200); display: flex; gap: 20px; align-items: flex-start; margin-bottom: 48px; }
.org-note-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.org-note h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.org-note p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--sage) 0%, var(--lavender) 50%, var(--blush) 100%); border-radius: var(--radius-xl); padding: 56px 48px; text-align: center; margin: 0 auto 80px; max-width: 1200px; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 40% 30%, rgba(255,255,255,0.35) 0%, transparent 60%); pointer-events: none; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.cta-banner p { font-size: 1.05rem; color: var(--navy-light); margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner a { display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: var(--white); font-weight: 600; font-size: 1rem; padding: 16px 36px; border-radius: 100px; text-decoration: none; transition: all 0.25s ease; box-shadow: 0 4px 16px rgba(91,165,165,0.3); }
.cta-banner a:hover { background: var(--teal-dark); transform: translateY(-2px); }


/* ============================================================
   42. CERTIFICATION PAGE STYLES
   ============================================================ */

/* Section containers */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-teal { background: var(--teal-light); }
.section-label { font-size: 0.75rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.01em; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); max-width: 680px; line-height: 1.7; }

/* Problem Grid */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; align-items: start; }
.problem-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm, 0 2px 8px rgba(44,51,71,0.06)); }
.problem-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.problem-card h3 .icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.icon-red { background: #fde8e8; }
.icon-amber { background: #fef3cd; }
.problem-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.problem-card li { font-size: 0.95rem; color: var(--gray-700); padding-left: 24px; position: relative; }
.problem-card li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; }
.problem-card.threats li::before { background: #e57373; }
.problem-card.gaps li::before { background: #f0ad4e; }

/* Ecosystem Grid */
.ecosystem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.eco-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; box-shadow: var(--shadow-sm); border: 2px solid transparent; transition: all 0.3s ease; position: relative; overflow: hidden; }
.eco-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.eco-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.eco-card:nth-child(1)::before { background: var(--sage); }
.eco-card:nth-child(2)::before { background: var(--lavender); }
.eco-card:nth-child(3)::before { background: var(--blush); }
.eco-icon { width: 64px; height: 64px; border-radius: 20px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.eco-icon-sage { background: var(--sage-light); }
.eco-icon-lav { background: var(--lavender-light); }
.eco-icon-blush { background: var(--blush-light); }
.eco-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.eco-card .audience { font-size: 0.8rem; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.eco-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }
.eco-topics { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 16px; }
.eco-chip { background: var(--gray-100); color: var(--gray-700); font-size: 0.75rem; font-weight: 500; padding: 4px 12px; border-radius: 100px; }

/* Certification Tiers */
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.tier-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: var(--shadow-sm); border: 2px solid var(--gray-200); transition: all 0.3s ease; position: relative; }
.tier-card:hover { box-shadow: var(--shadow-lg, 0 8px 40px rgba(44,51,71,0.12)); transform: translateY(-4px); }
.tier-card.featured { border-color: var(--gold-warm, #C4A24E); box-shadow: var(--shadow-md), 0 0 0 1px var(--gold-warm, #C4A24E); }
.tier-card.featured::after { content: 'Most Common'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold-warm, #C4A24E); color: var(--white); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 16px; border-radius: 100px; }
.tier-level { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.tier-level-1 { color: var(--sage-dark); }
.tier-level-2 { color: var(--gold-warm, #C4A24E); }
.tier-level-3 { color: var(--teal); }
.tier-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.tier-score { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 20px; }
.tier-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.tier-card li { font-size: 0.9rem; color: var(--gray-700); padding-left: 28px; position: relative; }
.tier-card li::before { content: '\2713'; position: absolute; left: 0; color: var(--teal); font-weight: 700; font-size: 0.85rem; }

/* Scoring Grid */
.scoring-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; }
.score-card { background: var(--white); border-radius: var(--radius-md); padding: 24px 20px; text-align: center; box-shadow: var(--shadow-sm); }
.score-weight { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--teal); margin-bottom: 4px; }
.score-card h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.score-card p { font-size: 0.8rem; color: var(--gray-600); line-height: 1.5; }

/* Certificate Showcase */
.cert-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 48px; }
.cert-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); transform: rotate(-1.5deg); transition: transform 0.4s ease; }
.cert-image:hover { transform: rotate(0deg) scale(1.02); }
.cert-image img { width: 100%; display: block; }
.cert-details h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
.cert-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.cert-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.95rem; color: var(--gray-700); line-height: 1.55; }
.cert-list-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

/* Stakeholders */
.stakeholders { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.stakeholder { text-align: center; padding: 28px 16px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform 0.2s ease; }
.stakeholder:hover { transform: translateY(-4px); }
.stakeholder-icon { width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.stakeholder h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.stakeholder p { font-size: 0.8rem; color: var(--gray-600); line-height: 1.5; }

/* Pilot Program */
.pilot-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0; }
.pilot-stat { text-align: center; padding: 28px 16px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.pilot-stat .number { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 6px; }
.pilot-stat .label { font-size: 0.85rem; color: var(--gray-600); font-weight: 500; }
.pilot-phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.phase-card { background: var(--white); border-radius: var(--radius-md); padding: 28px 24px; box-shadow: var(--shadow-sm); position: relative; }
.phase-number { font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 8px; }
.phase-card h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.phase-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }
.phase-card .phase-time { font-size: 0.75rem; font-weight: 600; color: var(--gray-400); margin-top: 12px; text-transform: uppercase; letter-spacing: 0.06em; }

/* Outcomes Grid */
.outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.outcome-card { background: var(--white); border-radius: var(--radius-md); padding: 32px 28px; box-shadow: var(--shadow-sm); }
.outcome-card .timeframe { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 100px; display: inline-block; margin-bottom: 14px; }
.timeframe-short { background: var(--sage-light); color: var(--sage-dark); }
.timeframe-mid { background: var(--lavender-light); color: #7a6b96; }
.timeframe-long { background: var(--blush-light); color: #b8756a; }
.outcome-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.outcome-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.outcome-card li { font-size: 0.9rem; color: var(--gray-700); padding-left: 20px; position: relative; }
.outcome-card li::before { content: '\2192'; position: absolute; left: 0; color: var(--teal); font-weight: 600; }

/* Sustainability */
.sustain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.sustain-card { background: var(--white); border-radius: var(--radius-md); padding: 28px 24px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: flex-start; }
.sustain-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.sustain-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.sustain-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }


/* ============================================================
   43. COMMUNITY CHAMPIONS PAGE STYLES
   ============================================================ */

/* Hero (Champions-specific — scoped to avoid leaking into homepage .hero) */
body > section.hero { background: linear-gradient(135deg, var(--sage) 0%, var(--lavender) 50%, var(--blush) 100%); padding: 80px 0 72px; text-align: center; position: relative; overflow: hidden; }
body > section.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.3) 0%, transparent 60%), radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.2) 0%, transparent 50%); pointer-events: none; }
.hero-inner { max-width: 820px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
body > section.hero .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.6); backdrop-filter: blur(12px); padding: 8px 20px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 28px; border: none; }
.hero-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: var(--white); font-weight: 600; font-size: 1rem; padding: 16px 36px; border-radius: 100px; text-decoration: none; transition: all 0.25s ease; box-shadow: 0 4px 16px rgba(91,165,165,0.3); }
.hero-cta:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(91,165,165,0.4); }
body > section.hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em; }
body > section.hero p { font-size: 1.15rem; color: var(--navy-light); max-width: 640px; margin: 0 auto 32px; line-height: 1.7; }

/* Ways Grid */
.ways-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.way-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-sm); border: 2px solid transparent; transition: all 0.3s ease; position: relative; overflow: hidden; }
.way-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.way-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.way-card:nth-child(1)::before { background: var(--sage); }
.way-card:nth-child(2)::before { background: var(--lavender); }
.way-card:nth-child(3)::before { background: var(--blush); }
.way-card:nth-child(4)::before { background: var(--teal); }
.way-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; }
.way-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.way-card p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
.way-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.way-card li { font-size: 0.88rem; color: var(--gray-700); padding-left: 20px; position: relative; }
.way-card li::before { content: '\2192'; position: absolute; left: 0; color: var(--teal); font-weight: 600; }
.way-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-weight: 600; font-size: 0.88rem; text-decoration: none; margin-top: 16px; transition: gap 0.2s; }
.way-card-link:hover { gap: 10px; }

/* Advisory Board */
.advisory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; align-items: start; }
.advisory-info h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
.advisory-info > p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; }
.advisory-details { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.advisory-details li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: var(--gray-700); line-height: 1.55; }
.advisory-details li .ad-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.roles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.role-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 20px; transition: all 0.2s; }
.role-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.role-card h4 { font-family: var(--font-display); font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.role-card p { font-size: 0.78rem; color: var(--gray-400); line-height: 1.45; }

/* Individual Certification */
.cert-paths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.cert-path-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; box-shadow: var(--shadow-sm); border: 2px solid transparent; transition: all 0.3s ease; }
.cert-path-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.cert-path-icon { width: 64px; height: 64px; border-radius: 20px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.cert-path-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.cert-path-card .path-for { font-size: 0.78rem; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.cert-path-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.cert-path-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; text-align: left; }
.cert-path-card li { font-size: 0.82rem; color: var(--gray-700); padding-left: 18px; position: relative; }
.cert-path-card li::before { content: '\2713'; position: absolute; left: 0; color: var(--teal); font-weight: 700; font-size: 0.78rem; }

/* Donate Section */
.donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; align-items: center; }
.donate-info h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
.donate-info > p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; }
.donate-btn-area { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.donate-amounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 28px; width: 100%; max-width: 360px; }
.donate-amount-chip { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); padding: 14px 8px; text-align: center; font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--teal); cursor: pointer; transition: all 0.2s; }
.donate-amount-chip:hover { border-color: var(--teal); background: var(--teal-light); }
.donate-amount-chip.featured { border-color: var(--teal); background: var(--teal-light); }
.donate-big-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: var(--white); font-weight: 600; font-size: 1.1rem; padding: 20px 48px; border-radius: 100px; text-decoration: none; transition: all 0.25s ease; box-shadow: 0 4px 16px rgba(91,165,165,0.3); margin-bottom: 12px; }
.donate-big-btn:hover { background: var(--teal-dark); transform: translateY(-2px); }
.donate-note { font-size: 0.82rem; color: var(--gray-400); }

/* FAQ */
.faq-list { max-width: 760px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; }
.faq-q { padding: 22px 28px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; user-select: none; }
.faq-q h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--navy); }
.faq-chevron { width: 20px; height: 20px; color: var(--gray-400); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 28px 24px; font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* Impact Stats */
.impact-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.impact-stat { text-align: center; padding: 32px 16px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.impact-stat .number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 6px; }
.impact-stat .label { font-size: 0.85rem; color: var(--gray-600); font-weight: 500; line-height: 1.3; }


/* ============================================================
   44. CHILD SAFETY PAGES — RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 968px) {
  .course-hero,
  .course-content-layout { grid-template-columns: 1fr; }
  .enroll-card { position: static; }
  .course-sidebar-spacer { display: none; }
  .module-body-inner { padding-left: 28px; }
  .learn-grid { grid-template-columns: 1fr; }
  .assessment-grid { grid-template-columns: 1fr; }
  .outcomes-row { grid-template-columns: 1fr; }
  .track-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid,
  .cert-showcase,
  .sustain-grid,
  .outcomes-grid { grid-template-columns: 1fr; }
  .ecosystem-grid,
  .tiers-grid,
  .pilot-phases { grid-template-columns: 1fr; }
  .scoring-grid { grid-template-columns: repeat(2, 1fr); }
  .pilot-stats,
  .stakeholders { grid-template-columns: repeat(2, 1fr); }
  .ways-grid,
  .advisory-grid,
  .donate-grid { grid-template-columns: 1fr; }
  .cert-paths-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .impact-strip { grid-template-columns: repeat(2, 1fr); }
  .course-meta { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; text-align: center; }
  .cert-badge-img { max-width: 160px; margin: 0 auto; }
  .cert-tiers { grid-template-columns: 1fr; }
  .involved-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .course-meta { grid-template-columns: 1fr; }
  .track-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; margin: 0 16px 40px; }
  .course-tabs { overflow-x: auto; }
  .course-tab { padding: 14px 16px; white-space: nowrap; font-size: 0.82rem; }
  .scoring-grid,
  .pilot-stats,
  .stakeholders,
  .impact-strip { grid-template-columns: 1fr; }
  body > section.hero { padding: 56px 0 48px; }
  .section { padding: 56px 0; }
}
