@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

:root {
  --bg-dark: #2D1B4E;
  --bg-secondary: #3D2560;
  --accent: #F5A623;
  --text-white: #FFFFFF;
  --text-dark: #1A1A2E;
  --bg-light: #FAF8F5;
  --card-purple: #4A2D7A;
  --stats-bar: #1E0F3C;
  --font-family: 'Nunito', sans-serif;
  --section-pad: 80px 0;
  --section-pad-mobile: 48px 0;
  --radius-card: 16px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --max-width: 1200px;
  --nav-height: 95px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-pad);
}

@media (max-width: 768px) {
  section {
    padding: var(--section-pad-mobile);
  }
}

/* Typography */
.label-orange {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.label-white {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 12px;
}

h1, h2, h3, h4 {
  font-weight: 900;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.text-orange { color: var(--accent); }
.text-white { color: var(--text-white); }
.text-italic { font-style: italic; }

.section-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 720px;
  margin-top: 16px;
}

.bg-dark { background: var(--bg-dark); color: var(--text-white); }
.bg-secondary { background: var(--bg-secondary); color: var(--text-white); }
.bg-light { background: var(--bg-light); }
.bg-white { background: #fff; }
.bg-cream { background: var(--bg-light); }
.bg-stats { background: var(--stats-bar); color: var(--text-white); }
.bg-accent { background: var(--accent); color: var(--text-white); }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.logo-wrapper {
  display: block;
  width: auto;
  height: auto;
  overflow: visible;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  width: auto;
  height: 75px;
  display: block;
  margin-top: 0;
  background: transparent;
}

.logo-img-large {
  height: 140px;
  width: 140px;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  background: transparent;
}

.footer-logo-img-wrap {
  width: auto;
  height: auto;
  overflow: visible;
  flex-shrink: 0;
}

.logo-img-footer {
  width: auto;
  height: 75px;
  display: block;
  background: transparent;
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
}

.logo-tagline {
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  white-space: nowrap;
  text-align: center;
}

.site-header .logo-tagline {
  color: #1a1535;
}

.site-footer .logo-tagline {
  color: #ffffff;
  text-align: left;
}

.logo-text {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bg-dark);
}

.logo-text span {
  display: block;
  font-style: italic;
  font-weight: 800;
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 8px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 95px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 24px;
  position: relative;
  gap: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 10px;
  position: relative;
  transition: color 0.2s;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

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

.nav-login {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--bg-dark);
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    gap: 0;
    z-index: 1001;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions .nav-login {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: var(--accent);
  color: var(--text-white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text-white);
  color: var(--text-white);
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--bg-dark);
  color: var(--bg-dark);
}

.btn-white {
  background: var(--text-white);
  color: var(--bg-dark);
}

.btn-white-outline {
  background: transparent;
  border: 2px solid var(--text-white);
  color: var(--text-white);
}

.btn-arrow .arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  margin-left: 4px;
}

.btn-primary .arrow-circle {
  background: rgba(255, 255, 255, 0.3);
}

.btn-outline .arrow-circle,
.btn-white-outline .arrow-circle {
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline-dark .arrow-circle {
  background: rgba(45, 27, 78, 0.1);
}

.btn-navy {
  background: var(--bg-dark);
  color: var(--text-white);
}

.btn-navy .arrow-circle {
  background: var(--accent);
  color: var(--text-white);
}

/* Grid utilities */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Photo placeholder */
.photo-placeholder {
  background: var(--card-purple);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
  min-height: 280px;
}

.photo-placeholder .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.photo-placeholder .icon-circle svg {
  width: 40px;
  height: 40px;
  opacity: 0.6;
}

.photo-placeholder .caption {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  max-width: 320px;
}

.hero-photo-frame {
  border: 3px solid var(--accent);
  border-radius: 20px;
  overflow: hidden;
  background: var(--card-purple);
  min-height: 400px;
}

.hero-photo-frame .photo-placeholder {
  min-height: 400px;
  border-radius: 17px;
}

/* CREATE placeholder */
.create-placeholder {
  border: 2px dashed var(--accent);
  border-radius: 8px;
  padding: 16px 20px;
  font-style: italic;
  color: #666;
  background: rgba(245, 166, 35, 0.06);
  font-size: 0.95rem;
}

.create-inline {
  display: inline;
  border-bottom: 2px dashed var(--accent);
  font-style: italic;
  color: #888;
}

/* DATA NEEDED badge */
.data-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text-white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

/* Cards */
.card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.card-purple {
  background: var(--card-purple);
  color: var(--text-white);
  border: 2px solid var(--accent);
}

.card-dark {
  background: var(--bg-dark);
  color: var(--text-white);
}

/* Hero sections */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: #2D1B4E;
  min-height: 600px;
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #2d1b4e;
  background-image:
    repeating-linear-gradient(
      -32deg,
      transparent,
      transparent 14px,
      rgba(255, 255, 255, 0.05) 14px,
      rgba(255, 255, 255, 0.05) 28px
    ),
    linear-gradient(135deg, #2d1b4e 0%, #4a2d6e 50%, #6b3fa0 100%);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(2px) brightness(0.35);
  transform: scale(1.05);
  z-index: 1;
}

.hero-bg-image.is-hidden {
  display: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(45, 27, 78, 0.95) 0%,
    rgba(45, 27, 78, 0.85) 40%,
    rgba(45, 27, 78, 0.20) 100%
  );
  z-index: 1;
}

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

.hero {
  padding: 100px 0 80px;
}

/* Platform page hero background */
.platform-hero {
  padding: 0;
  background-color: #2D1B4E;
}

.platform-hero-bg-wrap {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.platform-hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  transform: scale(1.05);
  z-index: 0;
}

.platform-hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 15, 60, 0.80);
  z-index: 1;
}

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

.platform-hero-inner {
  max-width: 760px;
  text-align: left;
}

.platform-hero-inner .hero-sub {
  max-width: 700px;
  width: 100%;
}

.hero-centered {
  text-align: center;
}

