/* ===================================================
   YOPRENEURS — Design System v2
   =================================================== */

/* --- Tokens --- */
:root {
  --blue:       #2563EB;
  --blue-dark:  #1E40AF;
  --blue-light: #EFF6FF;
  --blue-mid:   #DBEAFE;
  --navy:       #0F172A;
  --yellow:     #F9CE00;
  --yellow-lt:  #FFFDE7;
  --orange:     #F9CE00;
  --ink:        #0F172A;
  --body:       #374151;
  --muted:      #64748B;
  --line:       #E2E8F0;
  --soft:       #F8FAFF;
  --bg:         #EEF2FF;
  --white:      #FFFFFF;
  --green:      #059669;
  --red:        #DC2626;
  --shadow-sm:  0 1px 4px rgba(15,23,42,0.07);
  --shadow:     0 4px 20px rgba(15,23,42,0.08);
  --shadow-lg:  0 20px 60px rgba(15,23,42,0.14);
  --r:          16px;
  --r-sm:       10px;
}

/* --- Base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
p { margin: 0; }
h1, h2, h3 { margin: 0; line-height: 1.1; }
h1 { font-size: clamp(36px, 4.5vw, 60px); font-weight: 800; color: var(--navy); letter-spacing: -1px; }
h2 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
h3 { font-size: clamp(17px, 2vw, 20px); font-weight: 700; color: var(--navy); }

/* --- Accent helpers --- */
.accent { color: var(--blue); }
.underline-yellow {
  position: relative;
  display: inline;
}
.underline-yellow::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 5px;
  background: var(--yellow);
  border-radius: 3px;
  display: block;
}

/* ================================================
   INLINE SVG ICONS
   ================================================ */
svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.stars { display: flex; align-items: center; gap: 2px; color: var(--yellow); }
.stars svg { color: var(--yellow); }
.pill svg, .pill-dot svg { vertical-align: text-bottom; }
.sc-tag svg, .pc-stat svg, .sc-team svg { vertical-align: middle; margin-right: 3px; }
.btn-outline svg, .btn-primary svg { vertical-align: middle; margin-right: 4px; }

/* ================================================
   HEADER / NAV
   ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img { height: 52px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  color: var(--body);
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover { color: var(--blue); background: var(--blue-light); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: none;
  background: var(--soft);
  border-radius: var(--r-sm);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  font-size: 15px;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(249,206,0,0.35);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,206,0,0.48); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-secondary:hover { background: var(--blue-dark); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  border-radius: var(--r-sm);
  box-shadow: 0 2px 8px rgba(249,206,0,0.35);
  transition: transform 0.2s;
  text-decoration: none;
}
.nav-cta:hover { transform: translateY(-1px); }

.nav-outline {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: transparent;
  color: var(--body);
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.nav-outline:hover { border-color: var(--blue); color: var(--blue); }

/* ================================================
   EYEBROW PILL
   ================================================ */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.eyebrow-pill .pill-dot {
  width: 22px; height: 22px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 11px;
  flex-shrink: 0;
}

/* Inline eyebrow label above headings */
.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

/* ================================================
   HERO — HOME
   ================================================ */