.hero-centered .container {
  max-width: 800px;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  margin: 24px 0 32px;
  opacity: 0.9;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Stats bar */
.stats-bar {
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.stat-source {
  font-size: 0.75rem;
  opacity: 0.6;
}

.stats-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.impact-proof-subtitle {
  max-width: 650px;
  margin: 24px auto 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

/* Impact page: proof stats row */
.impact-stats-bar {
  background: #faf6f0;
  color: #1c1c1a;
  padding: 48px 0;
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.impact-stat-card {
  background: #fff;
  border-radius: 16px;
  border-top: 4px solid var(--accent);
  box-shadow: 0 4px 20px rgba(45, 27, 78, 0.08);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.impact-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(45, 27, 78, 0.14);
}

.impact-stat-badge {
  font-size: 0.6rem;
  padding: 3px 10px;
  letter-spacing: 0.06em;
}

.impact-stats-bar .impact-stat-label,
.impact-stat-card--text-only .impact-stat-label {
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1a;
  line-height: 1.4;
  margin: 16px 0 0;
}

.impact-stats-bar .impact-stat-card .about-stat-value {
  color: var(--accent);
}

.impact-stat-card .impact-stat-label:first-child,
.impact-stat-card--text-only .impact-stat-label {
  margin-top: 0;
  color: #1c1c1a;
}

.impact-stat-card--text-only .impact-stat-label {
  color: #4a4440;
  font-weight: 600;
}

.impact-stat-meta {
  font-size: 13px;
  color: #888;
  margin: 8px 0 0;
  line-height: 1.4;
}

.impact-stats-disclaimer {
  color: #6b7280;
  opacity: 1;
}

@media (max-width: 768px) {
  .impact-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Platform three parts (home) */
.platform-three-parts {
  background: #FFFFFF;
  padding: 100px 80px;
}

.platform-header {
  text-align: center;
  margin-bottom: 72px;
}

.platform-header .section-label {
  color: #F5A623;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.platform-header h2 {
  color: #1A1A2E;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.platform-header .section-subtitle {
  color: #555555;
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.platform-cards-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.connecting-line {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(245, 166, 35, 0.35), transparent);
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.platform-cards-wrapper .platform-card,
.platform-cards-wrapper .card-arrow {
  position: relative;
  z-index: 1;
}

.platform-card {
  background: #FFFFFF;
  border: none;
  border-radius: 20px;
  padding: 40px 32px;
  flex: 1 1 0;
  max-width: 320px;
  min-height: 280px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  box-shadow: 0 8px 40px rgba(45, 27, 78, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 56px rgba(45, 27, 78, 0.20);
}

.platform-card--primary {
  border-top: 5px solid #F5A623;
  background: #FFFFFF;
}

.platform-card:nth-child(4) {
  border-top: 5px solid #6B3FA0;
}

.platform-card:nth-child(6) {
  border-top: 5px solid #F5A623;
}

.card-number {
  font-size: 80px;
  font-weight: 900;
  color: rgba(45, 27, 78, 0.06);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
  letter-spacing: -3px;
}

.platform-three-parts .card-icon {
  margin-bottom: 20px;
}

.card-label {
  color: #F5A623;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.platform-card h3 {
  color: #1A1A2E;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 14px;
}

.platform-card p {
  color: #555555;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

.card-arrow {
  flex-shrink: 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 0;
}

.card-arrow svg path {
  stroke: #D0D0D0;
}

@media (max-width: 768px) {
  .platform-three-parts {
    padding: 60px 24px;
  }

  .platform-cards-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .connecting-line {
    display: none;
  }

  .card-arrow {
    transform: rotate(90deg);
    margin: 0;
    padding: 8px 0;
  }

  .platform-card {
    max-width: 100%;
    width: 100%;
  }

  .platform-header h2 {
    font-size: 32px;
  }
}

/* Inclusion gap */
.inclusion-gap-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: stretch;
}

.inclusion-gap-media {
  display: flex;
  min-height: 100%;
}

.inclusion-gap-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(45, 27, 78, 0.15);
  display: block;
}

@media (max-width: 768px) {
  .inclusion-gap-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .inclusion-gap-img {
    min-height: 280px;
  }
}

.inclusion-stat {
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin: 16px 0;
}

.inclusion-headline {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  margin-bottom: 24px;
}

.footnote {
  font-size: 0.8rem;
  color: #888;
  margin-top: 24px;
}

/* Dr Harvey section */
.harvey-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  display: block;
}

/* Profile section (Dr. Harvey) */
.profile-section {
  background: #faf6f0;
  padding: 80px 0;
  border-top: 4px solid var(--accent);
}

.profile-photo-wrap {
  position: relative;
}

.profile-photo-accent {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  background: var(--accent);
  opacity: 0.15;
  border-radius: 16px;
  z-index: 0;
}

.profile-section .profile-photo {
  position: relative;
  z-index: 1;
  border: 3px solid var(--accent);
  box-shadow: 6px 6px 0 0 rgba(245, 166, 35, 0.35), 0 8px 28px rgba(245, 166, 35, 0.2);
}

.profile-headline .text-orange {
  display: inline-block;
}

.profile-headline .text-orange::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 10px;
}

.profile-subtitle {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.profile-section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 28px 0 14px;
}

.profile-section-label::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-top: 8px;
}

.profile-credentials-list li {
  margin-bottom: 16px;
  gap: 12px;
}

.profile-section .credential-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 3px;
}

.profile-bio-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.profile-bio-card p:last-child {
  margin-bottom: 0;
}

.profile-section .profile-quote {
  border-left: 4px solid #f5a623;
  padding-left: 20px;
  margin: 24px 0;
  font-size: 17px;
  font-style: italic;
  color: var(--text-dark);
}

.profile-disclaimer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e0dcd6;
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px 12px 0 0;
  display: block;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 600px));
  justify-content: center;
  gap: 24px;
  align-items: stretch;
}

.team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.harvey-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.cite-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text-white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  margin: 16px 0 8px;
}

blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  font-size: 1.05rem;
}

/* CTA banner */
.cta-banner {
  text-align: center;
  padding: 80px 24px;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  margin-bottom: 32px;
  font-size: 1.05rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand .footer-logo-block {
  margin-bottom: 24px;
}

.footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  opacity: 0.75;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--accent);
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-bottom a {
  margin: 0 8px;
}

.footer-bottom a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Legal pages */
.legal-page {
  background: #F5F0E8;
  color: #1C1C1A;
  padding: 64px 0 96px;
  min-height: 50vh;
}

.legal-page-inner {
  max-width: 760px;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: #1C1C1A;
  line-height: 1.2;
  margin-bottom: 24px;
}

.legal-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 40px;
  color: #1C1C1A;
}

.legal-page h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1C1C1A;
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.35;
}

.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1C1C1A;
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.legal-page p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
  color: #1C1C1A;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 20px;
}

.legal-page li {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 10px;
  color: #1C1C1A;
}

.legal-page a {
  color: #C4622D;
  font-weight: 600;
  text-decoration: underline;
}

.legal-page a:hover {
  color: #a04f24;
}

/* About page */
.about-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 0;
  background-color: #2D1B4E;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/about-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  transform: scale(1.05);
  z-index: 0;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 15, 60, 0.75);
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero h1 .italic-orange {
  color: var(--accent);
  font-style: italic;
}

/* About page mission */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.mission-media {
  display: flex;
  align-self: stretch;
}

.mission-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(45, 27, 78, 0.12);
  display: block;
}

.mission-text h2 {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mission-img {
    min-height: 280px;
  }
}

/* About page stats */
.about-stats-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF8F5 100%);
  padding: 56px 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 400px;
  margin: 0 auto;
}

.about-stat-card {
  background: #FAF8F5;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(45, 27, 78, 0.08);
  border-top: 4px solid var(--accent);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(45, 27, 78, 0.12);
}

.about-stat-card--purple {
  background: linear-gradient(180deg, #FFFFFF 0%, #F0EBF7 100%);
  border-top-color: var(--bg-dark);
}

.about-stat-card--accent {
  border-top-color: var(--accent);
}

.about-stat-icon {
  font-size: 2rem;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.about-stat-value {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.about-stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.55;
  margin: 0;
}

.about-stat-sublabel {
  font-size: 0.8rem;
  font-style: italic;
  color: #666;
  margin: 6px 0 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-stat-value {
    font-size: 2.25rem;
  }

  .about-stat-card {
    padding: 24px 16px;
  }
}

/* Story section background */
.story-section {
  position: relative;
  overflow: hidden;
  background-color: #FAF8F5;
}

.story-bg-wrapper {
  position: relative;
  overflow: hidden;
}

.story-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  transform: scale(1.05);
  z-index: 0;
}

.story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 246, 240, 0.85);
  z-index: 1;
}

.story-content {
  position: relative;
  z-index: 2;
}

/* Timeline */
.story-section .story-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 16px;
}

.timeline {
  position: relative;
  padding-left: 56px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(
    to bottom,
    var(--accent) 0,
    var(--accent) 8px,
    transparent 8px,
    transparent 16px
  );
}

.timeline-item {
  position: relative;
  margin-bottom: 56px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-num {
  position: absolute;
  left: -56px;
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
}

.timeline-item h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.timeline-year-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  vertical-align: middle;
  margin-left: 8px;
  font-style: normal;
}

.timeline-founders {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 24px;
}

.timeline-founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.timeline-founder-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--accent);
  box-shadow: 0 4px 16px rgba(45, 27, 78, 0.15);
  display: block;
}

.timeline-founder-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.team-card .photo-placeholder {
  min-height: 200px;
  margin-bottom: 20px;
}

.team-card .role {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

.team-card--clickable {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card--clickable:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.leader-modal-photo {
  max-height: none;
}

.leader-modal-photo--bw {
  filter: grayscale(100%);
}

.leader-modal-role {
  margin-top: 0;
}

.leader-modal-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 8px;
}

.leader-modal-credential {
  font-size: 0.95rem;
  font-style: italic;
  color: #666;
  margin: 0 0 20px;
  line-height: 1.5;
}

.leader-modal-bio {
  text-align: left;
  margin-bottom: 0;
}

/* About page — team & values (post-timeline sections only) */
.about-team-section {
  background: #faf9f6;
  padding: var(--section-pad);
}

.about-team-section--alt {
  background: #f5f3ef;
}

.about-section-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(45, 27, 78, 0.55);
  margin-bottom: 16px;
}

.about-section-label--accent {
  color: var(--accent);
}

.about-section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.about-section-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #555;
  max-width: 720px;
}

.about-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.about-profile-grid--board {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.about-profile-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(45, 27, 78, 0.08);
  border: 1px solid rgba(107, 70, 193, 0.12);
  height: 100%;
}

.about-profile-card.team-card--clickable {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-profile-card.team-card--clickable:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(107, 70, 193, 0.18);
}

.about-profile-card-header {
  background: linear-gradient(145deg, #6b46c1 0%, #553c9a 45%, #4a2d7a 100%);
  padding: 32px 24px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}

.about-profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: block;
}

.about-profile-avatar--bw {
  filter: grayscale(100%);
}

.about-profile-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.about-profile-role {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b46c1;
  margin-bottom: 6px;
}

.about-profile-name {
  font-family: var(--font-family);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.about-profile-bio {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #555;
  margin-bottom: 16px;
  flex: 1;
}

.about-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.about-profile-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  border: 1px solid rgba(107, 70, 193, 0.22);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(107, 70, 193, 0.06);
}