.hero-section {
  background: linear-gradient(140deg, #EFF4FF 0%, #F2F6FF 55%, #EBF0FF 100%);
  position: relative;
  overflow: hidden;
  padding: 64px clamp(18px, 5vw, 72px) 80px;
  min-height: calc(88vh - 66px);
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(99,130,230,0.11) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { animation: fadeUp 0.6s ease-out; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content h1 { margin-bottom: 18px; }
.hero-content > p {
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: var(--body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  padding: 12px 4px;
}
.btn-video .play-icon {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  font-size: 13px;
  color: var(--blue);
  flex-shrink: 0;
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.avatar-stack { display: flex; }
.avatar-stack .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  margin-left: -10px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-stack .av:first-child { margin-left: 0; }
.proof-text .stars { color: var(--yellow); font-size: 14px; letter-spacing: 1px; }
.proof-text span { display: block; font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 2px; }

/* Hero visual (right side) */
.hero-visual { position: relative; }
.hero-photo {
  width: 100%;
  height: clamp(380px, 50vh, 520px);
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.stats-float-card {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--white);
  border-radius: var(--r);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  border: 1px solid var(--line);
}
.stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-row:first-child { padding-top: 0; }
.stat-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.stat-text strong { display: block; font-size: 16px; color: var(--navy); font-weight: 800; line-height: 1.2; }
.stat-text span { font-size: 12px; color: var(--muted); }

/* ================================================
   HERO — INNER PAGES
   ================================================ */
.page-hero {
  background: linear-gradient(140deg, #EFF4FF 0%, #F2F6FF 100%);
  position: relative;
  overflow: hidden;
  padding: 64px clamp(18px, 5vw, 72px);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(99,130,230,0.09) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.page-hero-inner.solo { grid-template-columns: 1fr; max-width: 700px; }
.page-hero h1 { margin: 10px 0 18px; }
.page-hero > .page-hero-inner > div > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
}
.page-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* ================================================
   SECTIONS
   ================================================ */
.section { padding: 80px clamp(18px, 5vw, 72px); }
.section.soft { background: var(--soft); }
.section.bg-dot {
  background-color: var(--soft);
  background-image: radial-gradient(circle, rgba(99,130,230,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.section.dark { background: var(--navy); color: var(--white); }
.wrap { max-width: 1240px; margin: 0 auto; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
}
.section-head p, .lead {
  color: var(--muted);
  font-size: 16px;
  margin-top: 10px;
  max-width: 560px;
}

/* ================================================
   GRIDS
   ================================================ */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid.two  { grid-template-columns: repeat(2, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }

/* ================================================
   MISSION SECTION
   ================================================ */
.mission-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mission-photo-wrap { position: relative; }
.mission-photo {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
  border: 1px solid var(--line);
}
.fc-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.fc-ico.yellow { background: var(--yellow-lt); }
.fc-ico.blue   { background: var(--blue-light); }
.fc-ico.green  { background: #DCFCE7; }
.float-card strong { display: block; font-size: 13px; color: var(--navy); font-weight: 700; }
.float-card span   { font-size: 12px; color: var(--muted); }
.float-card-1 { top: 24px;  right: -20px; }
.float-card-2 { bottom: 80px; left: -20px; }
.float-card-3 { bottom: 24px; right: 20px; }
.mission-content h2 { margin: 10px 0 18px; line-height: 1.15; }
.mission-content > p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--body);
}

/* ================================================
   PROGRAM CARDS
   ================================================ */
.program-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card > img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.pc-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.pc-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.pc-icon.yel { background: var(--yellow-lt); }
.pc-icon.grn { background: #DCFCE7; }
.pc-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: var(--blue-light);
  color: var(--blue);
}
.pc-body h3 { font-size: 18px; margin-bottom: 6px; }
.pc-tagline { color: var(--blue); font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.pc-desc { color: var(--muted); font-size: 14px; line-height: 1.65; flex: 1; margin-bottom: 20px; }
.pc-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.pc-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* ================================================
   STARTUP CARDS
   ================================================ */
.startup-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.startup-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.sc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.sc-bookmark {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  transition: color 0.2s;
  line-height: 1;
}
.sc-bookmark:hover { color: var(--blue); }
.startup-card h3 { font-size: 15px; margin-bottom: 4px; line-height: 1.35; }
.startup-card > p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sc-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid;
}
.sc-tag.green  { background: #F0FDF4; color: #15803D; border-color: #BBF7D0; }
.sc-tag.blue   { background: var(--blue-light); color: var(--blue); border-color: #BFDBFE; }
.sc-tag.purple { background: #FAF5FF; color: #7C3AED; border-color: #E9D5FF; }
.sc-tag.orange { background: var(--yellow-lt); color: #78600A; border-color: #FDE68A; }
.sc-tag.yellow { background: var(--yellow-lt); color: #78600A; border-color: #FDE68A; }
.sc-tag.pink   { background: #FDF2F8; color: #BE185D; border-color: #FBCFE8; }
.sc-tag.gray   { background: var(--soft); color: var(--muted); border-color: var(--line); }
.sc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.sc-team { font-size: 12px; color: var(--muted); }
.sc-view {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.sc-view:hover { gap: 8px; }

/* ================================================
   FEATURE CARDS
   ================================================ */
.feature-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.feature-card .fc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.feature-card strong {
  display: inline-block;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2.5px solid var(--yellow);
}
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0; }

/* ================================================
   METRIC CARDS
   ================================================ */
.metric {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.1);
}
.metric strong { display: block; font-size: clamp(34px, 4vw, 50px); color: var(--yellow); font-weight: 800; line-height: 1; }
.metric span   { display: block; color: rgba(255,255,255,0.7); font-size: 15px; margin-top: 8px; }

/* ================================================
   SEARCH / FILTERS
   ================================================ */
.search-bar-wrap {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 4px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.search-bar-wrap .s-icon { color: var(--muted); font-size: 18px; flex-shrink: 0; }
.search-bar-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--body);
  background: transparent;
  padding: 14px 0;
}
.filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.filters select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 11px 36px 11px 14px;
  background: var(--white);
  color: var(--body);
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.filters select:focus { border-color: var(--blue); outline: none; }

/* ================================================
   FORMS
   ================================================ */
.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.form .full { grid-column: 1/-1; }
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
}
.form input:focus,
.form select:focus,
.form textarea:focus { border-color: var(--blue); outline: none; }
.form textarea { min-height: 120px; resize: vertical; }
.form button { justify-self: start; cursor: pointer; }
.notice {
  display: none;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: var(--blue-light);
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 14px;
}
.notice.show { display: block; }

/* ================================================
   TABLE (program comparison)
   ================================================ */
.table-like {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.table-row {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.6fr 1.2fr;
  border-bottom: 1px solid var(--line);
}
.table-row:last-child { border-bottom: none; }
.table-row > div { padding: 16px 20px; font-size: 14px; }
.table-row.head { background: var(--navy); color: var(--white); font-weight: 700; font-size: 13px; }

/* ================================================
   STARTUP DETAIL
   ================================================ */
.startup-detail-cover {
  min-height: 380px;
  background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(37,99,235,0.7) 100%),
              var(--cover) center/cover;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 64px clamp(18px, 5vw, 72px);
}
.startup-detail-cover .wrap { width: 100%; }
.startup-detail-cover h1 { font-size: clamp(38px, 5vw, 64px); color: var(--white); margin: 10px 0; }
.startup-detail-cover p  { color: rgba(255,255,255,0.8); font-size: 18px; }

/* ================================================
   TESTIMONIAL
   ================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.testimonial-card .qt { font-size: 40px; color: var(--blue); line-height: 1; margin-bottom: 10px; }
.testimonial-card .qt-text {
  font-size: 15px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .av-lg {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.author-info strong { display: block; color: var(--blue); font-size: 15px; font-weight: 700; }
.author-info span   { font-size: 13px; color: var(--muted); }
.stars { color: var(--yellow); font-size: 15px; letter-spacing: 1px; }

/* Impact stats card */
.impact-card {
  background: var(--blue-light);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.impact-card h3 { color: var(--navy); margin-bottom: 24px; }
.impact-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.impact-stat { text-align: center; }
.impact-stat strong { display: block; font-size: 30px; color: var(--blue); font-weight: 800; line-height: 1; }
.impact-stat span   { font-size: 12px; color: var(--muted); margin-top: 4px; display: block; }

/* ================================================
   FOOTER
   ================================================ */
/* ── Footer shell ── */
.footer {
  background: #0A0F1E;
  color: #fff;
}

/* ── CTA strip ── */
.footer-cta-strip {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 clamp(18px, 5vw, 72px);
}
.footer-cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}
.footer-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}
.footer-cta-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}
.footer-cta-text p {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.footer-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  background: var(--yellow);
  color: #0F172A;
  font-size: 14px;
  font-weight: 800;
  border-radius: 10px;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.footer-cta-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── Main columns ── */
.footer-main {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 52px clamp(18px, 5vw, 72px) 48px;
}

/* Brand column */
.footer-brand {}
.footer-logo { height: 48px; width: auto; margin-bottom: 16px; }
.footer-tagline {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  margin: 0 0 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.footer-social-btn:hover {
  background: var(--yellow);
  color: #0F172A;
  border-color: var(--yellow);
}

/* Nav columns */
.footer-col {}
.footer-col-head {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }

/* Contact column */
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: rgba(255,255,255,0.6) !important;
  margin-bottom: 12px !important;
  transition: color 0.15s;
}
.footer-contact-link:hover { color: #fff !important; }
.footer-contact-link svg { flex-shrink: 0; opacity: 0.6; }
.footer-location {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}
.footer-location svg { flex-shrink: 0; opacity: 0.4; }

/* ── Bottom bar ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0 clamp(18px, 5vw, 72px);
}
.footer-bottom-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  gap: 16px;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  transition: color 0.15s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom-sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.15);
}

/* ================================================
   QUOTE / PERSON CARDS (about page etc.)
   ================================================ */
.quote-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.quote-card p { font-size: 15px; color: var(--body); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.quote-card strong { color: var(--navy); font-size: 14px; }

.person-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.person-card .person-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.person-card strong { display: block; font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.person-card .role  { display: block; font-size: 13px; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.person-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Program choice card */
.program-choice {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 24px;
  border: 2px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s;
}
.program-choice:hover { border-color: var(--blue); }
.program-choice .pc-name {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.program-choice h3 { font-size: 16px; margin-bottom: 10px; }
.program-choice .pc-meta { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.program-choice .pc-fee  { font-size: 14px; font-weight: 700; color: var(--navy); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hero-inner, .mission-wrap { grid-template-columns: 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .stats-float-card { position: relative; bottom: auto; left: auto; margin-top: 16px; }
  .float-card-1, .float-card-2, .float-card-3 { display: none; }
  .hero-photo { height: 300px; }
  .mission-photo { height: 300px; }
}

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 65px; left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .site-nav.open { display: flex; }
  .grid.four { grid-template-columns: repeat(2, 1fr); }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .filters { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .site-header { padding: 12px 16px; }
  .section { padding: 56px 16px; }
  .hero-section { padding: 48px 16px 64px; min-height: auto; }
  .page-hero { padding: 48px 16px; }
  .grid, .grid.two, .grid.four { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .filters { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 40px 16px 36px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .table-row { grid-template-columns: 1fr; }
  .impact-stats { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* ================================================
   BADGES (shared with admin)
   ================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  background: var(--blue-light);
  color: var(--blue-dark);
  white-space: nowrap;
}
.badge-blue   { background: var(--blue); color: var(--white); }
.badge-green  { background: #d1fae5; color: #065f46; }
.badge-danger { background: #fee2e2; color: #991b1b; }

.btn-sm {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 6px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: var(--blue-light);
  color: var(--blue-dark);
  text-decoration: none;
}
.btn-sm.btn-danger { background: #fee2e2; color: #991b1b; }
.btn-sm.btn-blue   { background: var(--blue); color: var(--white); }
.btn-sm + .btn-sm  { margin-left: 4px; }

/* ================================================
   IGNITE PAGE
   ================================================ */

/* ── Programs dropdown ── */
.nav-has-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  background: none;
  border: none;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active { color: var(--blue); background: var(--blue-light); }
.nav-chevron { transition: transform 0.2s; flex-shrink: 0; }
.nav-chevron.open { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  z-index: 200;
  animation: dropFadeIn 0.15s ease;
}
@keyframes dropFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-dropdown-inner {
  padding: 8px;
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
  position: relative;
}
.nav-dropdown-item:hover { background: var(--soft); }
.nav-dropdown-item-featured { background: #f8fbff; }
.nav-dropdown-item-featured:hover { background: #eff6ff; }
.nav-dropdown-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.nav-dropdown-desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  flex: 1;
  line-height: 1.3;
}
.nav-dropdown-tag {
  font-size: 10px;
  font-weight: 700;
  background: var(--yellow-lt);
  color: #78600A;
  padding: 2px 7px;
  border-radius: 99px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav-dropdown-all {
  display: block;
  text-align: center;
  padding: 9px 12px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  border-radius: 0 0 10px 10px;
  transition: background 0.15s;
}
.nav-dropdown-all:hover { background: var(--blue-light); }

/* Mobile sub-nav (shown inside .site-nav.open) */
.nav-mobile-sub {
  display: none;
}
.nav-mobile-sub-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 10px 16px 10px 24px;
  text-decoration: none;
  border-left: 2px solid var(--line);
  margin: 2px 0 2px 12px;
  border-radius: 0 8px 8px 0;
  transition: background 0.15s, border-color 0.15s;
}
.nav-mobile-sub-item:hover { background: var(--soft); border-color: var(--blue); }
.nav-mobile-sub-item.featured { border-color: #93c5fd; background: #f0f7ff; }
.nav-mobile-sub-item strong { font-size: 13px; font-weight: 700; color: var(--navy); }
.nav-mobile-sub-item span   { font-size: 12px; color: var(--muted); }
.nav-mobile-sub-all {
  display: block;
  padding: 8px 12px 8px 24px;
  margin-left: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}

@media (max-width: 980px) {
  .nav-dropdown { display: none !important; }
  .nav-mobile-sub { display: flex; flex-direction: column; }
  .nav-has-dropdown { display: flex; flex-direction: column; }
  .nav-dropdown-trigger { justify-content: space-between; width: 100%; }
}

/* Nav highlight (legacy, keep for ignite standalone use) */
.nav-ignite {
  font-weight: 700;
  color: var(--blue) !important;
  background: var(--blue-light);
  border-radius: 20px;
  padding: 4px 14px !important;
}

/* ── Hero (text left + photo right, NO form) ── */
.ignite-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  background: #fff;
  overflow: hidden;
}
.ignite-hero-content {
  padding: clamp(56px,8vw,96px) 40px clamp(56px,8vw,96px) clamp(24px,6vw,80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ignite-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.ignite-dash {
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.ignite-h1 {
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 20px;
}
.ignite-blue {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 7px;
  text-decoration-thickness: 4px;
}
.ignite-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 32px;
}
.ignite-mini-features {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.ignite-mini-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.ignite-mini-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.ignite-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ignite-hero-img-wrap {
  position: relative;
  overflow: hidden;
}
.ignite-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ignite-hero-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255,255,255,.95);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}
.ignite-hero-badge strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}
.ignite-hero-badge span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* ── Buttons ── */
.btn-ignite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .1s;
}
.btn-ignite:hover { background: #FBBF24; transform: translateY(-1px); }
.btn-ignite:active { transform: none; }
.btn-ignite-ghost {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--blue);
  text-decoration: none;
  border: 2px solid var(--blue-light);
  border-radius: 8px;
  padding: 11px 24px;
  transition: border-color .2s, background .2s;
}
.btn-ignite-ghost:hover { border-color: var(--blue); background: var(--blue-light); }
.btn-ignite-navy {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  padding: 14px 28px;
  text-decoration: none;
  transition: background .2s;
  margin: 18px 0 10px;
}
.btn-ignite-navy:hover { background: #1e293b; }

/* ── About feature cards ── */
.ignite-feat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 20px 28px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.ignite-feat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.ignite-feat-ico {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.ignite-feat-ico.blue   { background: var(--blue-light); color: var(--blue); }
.ignite-feat-ico.green  { background: #DCFCE7; color: #16A34A; }
.ignite-feat-ico.yellow { background: var(--yellow-lt); color: #D97706; }
.ignite-feat-ico.purple { background: #F3E8FF; color: #7C3AED; }
.ignite-feat-card strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.ignite-feat-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── Cohort + Pricing ── */
.ignite-cohort-section {
  background: var(--blue-light);
  padding: clamp(48px,6vw,72px) clamp(18px,5vw,72px);
}
.ignite-cohort-section h2 { color: var(--navy); }
.ignite-cohort-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}
.ignite-cohorts { display: flex; flex-direction: column; gap: 14px; }
.ignite-cohort-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: var(--r);
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color .2s, box-shadow .2s;
}
.ignite-cohort-card:hover { border-color: rgba(37,99,235,.3); }
.ignite-cohort-card.selected { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.1); }
.ignite-cohort-num { font-size: 40px; font-weight: 800; color: var(--blue); line-height: 1; min-width: 56px; }
.ignite-cohort-card strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.ignite-cohort-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.55; }
.ignite-price-card {
  background: var(--yellow-lt);
  border: 1px solid rgba(249,206,0,.28);
  border-radius: var(--r);
  padding: 28px 24px;
  text-align: center;
}
.ignite-price-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--navy); margin: 0 0 14px; }
.ignite-price-row { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 6px; }
.ignite-price { font-size: 40px; font-weight: 800; color: var(--navy); }
.ignite-price-orig { font-size: 18px; color: var(--muted); text-decoration: line-through; }
.ignite-discount-badge { background: #22C55E; color: #fff; font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.ignite-hurry { font-size: 12px; color: var(--muted); margin: 0; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ── Video section ── */
.ignite-video-wrap { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.ignite-video-thumb { width: 100%; height: 340px; object-fit: cover; display: block; }
.ignite-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: none; background: none; cursor: pointer;
  transition: transform .2s;
}
.ignite-play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.ignite-video-caption {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,.92);
  font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 20px;
  display: flex; align-items: center; gap: 6px;
  color: var(--navy);
}
.ignite-audience-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.ignite-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 20px;
}
.ignite-pill.blue   { background: var(--blue-light); color: var(--blue); }
.ignite-pill.yellow { background: var(--yellow-lt);  color: #78600A; }
.ignite-pill.navy   { background: #F1F5F9;            color: var(--navy); }

/* ── Application form section ── */
.ignite-apply-section {
  background: var(--navy);
  padding: clamp(64px,8vw,96px) clamp(18px,5vw,72px);
}
.ignite-apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}
/* Left info panel */
.ignite-apply-info {}
.ignite-apply-info h2 { font-size: clamp(26px,3.5vw,40px); margin: 12px 0 0; }
.ignite-apply-perks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.ignite-apply-perk {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,.85); font-weight: 500;
}
.ignite-perk-ico { color: #4ADE80; flex-shrink: 0; }
.ignite-apply-price-tag {
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 18px 24px;
}
.ignite-apply-amount { font-size: 36px; font-weight: 800; color: var(--yellow); }
.ignite-apply-strikethrough { font-size: 18px; color: rgba(255,255,255,.4); text-decoration: line-through; }
.ignite-apply-saving {
  font-size: 13px; font-weight: 700;
  background: #22C55E; color: #fff;
  padding: 3px 10px; border-radius: 20px;
}
/* Right form card */
.ignite-apply-form-wrap {}
.ignite-apply-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.ignite-apply-card-head {
  background: var(--blue);
  padding: 22px 28px;
}
.ignite-apply-card-head h3 { color: #fff; font-size: 20px; font-weight: 800; margin: 0 0 4px; }
.ignite-apply-card-head p { color: rgba(255,255,255,.7); font-size: 13px; margin: 0; }
.ignite-apply-form {
  padding: 28px 28px 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ignite-field-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.ignite-field-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.ignite-field-group input,
.ignite-field-group select,
.ignite-field-group textarea {
  width: 100%;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--navy);
  background: #FAFBFF;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  font-family: inherit;
}
.ignite-field-group input:focus,
.ignite-field-group select:focus,
.ignite-field-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
  background: #fff;
}
.ignite-field-group textarea { resize: vertical; min-height: 88px; }
.ignite-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ignite-form-secure {
  padding: 0 28px 20px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
/* QR success card */
.ignite-qr-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.ignite-qr-success-ico { color: #16A34A; margin-bottom: 14px; }
.ignite-qr-card h3 { font-size: 26px; font-weight: 800; color: var(--navy); margin: 0 0 8px; }
.ignite-qr-msg { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.ignite-qr-box {
  background: #f8faff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 20px;
}
.ignite-qr-amount { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.ignite-qr-img {
  width: 200px; height: 200px;
  object-fit: contain;
  display: block; margin: 0 auto 12px;
  border-radius: 8px;
}
.ignite-qr-placeholder {
  width: 200px; height: 200px;
  border: 2px dashed var(--line);
  border-radius: 8px;
  margin: 0 auto 12px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: var(--muted); font-size: 12px;
}
.ignite-qr-bank-label {
  font-size: 13px; font-weight: 600;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin: 0;
}
.ignite-qr-note { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 0; }

/* ── Ignite page footer ── */
.ignite-page-footer {
  background: #0B1120;
  padding: 32px clamp(18px,5vw,72px);
}
.ignite-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.ignite-footer-cta p { color: rgba(255,255,255,.55); font-size: 13px; margin: 0 0 4px; }
.ignite-footer-cta strong { color: var(--yellow); font-size: 20px; font-weight: 800; display: block; }
.ignite-footer-contact a {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.65); font-size: 13px;
  margin-bottom: 8px; text-decoration: none;
  transition: color .2s;
}
.ignite-footer-contact a:hover { color: #fff; }
.ignite-footer-social p { color: rgba(255,255,255,.45); font-size: 12px; margin-bottom: 10px; }
.ignite-social-icons { display: flex; gap: 10px; }
.ignite-social-icons a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
  text-decoration: none;
}
.ignite-social-icons a:hover { background: var(--yellow); color: var(--navy); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ignite-apply-grid { grid-template-columns: 1fr; gap: 40px; }
  .ignite-apply-info { display: none; }
}
@media (max-width: 900px) {
  .ignite-hero { grid-template-columns: 1fr; }
  .ignite-hero-img-wrap { height: 280px; }
  .ignite-hero-content { padding: 48px 24px 32px; }
  .ignite-cohort-grid { grid-template-columns: 1fr; }
  .ignite-footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .ignite-footer-contact a, .ignite-social-icons { justify-content: center; }
}
@media (max-width: 600px) {
  .ignite-mini-features { flex-direction: column; gap: 12px; }
  .ignite-field-row { grid-template-columns: 1fr; }
  .ignite-apply-form { padding: 20px 16px 4px; }
  .ignite-form-secure { padding: 0 16px 16px; }
  .ignite-qr-card { padding: 28px 20px; }
}

/* ================================================
   ADMIN PANEL (unchanged)
   ================================================ */
#nav-auth { display: contents; }

.admin-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - 66px);
  background: var(--soft);
}
.admin-side {
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 66px;
  height: calc(100vh - 66px);
  overflow-y: auto;
}
.admin-brand { padding: 20px 18px 18px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-brand strong { display: block; font-size: 15px; font-weight: 800; }
.admin-brand span   { font-size: 11px; opacity: 0.55; text-transform: uppercase; letter-spacing: 0.08em; }
.admin-nav { flex: 1; display: flex; flex-direction: column; gap: 2px; padding: 12px 10px; }
.admin-nav-item {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  text-align: left;
  padding: 10px 12px;
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.admin-nav-item:hover  { background: rgba(255,255,255,0.08); color: var(--white); }
.admin-nav-item.active { background: var(--blue); color: var(--white); }
.admin-side-footer { padding: 14px 10px; border-top: 1px solid rgba(255,255,255,0.1); }
.admin-user-email {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  padding: 0 4px 8px;
  word-break: break-all;
}
.admin-logout {
  width: 100%;
  padding: 9px 12px;
  background: rgba(255,255,255,0.07);
  border: none;
  color: rgba(255,255,255,0.65);
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}
.admin-logout:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.admin-body { padding: 28px; overflow: auto; }
.admin-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: var(--muted);
  font-size: 15px;
}
.admin-panel h2 { font-size: 22px; margin-bottom: 20px; }
.admin-hint  { color: var(--muted); font-size: 13px; margin: -10px 0 16px; }
.admin-empty { color: var(--muted); font-style: italic; }
.muted       { color: var(--muted); }
.admin-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.admin-panel-head h2 { margin: 0; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.admin-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
}
.admin-stat strong { display: block; font-size: 28px; color: var(--blue); line-height: 1; }
.admin-stat span   { display: block; font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 4px; }
.admin-recent    { margin-top: 24px; }
.admin-recent h3 { font-size: 16px; margin-bottom: 12px; }
.admin-recent-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.admin-date       { color: var(--muted); font-size: 12px; margin-left: auto; }
.admin-empty-cell { text-align: center; color: var(--muted); padding: 32px !important; }
.admin-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 700px;
}
.admin-table th {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
}
.admin-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.5;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fafcff; }
.admin-table a      { color: var(--blue); }
.admin-table small  { color: var(--muted); }
.admin-center { text-align: center; vertical-align: middle; }
.admin-table select {
  font: inherit;
  font-size: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 8px;
  background: var(--white);
}
.msg-cell {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px;
    gap: 6px;
  }
  .admin-brand { border: none; padding: 4px 8px; }
  .admin-nav   { flex-direction: row; flex-wrap: wrap; padding: 0; gap: 4px; }
  .admin-side-footer { border: none; padding: 4px 8px; display: flex; align-items: center; gap: 8px; }
  .admin-user-email  { padding: 0; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════
   PROGRAM DETAIL PAGE  (pd-*)
═══════════════════════════════════════════════ */

/* Hero — plain white, consistent with all other pages */
.pd-hero {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 56px clamp(18px, 5vw, 64px);
}
.pd-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
}
.pd-hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pd-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.15s;
}
.pd-back-link:hover { color: var(--blue); }
.pd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 16px;
}
.pd-hero-h1 {
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
}
.pd-hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.6;
}
.pd-hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 32px;
}
.pd-hero-stat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 0 20px 0 0;
}
.pd-hero-stat strong { color: var(--navy); }
.pd-hero-stat:first-child { padding-left: 0; }
.pd-hero-stat-sep {
  width: 1px;
  height: 16px;
  background: var(--line);
  margin-right: 20px;
}
.pd-hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pd-hero-ghost {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pd-hero-img-wrap {
  position: relative;
  height: 420px;
  border-radius: var(--r);
  overflow: hidden;
}
.pd-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.18), transparent);
}

/* Proof bar */
.pd-proof-bar {
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0 clamp(18px, 5vw, 64px);
}
.pd-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 48px;
  border-right: 1px solid var(--line);
  gap: 3px;
}
.pd-proof-item:last-child { border-right: none; }
.pd-proof-val {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.pd-proof-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* Overview + enroll card */
.pd-overview-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.pd-overview-desc {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  margin: 20px 0 32px;
}
.pd-audience { margin-top: 8px; }
.pd-audience-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 12px;
}
.pd-audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pd-audience-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
}

/* Enroll card */
.pd-enroll-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  position: sticky;
  top: 88px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.pd-enroll-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  color: #fff;
}
.pd-enroll-card-top strong { font-size: 17px; font-weight: 800; display: block; }
.pd-enroll-card-top p { font-size: 13px; opacity: 0.8; margin: 3px 0 0; }
.pd-enroll-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-enroll-body { padding: 22px 24px 26px; }
.pd-enroll-includes-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin: 0 0 14px;
}
.pd-enroll-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 10px;
}
.pd-enroll-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pd-price-val  { font-size: 28px; font-weight: 900; color: var(--navy); }
.pd-price-orig { font-size: 15px; color: var(--muted); text-decoration: line-through; }
.pd-enroll-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

/* How it works — steps */
.pd-steps {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pd-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0 20px;
}
.pd-step-line-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pd-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.pd-step-connector {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: var(--line);
  margin: 6px 0;
}
.pd-step-body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 36px;
}
.pd-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-step-title {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.pd-step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

/* Outcomes grid */
.pd-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pd-outcome-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pd-outcome-card:hover {
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.pd-outcome-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pd-outcome-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.pd-outcome-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* Testimonial */
.pd-testimonial-section {
  padding: 72px clamp(18px, 5vw, 64px);
}
.pd-testimonial-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.pd-testimonial-quote {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: #fff;
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 32px;
}
.pd-testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.12);
  border-radius: 99px;
  padding: 8px 20px 8px 8px;
}
.pd-testimonial-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.pd-testimonial-author span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

/* CTA banner */
.pd-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 2px solid;
  border-radius: 18px;
  padding: 28px 32px;
  flex-wrap: wrap;
}
.pd-cta-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.pd-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-cta-left h3 { margin: 0 0 4px; font-size: 20px; color: var(--navy); }
.pd-cta-left p  { margin: 0; font-size: 14px; color: var(--muted); }
.pd-cta-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .pd-outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-overview-grid { grid-template-columns: 1fr; }
  .pd-enroll-card   { position: static; }
}
@media (max-width: 768px) {
  .pd-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 0;
  }
  .pd-hero-text { padding-right: 0; padding-bottom: 40px; }
  .pd-hero-img-wrap { height: 280px; border-radius: 0; }
  .pd-proof-bar { justify-content: flex-start; overflow-x: auto; }
  .pd-proof-item { padding: 18px 28px; flex-shrink: 0; }
  .pd-cta-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 580px) {
  .pd-outcomes-grid { grid-template-columns: 1fr; }
  .pd-hero-h1 { font-size: 26px; }
  .pd-cta-right { width: 100%; flex-direction: column; }
  .pd-cta-right a { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════
   PROGRAM CARDS — dynamic from Sanity
═══════════════════════════════════════════════ */

.programs-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.program-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.program-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.program-card-ignite {
  border-color: var(--blue);
  background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
}
.program-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.program-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.program-icon-wrap.yel  { background: #FFFDE7; color: #D4A800; }
.program-icon-wrap.blue { background: #EFF6FF; color: #2563EB; }
.program-icon-wrap.nav  { background: #F1F5F9; color: #0F172A; }
.program-badge-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.program-badge {
  display: inline-block;
  background: var(--soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 99px;
  text-transform: uppercase;
  width: fit-content;
}
.program-badge-featured {
  display: inline-block;
  background: #eff6ff;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 99px;
  text-transform: uppercase;
  width: fit-content;
}
.program-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.3;
}
.program-tagline {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.5;
}
.program-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.program-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
}
.program-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.program-features li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
}
.program-features li svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #16a34a;
}
.program-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.program-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
}
.program-price-orig {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}

/* ═══════════════════════════════════════════════
   IGNITE — REDESIGNED COMPONENTS
═══════════════════════════════════════════════ */

/* Trust bar */
.ignite-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 28px 0 0;
  padding: 14px 20px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}
.ignite-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 24px;
  color: #fff;
}
.ignite-trust-item strong {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}
.ignite-trust-item span {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 2px;
  text-align: center;
}
.ignite-trust-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
}

/* Quote strip */
.ignite-quote-strip {
  margin: 22px 0 0;
  padding: 14px 20px;
  background: rgba(255,255,255,0.10);
  border-left: 3px solid rgba(255,255,255,0.6);
  border-radius: 0 10px 10px 0;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  max-width: 520px;
}
.ignite-quote-strip cite {
  display: block;
  font-style: normal;
  font-size: 12px;
  opacity: 0.65;
  margin-top: 6px;
}

/* Sessions journey grid */
.ignite-sessions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.ignite-session-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 20px 24px;
  position: relative;
  text-align: center;
  transition: box-shadow 0.2s;
}
.ignite-session-card:not(:last-child) {
  margin-right: 0;
}
.ignite-session-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ignite-session-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.ignite-session-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--orange);
}
.ignite-session-arrow {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  z-index: 2;
  background: var(--bg);
  border-radius: 50%;
  padding: 2px;
}

/* Price includes list */
.ignite-price-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.ignite-price-include-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}
.ignite-price-include-row svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--green, #22c55e);
}