.about-values-section {
  background: #faf9f6;
  padding: var(--section-pad);
  border-top: 1px solid rgba(45, 27, 78, 0.06);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.about-value-item {
  padding: 28px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(107, 70, 193, 0.1);
  box-shadow: 0 2px 12px rgba(45, 27, 78, 0.05);
}

.about-value-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.about-value-title {
  font-family: var(--font-family);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}

.about-value-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

@media (max-width: 1024px) {
  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-profile-grid,
  .about-profile-grid--board {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-profile-card-header {
    min-height: 160px;
    padding: 24px 20px;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-card);
  padding: 28px;
}

.value-card .num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Platform page */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid #e8e4df;
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-card .emoji {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .coach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .coach-grid {
    grid-template-columns: 1fr;
  }
}

.coach-card {
  text-align: center;
}

.coach-card--clickable {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coach-card--clickable:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.coach-card .photo-placeholder {
  min-height: 180px;
  margin-bottom: 16px;
}

.team-photo-deck {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 auto 16px;
  filter: grayscale(100%);
  background-color: #f3ebe3;
  border: 2px solid #e8ddd3;
  flex-shrink: 0;
}

.team-card--deck {
  text-align: center;
  align-items: center;
}

.leader-modal-photo--deck {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  filter: grayscale(100%);
  background-color: #f3ebe3;
  border: 2px solid #e8ddd3;
}

.coach-modal-photo.coach-modal-photo--deck {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  filter: grayscale(100%);
  background-color: #f3ebe3;
  border: 2px solid #e8ddd3;
}

.coach-card-img.coach-card-img--deck {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 auto 16px;
  filter: grayscale(100%);
  background-color: #f3ebe3;
  border: 2px solid #e8ddd3;
}

.coach-card-img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center top;
  background-color: #f5f5f5;
  border-radius: 12px;
  display: block;
  margin-bottom: 16px;
}

.location-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  margin: 8px 0;
}

.location-tag.md { background: #e3f2fd; color: #1565c0; }
.location-tag.ca { background: #fff3e0; color: #e65100; }
.location-tag.ga { background: #f3e5f5; color: #7b1fa2; }
.location-tag.ny { background: #e8f5e9; color: #2e7d32; }
.location-tag.pa { background: #fce4ec; color: #c2185b; }

/* Coach profile modal */
body.coach-modal-open {
  overflow: hidden;
}

.coach-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.coach-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.coach-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.coach-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  max-height: calc(100vh - 48px);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

.coach-modal.is-open .coach-modal-dialog {
  transform: translateY(0) scale(1);
}

.coach-modal-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  position: relative;
  text-align: center;
}

.coach-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f0ebe4;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-dark);
  transition: background 0.2s;
}

.coach-modal-close:hover {
  background: #e8e0d6;
}

.coach-modal-photo {
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 12px;
  display: block;
  margin-bottom: 20px;
}

.coach-modal-photo.leader-modal-photo {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
}

.leader-modal .coach-modal-card {
  max-height: none;
}

.coach-modal-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.coach-modal-role {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  background: #fff3e0;
  color: #e65100;
  margin-bottom: 10px;
  line-height: 1.4;
}

.coach-modal-card .location-tag {
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
}

.coach-modal-video-wrap {
  text-align: left;
  margin-bottom: 4px;
}

.coach-modal-video-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}

.coach-modal-video {
  width: 100%;
  border-radius: 12px;
  display: block;
  margin-bottom: 16px;
}

.coach-modal-video-iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 12px;
  margin-bottom: 16px;
  display: block;
}

.coach-modal-video-wrap--danielle {
  margin-bottom: 16px;
}

.coach-modal-video-wrap--danielle .coach-modal-video-frame {
  width: 60%;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 12px;
}

.coach-modal-video-wrap--danielle .coach-modal-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  margin-bottom: 0;
}

.coach-modal-bio {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 20px;
}

.coach-modal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.coach-modal-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.coach-modal-pill--purple {
  background: #ede7f6;
  color: var(--bg-dark);
}

.coach-modal-pill--orange {
  background: #fff8eb;
  color: #b45309;
}

.coach-modal-book-btn {
  width: 100%;
  margin-top: 24px;
  justify-content: center;
}

.coach-booking-back {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 20px;
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bg-dark);
  cursor: pointer;
  transition: color 0.2s;
}

.coach-booking-back:hover {
  color: var(--accent);
}

.coach-booking-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 4px 0 0;
  text-align: left;
}

.coach-booking-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--bg-dark);
  margin-bottom: 8px;
  text-align: left;
}

.coach-booking-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.5;
  text-align: left;
}

.coach-booking-field {
  margin-bottom: 18px;
}

.coach-booking-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 6px;
  text-align: left;
}

.coach-booking-field input,
.coach-booking-field textarea,
.coach-booking-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.coach-booking-field textarea {
  min-height: 100px;
  resize: vertical;
}

.coach-booking-field input:focus,
.coach-booking-field textarea:focus,
.coach-booking-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}

.coach-booking-readonly {
  background: #f0f0f0;
  color: #555;
  cursor: not-allowed;
}

.coach-booking-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.coach-booking-consent {
  margin-bottom: 20px;
}

.coach-booking-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
  cursor: pointer;
  text-align: left;
}

.coach-booking-consent-label input {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}

.coach-booking-consent-label a {
  color: var(--accent);
  font-weight: 700;
}

.coach-booking-submit {
  width: 100%;
  justify-content: center;
}

.coach-booking-success {
  text-align: center;
  padding: 24px 8px 8px;
}

.coach-booking-success-text {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 28px;
}

.coach-booking-success-text strong {
  color: var(--bg-dark);
}

.coach-booking-back-profile {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .coach-booking-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.coach-more {
  border: 2px dashed var(--accent);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  font-weight: 800;
  color: var(--accent);
  font-size: 1.1rem;
}

.safety-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.badge-item {
  background: var(--card-purple);
  color: #fff;
  padding: 24px;
  border-radius: var(--radius-card);
  text-align: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-col {
  padding: 32px;
}

.comparison-col.general {
  background: #fff;
}

.comparison-col.him {
  background: var(--bg-dark);
  color: #fff;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.comparison-item .icon-x { color: #e53935; font-weight: 900; }
.comparison-item .icon-check { color: var(--accent); font-weight: 900; }

@media (max-width: 768px) {
  .comparison { grid-template-columns: 1fr; }
}

/* How it works */
.channel-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.channel-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.channel-nav a::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

.channel-nav a:hover {
  color: var(--accent);
}

/* How It Works: channels hero */
.channels-hero {
  padding: 0;
  background-color: #1a1535;
}

.channels-hero-bg-wrap {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.channels-hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  transform: scale(1.05);
  z-index: 0;
}

.channels-hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 21, 53, 0.82);
  z-index: 1;
}

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

.channels-hero .label-pill-orange {
  margin-bottom: 16px;
}

.channels-hero-title {
  color: #fff;
}

.channels-hero-accent {
  display: inline-block;
}

.channels-hero-accent::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent);
  margin: 14px auto 0;
}

.channels-hero-sub {
  color: #c8c0e0;
  font-size: 18px;
  line-height: 1.6;
  max-width: 640px;
  margin: 20px auto 0;
}

.channels-hero-nav {
  gap: 16px;
  margin-top: 40px;
}

.channels-hero-nav a {
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 165, 0, 0.4);
  color: #fff;
  font-weight: 800;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.channels-hero-nav a::before {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
}

.channels-hero-nav a:hover {
  color: #fff;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.channel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  margin-right: 12px;
}

.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.step-card {
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 28px;
}

.step-card .step-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.pricing-card {
  background: #fff;
  border: 2px solid #e8e4df;
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--bg-dark);
  margin: 16px 0;
}

.pricing-card .period {
  font-size: 0.85rem;
  color: #888;
}

.pricing-savings {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  margin: 4px 0 12px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 16px 0 12px;
  padding: 0;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}

.pricing-features li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}

.pricing-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.pricing-renewal {
  font-size: 0.75rem;
  color: #888;
  margin-top: 12px;
  line-height: 1.4;
}

.coaching-pricing-block {
  background: #1a1535;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-card);
  padding: 32px 36px;
  margin-bottom: 40px;
  color: #fff;
}

.coaching-pricing-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.coaching-pricing-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.coaching-pricing-rate {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1.2;
}

.coaching-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.coaching-pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.coaching-pricing-check {
  color: var(--accent);
  font-weight: 900;
  flex-shrink: 0;
}

.coaching-pricing-fine {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}

.info-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px;
}

.info-card ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 12px;
}

.info-card li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.medicaid-box {
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 24px;
  margin-top: 24px;
  font-size: 0.9rem;
}

/* Channel 2: Agency Enrollment */
.channel-2-section {
  padding: 0;
  background-color: #faf6f0;
}

.channel-2-bg-wrap {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad);
}

.channel-2-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  transform: scale(1.05);
  z-index: 0;
}

.channel-2-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 246, 240, 0.88);
  z-index: 1;
}

.channel-2-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .channel-2-bg-wrap {
    padding: var(--section-pad-mobile);
  }
}

.channel-2-headline-accent {
  display: inline-block;
}

.channel-2-headline-accent::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 12px;
}

.channel-2-sub {
  margin-top: 16px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 520px;
}

.agency-step-flow {
  position: relative;
  margin-top: 24px;
}

.agency-step-flow::before {
  content: '';
  position: absolute;
  left: 47px;
  top: 52px;
  bottom: 52px;
  border-left: 2px dashed var(--accent);
  z-index: 0;
}

.agency-step-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-template-columns: unset;
  margin: 0;
}

.channel-2-section .agency-step-card {
  position: relative;
  z-index: 1;
  border-top: 3px solid var(--accent);
  background: var(--bg-dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.channel-2-section .agency-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.channel-2-section .agency-step-card .step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 0 0 3px #fff;
  line-height: 1;
}

.channel-2-section .agency-step-card h3 {
  font-size: 17px;
  font-weight: 800;
}

.agency-who-card {
  background: #faf6f0;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.agency-who-card h3 {
  color: var(--accent);
}

.agency-who-card ul {
  list-style: none;
  padding-left: 0;
}

.agency-who-card li {
  position: relative;
  padding-left: 18px;
}

.agency-who-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.channel-2-sidebar {
  display: flex;
  flex-direction: column;
}

.channel-2-sidebar .agency-who-card {
  padding-bottom: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e8e4df;
}

.channel-2-sidebar .agency-medicaid-card {
  margin-top: 0;
  padding: 28px;
  border-top: 3px solid var(--accent);
  border-radius: 16px;
}

.agency-medicaid-label {
  margin: 0;
  display: inline-block;
}

.vr-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-card);
  padding: 32px;
  margin: 24px 0;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}

.status-item {
  font-size: 0.85rem;
  font-weight: 700;
}

.status-item span {
  color: var(--accent);
}

.hub-diagram {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .step-cards, .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Clinical */
.sidebar-card {
  background: var(--bg-secondary);
  border: 2px solid var(--accent);
  border-radius: var(--radius-card);
  padding: 0;
  overflow: hidden;
}

.sidebar-row {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.sidebar-row:last-child {
  border-bottom: none;
}

.sidebar-row strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 6px;
}

.credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.credentials-list .check {
  color: var(--accent);
  font-weight: 900;
}

.evidence-header {
  margin-bottom: 32px;
}

.evidence-header h2 {
  margin-bottom: 0;
}

.evidence-grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  align-items: start;
  gap: 48px;
}

.evidence-base-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .evidence-grid {
    grid-template-columns: 1fr;
  }
}

.framework-card {
  background: #fff;
  border: 1px solid #e8e4df;
  border-radius: var(--radius-card);
  padding: 24px;
  margin-bottom: 16px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.module-card {
  background: var(--bg-light);
  border-radius: var(--radius-card);
  padding: 20px;
  font-size: 0.9rem;
}

.module-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 8px;
  line-height: 1.3;
}

/* Coach training section */
.label-pill-orange {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b45309;
  background: #fff8eb;
  padding: 6px 14px;
  border-radius: 999px;
}

.coach-training-headline::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 14px;
}

.coach-training-section .coach-training-headline {
  margin-bottom: 0;
}

.coach-training-section .coach-training-lead {
  margin-top: 28px;
  margin-bottom: 20px;
}

.coach-training-section .coach-training-body {
  margin: 28px 0 32px;
  color: #555;
}

.coach-training-curriculum-label {
  margin: 0 0 20px;
}

.coach-training-section .module-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.coach-training-section .module-grid .module-card:nth-child(1) {
  grid-column: 1 / 3;
}

.coach-training-section .module-grid .module-card:nth-child(2) {
  grid-column: 3 / 5;
}

.coach-training-section .module-grid .module-card:nth-child(3) {
  grid-column: 5 / 7;
}

.coach-training-section .module-grid .module-card:nth-child(4) {
  grid-column: 2 / 4;
}

.coach-training-section .module-grid .module-card:nth-child(5) {
  grid-column: 4 / 6;
}

.coach-training-section .module-card {
  position: relative;
  padding: 24px;
  padding-top: 28px;
  border-top: 4px solid var(--accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coach-training-section .module-card--orange {
  border-top-color: var(--accent);
}

.coach-training-section .module-card--navy {
  border-top-color: var(--bg-dark);
}

.coach-training-section .module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.coach-training-section .module-card-num {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.coach-training-section .module-card-title {
  font-size: 17px;
  margin-top: 0;
  padding-right: 36px;
}

.coach-training-section .module-card-desc {
  margin-top: 8px;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .coach-training-section .module-grid {
    grid-template-columns: 1fr;
  }

  .coach-training-section .module-grid .module-card:nth-child(n) {
    grid-column: 1 / -1;
  }

  .module-grid, .pillar-grid {
    grid-template-columns: 1fr;
  }
}

/* Impact */
.video-placeholder {
  background: linear-gradient(135deg, #e91e8c, var(--card-purple));
  border-radius: var(--radius-card);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
}

.play-btn {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--card-purple);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-item--hidden {
  display: none;
}

.testimonial-grid.is-expanded .testimonial-item--hidden {
  display: flex;
}

.testimonial-load-more-wrap {
  margin-top: 32px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  margin: 0;
}

.testimonial-quote-mark {
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 8px;
  font-family: Georgia, 'Times New Roman', serif;
}

.testimonial-quote-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-dark);
  font-style: italic;
  margin: 0 0 16px;
  flex-grow: 1;
}

.testimonial-quote-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.testimonial-quote-chips span {
  background: rgba(45, 27, 78, 0.06);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-dark);
}

.testimonial-summary {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666;
  margin: 0 0 16px;
  font-style: normal;
}

.testimonial-meta {
  margin-top: auto;
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.testimonial-role {
  font-size: 0.8rem;
  color: #888;
  margin: 4px 0 0;
}

.testimonial-card--video .testimonial-quote-text {
  margin-top: 16px;
}

.testimonial-video-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-dark);
  aspect-ratio: 16 / 9;
}