/* Inline cohort cards (inside form) */
.ignite-cohort-inline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 8px;
}
.ignite-cohort-inline .cohort-option {
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: var(--white);
}
.ignite-cohort-inline .cohort-option:hover {
  border-color: var(--yellow);
  background: #FFFDE7;
}
.ignite-cohort-inline .cohort-option.selected {
  border-color: var(--yellow);
  background: #FFFBCC;
}
.ignite-cohort-inline .cohort-option-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--heading);
  margin-bottom: 4px;
}
.ignite-cohort-inline .cohort-option-meta {
  font-size: 12px;
  color: var(--muted);
}

/* Seat progress bar */
.seat-bar-wrap {
  margin-top: 6px;
}
.seat-bar-track {
  height: 4px;
  border-radius: 99px;
  background: var(--line);
  overflow: hidden;
  margin-bottom: 4px;
}
.seat-bar-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 0.4s ease;
}
.seat-bar-label {
  font-size: 11px;
  color: var(--muted);
}

/* Payment summary card */
.ignite-payment-summary {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.ignite-payment-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.ignite-payment-summary-row:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 16px;
  padding-top: 10px;
}
.ignite-payment-summary-row span:last-child {
  font-weight: 600;
  color: var(--heading);
}

/* Numbered payment steps */
.ignite-payment-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
}
.ignite-payment-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}
.ignite-step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FAQ accordion */
.ignite-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.ignite-faq-item {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.ignite-faq-item:last-child {
  border-bottom: none;
}
.ignite-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  gap: 12px;
  transition: background 0.15s;
}
.ignite-faq-q:hover {
  background: var(--soft);
}
.ignite-faq-q svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.ignite-faq-q[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.ignite-faq-a {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* Testimonial cards */
.ignite-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ignite-testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}
.ignite-testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
  color: #f59e0b;
}
.ignite-testimonial-quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
}
.ignite-testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ignite-testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ignite-testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--heading);
}
.ignite-testimonial-meta {
  font-size: 11px;
  color: var(--muted);
}

/* Responsive: sessions grid */
@media (max-width: 900px) {
  .ignite-sessions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .ignite-session-arrow { display: none; }
  .ignite-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .ignite-sessions-grid { grid-template-columns: 1fr; gap: 20px; }
  .ignite-trust-bar { gap: 0; }
  .ignite-trust-sep { width: 40px; height: 1px; }
  .ignite-trust-item { padding: 8px 12px; }
  .ignite-testimonials-grid { grid-template-columns: 1fr; }
  .ignite-cohort-inline { grid-template-columns: 1fr; }
}

/* ===================================================
   APPLY MODAL — animations only (styles are inline)
   =================================================== */

@keyframes am-backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes am-slide-up {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