.testimonial-video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.testimonial-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.testimonial-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.testimonial-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

body.testimonial-lightbox-open {
  overflow: hidden;
}

.testimonial-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.testimonial-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  padding: 12px;
}

.testimonial-lightbox-dialog video {
  width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 8px;
}

.testimonial-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 1.1rem;
}

.stars {
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-purple);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #fff;
  font-weight: 700;
}

.media-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--bg-dark);
  margin-bottom: 24px;
}

.media-outlet-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: #f0f0f0;
  border-radius: 8px;
  font-weight: 700;
  color: var(--bg-dark);
  font-size: 0.95rem;
  text-align: center;
}

.media-feature-video {
  position: relative;
  min-height: 240px;
  height: 100%;
  background: #000;
  margin: 0;
}

.media-feature-video__player {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: block;
  object-fit: cover;
  border: none;
}

.media-coverage-note {
  color: #555;
  line-height: 1.65;
  font-size: 1rem;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* Investors */
.investors-hero-bg-wrap {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.investors-hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  transform: scale(1.05);
  z-index: 0;
}

.investors-hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 15, 60, 0.82);
  z-index: 1;
}

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

.investors-hero-grid {
  align-items: center;
}

.investors-hero-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.investors-headline-accent {
  display: inline-block;
}

.investors-headline-accent::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 12px;
}

.investors-hero-sub {
  color: #e8e0f0;
  font-size: 1.1rem;
  margin: 24px 0 32px;
  opacity: 1;
  max-width: 560px;
  line-height: 1.65;
}

.investors-hero-cta {
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.4);
}

.investors-founder-row {
  margin-top: 28px;
}

.investors-founder-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}

.investors-founder-name {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.investors-founder-role {
  font-size: 0.85rem;
  color: #c8c0e0;
  margin: 4px 0 0;
}

.round-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.investors-round-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 4px solid var(--accent);
  border-radius: 20px;
  padding: 48px 40px;
}

.investors-round-card-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto 8px;
  padding: 10px;
}

.investors-round-card-logo-wrap .logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.round-card .amount {
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  margin: 16px 0;
}

.investors-round-amount {
  text-shadow: 0 0 24px rgba(245, 166, 35, 0.45);
}

.investors-round-stage {
  color: #fff;
  font-size: 0.95rem;
  opacity: 0.95;
  margin: 0;
}

.investors-round-details {
  margin-top: 24px;
  text-align: left;
}

.round-detail {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.investors-round-card .round-detail span:first-child {
  color: #c8c0e0;
}

.investors-round-card .round-detail span:last-child {
  color: #fff;
  font-weight: 700;
}

.investors-round-card .round-detail:last-child {
  border-bottom: none;
}

.investors-why-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.investors-why-accent {
  display: inline-block;
}

.investors-why-accent::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 12px;
}

.investors-why-subtitle {
  font-size: 17px;
  color: #6b7280;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.reason-card {
  background: #fff;
  border: 1px solid #e8e4df;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(45, 27, 78, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reason-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(45, 27, 78, 0.12);
}

.reason-card--odd {
  border-left: 4px solid var(--accent);
}

.reason-card--even {
  border-left: 4px solid var(--bg-dark);
}

.reason-card .num {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.reason-card--odd .num {
  background: var(--accent);
}

.reason-card--even .num {
  background: var(--bg-dark);
}

.reason-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--bg-dark);
  line-height: 1.35;
  margin: 0;
}

.reason-card-body {
  margin-top: 8px;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
}

.reason-metric-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.reason-metric-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 999px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-family);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-dark);
}

.faq-question .faq-num {
  color: var(--accent);
  font-weight: 900;
  min-width: 28px;
}

.faq-question::after {
  content: '+';
  margin-left: auto;
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 0 0 44px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.form-card {
  background: var(--bg-light);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 0.95rem;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit-error {
  color: #dc2626;
  font-size: 0.9rem;
  margin: 12px 0 0;
  line-height: 1.5;
}

.form-submit-success {
  color: #15803d;
  font-size: 0.9rem;
  margin: 12px 0 0;
  line-height: 1.5;
}

#contactForm button[type='submit'].is-loading {
  pointer-events: none;
  opacity: 0.85;
}

#contactForm .contact-submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: contact-submit-spin 0.7s linear infinite;
}

#contactForm button[type='submit'].is-loading .contact-submit-spinner {
  display: inline-block;
}

@keyframes contact-submit-spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-demo-inline .contact-demo-intro {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-demo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-demo-form-row .form-group {
  margin-bottom: 0;
}

.contact-demo-inline .form-group {
  margin-bottom: 20px;
}

.contact-demo-optional {
  font-weight: 400;
  color: #777;
}

.contact-demo-priorities {
  border: none;
  margin: 0 0 20px;
  padding: 0;
}

.contact-demo-priorities legend {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0;
}

.contact-demo-priorities .contact-demo-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}

.contact-demo-priorities .contact-demo-check input[type='checkbox'] {
  width: auto;
  min-width: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-demo-consent {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-demo-consent a {
  color: var(--accent);
  font-weight: 700;
}

.contact-demo-field-error {
  display: none;
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 6px;
}

.contact-demo-field-error.is-visible {
  display: block;
}

.contact-demo-inline .form-group input.is-invalid {
  border-color: #dc2626;
}

.contact-demo-form-error {
  display: none;
  color: #dc2626;
  font-size: 0.9rem;
  margin-top: 12px;
}

.contact-demo-form-error.is-visible {
  display: block;
}

#contactDemoSubmit.is-loading {
  pointer-events: none;
  opacity: 0.85;
}

#contactDemoSubmit .contact-demo-submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: contact-submit-spin 0.7s linear infinite;
}

#contactDemoSubmit.is-loading .contact-demo-submit-spinner {
  display: inline-block;
}

.contact-demo-step-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.contact-demo-calendar-card {
  text-align: center;
  padding: 8px 0;
}

.contact-demo-calendar-saved {
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-demo-calendar-btn {
  display: inline-flex;
  margin-bottom: 12px;
}

.contact-demo-calendar-hint {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 20px;
}

#contactDemoBooked {
  display: inline-flex;
}

.contact-demo-confirm {
  text-align: center;
  padding: 8px 0;
}

.contact-demo-confirm-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.75rem;
  line-height: 56px;
  font-weight: 700;
}

.contact-demo-confirm-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-demo-confirm-details {
  text-align: left;
  background: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 8px;
}

.contact-demo-confirm-details p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-demo-confirm-details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .contact-demo-form-row {
    grid-template-columns: 1fr;
  }

  .contact-demo-form-row .form-group {
    margin-bottom: 20px;
  }
}

.checklist {
  margin-top: 24px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.checklist li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 900;
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card-purple);
}

@media (max-width: 768px) {
  .reason-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.contact-cta-section {
  text-align: center;
}

.contact-cta-bg-wrap {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.contact-cta-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  transform: scale(1.05);
  z-index: 0;
}

.contact-cta-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 21, 53, 0.85);
  z-index: 1;
}

.contact-cta-content {
  position: relative;
  z-index: 2;
}

.contact-cta-header {
  margin-bottom: 48px;
}

.contact-cta-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.contact-cta-title {
  color: #fff;
  margin: 0;
}

.contact-cta-accent {
  display: inline-block;
}

.contact-cta-accent::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto 0;
}

.contact-cta-subtitle {
  margin: 20px auto 0;
  max-width: 560px;
  font-size: 18px;
  color: #c8c0e0;
}

.contact-cta-section .inquiry-tabs {
  margin-bottom: 0;
}

.inquiry-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.inquiry-tab {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  color: #c8c0e0;
}

.inquiry-tab:not(.active):hover {
  border-color: rgba(255, 165, 0, 0.4);
  transform: translateY(-3px);
}

.inquiry-tab.active {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
}

.inquiry-tab.active:hover {
  transform: none;
}

.inquiry-tab.active h4,
.inquiry-tab.active p {
  color: #fff;
}

.inquiry-tab .tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}

.inquiry-tab.active .tab-icon {
  color: #fff;
}

.inquiry-tab-icon {
  display: block;
}

.inquiry-tab h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.inquiry-tab p {
  font-size: 13px;
  color: #c8c0e0;
  margin: 0;
  line-height: 1.5;
}

.inquiry-tab.active p {
  color: rgba(255, 255, 255, 0.92);
}

.contact-form-wrapper {
  max-width: 640px;
  margin: 48px auto 0;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card-col {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.info-contact-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.info-contact-link:hover {
  text-decoration: underline;
}

.info-contact-address {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

.app-store-btns,
.hero-app-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.app-store-btns {
  margin-top: 12px;
}

/* Identical footprint for App Store and Google Play (homepage, contact, how-it-works) */
.app-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 160px;
  width: 160px;
  max-width: 160px;
  height: 52px;
  min-height: 52px;
  max-height: 52px;
  padding: 8px 12px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  flex: 0 0 160px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0;
}

.app-store-btn img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 136px;
  max-height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: contain;
  object-position: center center;
}

.app-store-btn--google img {
  max-width: 136px;
  max-height: 36px;
  transform: scale(1.35);
  transform-origin: center center;
}

@media (max-width: 768px) {
  .inquiry-tabs {
    grid-template-columns: 1fr;
  }

  .inquiry-tab {
    min-height: 44px;
    padding: 20px 16px;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }
}

/* Programs page */
.programs-hero.platform-hero {
  padding: 0;
}

.programs-hero .platform-hero-bg-wrap {
  padding-top: 32px;
  padding-bottom: 80px;
}

.programs-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto 48px;
  padding: 0 24px;
}

.programs-hero-logo .logo-img {
  height: 75px;
  width: auto;
  display: block;
}

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

.programs-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.15;
}

.programs-hero-sub {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.65;
  color: #fff;
  opacity: 0.95;
}

.programs-about {
  background: #faf6f0;
  padding: 80px 0;
}

.programs-about-grid {
  align-items: center;
  gap: 48px;
}

.programs-about-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #1a1535;
  line-height: 1.3;
  margin-bottom: 20px;
}

.programs-about-body {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.programs-about-link-wrap {
  margin-bottom: 12px;
}

.programs-about-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1535;
  opacity: 0.7;
  margin: 0;
}

.programs-about-photo {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.programs-list {
  background: #faf6f0;
  padding: 80px 0;
}

.programs-list-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  color: #1a1535;
  margin-bottom: 12px;
}

.programs-list-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.programs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.programs-feature-card {
  background: #fff;
  border: 1px solid #e8e4df;
  border-top: 4px solid #f59e0b;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(26, 21, 53, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.programs-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26, 21, 53, 0.12);
}

.programs-feature-icon {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: #f59e0b;
}

.programs-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1535;
  margin-bottom: 10px;
  line-height: 1.35;
}

.programs-feature-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  color: #555;
}

.programs-contact {
  background: #1a1535;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.programs-contact-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 32px;
}

.programs-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.programs-contact-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.programs-contact-icon {
  flex-shrink: 0;
  color: #f59e0b;
}

.programs-contact-list a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.programs-contact-list a:hover {
  color: #f59e0b;
}

.programs-legal-footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 64px 0;
  text-align: center;
}

.programs-legal-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}

.programs-legal-body {
  max-width: 720px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.8;
}

.programs-legal-body a {
  color: var(--accent);
  font-weight: 600;
}

.programs-legal-body a:hover {
  opacity: 0.9;
}

.programs-legal-links {
  margin: 0;
}

.programs-legal-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.programs-legal-links a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .programs-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .programs-about-grid {
    grid-template-columns: 1fr;
  }

  .programs-about-visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .programs-hero-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .programs-hero-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .programs-contact-list li {
    flex-direction: column;
    gap: 6px;
  }
}

/* ===== Mobile responsiveness (site-wide) ===== */
@media (max-width: 768px) {
  :root {
    --nav-height: 76px;
  }

  html {
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-inner {
    min-height: var(--nav-height);
    padding: 8px 16px;
  }

  .header-logo-block {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 120px);
  }

  .logo-img {
    height: 56px;
    max-width: 100%;
  }

  .logo-tagline {
    white-space: normal;
    font-size: 10px;
    line-height: 1.3;
    max-width: 140px;
  }

  .nav-actions .btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .nav-actions .btn .arrow-circle {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }

  .hero-section {
    min-height: auto;
    padding: 0;
  }

  .hero {
    padding: 64px 0 48px;
  }

  .platform-hero-bg-wrap,
  .investors-hero-bg-wrap,
  .contact-cta-bg-wrap {
    padding: 64px 0 48px;
  }

  .hero-sub,
  .section-subtitle {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    min-height: 48px;
  }

  .btn {
    min-height: 44px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea,
  .coach-booking-field input,
  .coach-booking-field textarea,
  .coach-booking-field select {
    font-size: 16px;
    width: 100%;
  }

  .form-card .btn,
  .contact-form-wrapper .btn,
  .coach-booking-submit {
    width: 100%;
    justify-content: center;
  }

  .inclusion-stat {
    font-size: clamp(2.5rem, 14vw, 4rem);
    word-break: break-word;
  }

  .inclusion-stat-label {
    font-size: clamp(1.15rem, 4vw, 1.5rem);
  }

  .platform-three-parts {
    padding: 48px 16px;
  }

  .platform-header h2 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .about-hero {
    padding: 56px 0;
  }

  .about-hero h1 {
    font-size: clamp(2rem, 6vw, 2.75rem);
  }

  .channels-hero-title,
  .contact-cta-title,
  .programs-hero-title {
    font-size: clamp(2rem, 6vw, 2.75rem);
  }

  .timeline-founders {
    flex-wrap: wrap;
    justify-content: center;
  }

  .values-grid,
  .about-values-grid,
  .about-profile-grid,
  .feature-grid,
  .safety-badges,
  .pillar-grid,
  .leadership-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 32px;
  }

  .footer-col a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 4px 0;
    margin-bottom: 4px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }

  .footer-bottom span:last-child {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .footer-bottom a {
    margin: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .footer-address,
  .footer-col a,
  .logo-tagline {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .round-card .amount,
  .investors-round-amount {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .investors-round-card {
    padding: 32px 20px;
  }

  .round-detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .pricing-card .price {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .channel-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .channel-nav a {
    min-height: 44px;
    justify-content: center;
  }

  .coach-modal {
    padding: 12px;
  }

  .coach-modal-dialog {
    max-height: calc(100vh - 24px);
  }

  .coach-modal-card {
    padding: 24px 20px;
    max-height: calc(100vh - 24px);
  }

  .legal-page {
    padding: 48px 0 64px;
  }

  .legal-page h1 {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .app-store-btn {
    min-width: 160px;
    width: 160px;
    max-width: 160px;
    height: 52px;
    min-height: 52px;
    max-height: 52px;
    padding: 8px 12px;
    border-radius: 8px;
    flex: 0 0 160px;
  }

  .app-store-btn img {
    max-width: 136px;
    max-height: 36px;
  }

  .programs-hero-top {
    padding: 0 16px;
  }

  .programs-cards {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .about-stat-value {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .team-img {
    height: 240px;
  }

  .harvey-img {
    height: auto;
    min-height: 220px;
    max-height: 320px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links a {
    font-size: 0.75rem;
    padding: 8px 6px;
  }

  .nav-links {
    gap: 2px;
  }
}

/* Hero credentials & app download */
.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}

.hero-credential-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.45);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.hero-app-download {
  margin-top: 28px;
}

.hero-app-download-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

/* How coaching works (platform) */
.platform-coaching-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.platform-coaching-works-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 400px;
  display: block;
}

@media (max-width: 768px) {
  .platform-coaching-works-grid {
    grid-template-columns: 1fr;
  }

  .platform-coaching-works-media {
    order: -1;
  }
}

/* How coaching integrates (clinical) */
.clinical-coaching-integration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.clinical-coaching-integration-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 420px;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .clinical-coaching-integration-grid {
    grid-template-columns: 1fr;
  }

  .clinical-coaching-integration-media {
    order: -1;
  }
}

/* Safe by Design (platform) */
.safe-by-design-section {
  background: #1A1035;
}

.safe-by-design-section .label-orange {
  color: #F5A623;
}

.safe-by-design-section h2 {
  color: #ffffff;
}

.safe-by-design-section .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.safe-by-design-section .safe-by-design-list {
  color: rgba(255, 255, 255, 0.75);
}

.safe-by-design-section .safe-by-design-list li::marker {
  color: #F5A623;
}

.safe-by-design-section .compliance-pillar-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.safe-by-design-section .compliance-pillar-card h3 {
  color: #ffffff;
}

.safe-by-design-section .compliance-pillar-card p {
  color: rgba(255, 255, 255, 0.7);
}

.safe-by-design-list {
  list-style: disc;
  padding-left: 1.5rem;
  max-width: 820px;
  color: #555;
  line-height: 1.75;
}

.safe-by-design-list li {
  margin-bottom: 12px;
}

.compliance-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.compliance-pillar-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 24px;
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-card);
}

.compliance-pillar-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.compliance-pillar-card p {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}


@media (max-width: 768px) {
  .compliance-pillars {
    grid-template-columns: 1fr;
  }

  .inquiry-tabs {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .inquiry-tabs {
    grid-template-columns: repeat(5, 1fr);
  }
}

.use-of-funds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.use-of-funds-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 24px 28px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-card);
}

.use-of-funds-card h3 {
  font-size: 1.05rem;
  line-height: 1.45;
  margin: 0;
}

.use-of-funds-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 10px;
}

.compliance-request-cta {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.compliance-request-cta h3 {
  margin-bottom: 16px;
  max-width: 600px;
  width: 100%;
}

.compliance-request-cta-text {
  max-width: 600px;
  width: 100%;
  margin: 0 auto 20px;
  text-align: center;
  color: #4a4440;
  line-height: 1.65;
}

.compliance-request-cta .btn {
  margin-top: 0;
}

@media (max-width: 768px) {
  .use-of-funds-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility */
.text-center { text-align: center; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-32 { margin-top: 32px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
