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

:root {
  --indigo:       #3044FB;
  --indigo-hover: #4F5FF0;
  --indigo-light: #EEF0FF;
  --text:         #1D1D1F;
  --text-muted:   #48484F;
  --bg:           #FFFFFF;
  --off-white:    #F5F5F7;
  --border:       #C2C2C2;
  --border-light: #E5E5E7;
  --green:        #059669;
  --max:          990px;
  --max-wide:     1100px;
  --sidebar-w:    360px;
  --nav-h:        64px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: underline; }
a.btn { text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: inline-block; vertical-align: middle; }

.container        { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.container-wide   { max-width: var(--max-wide); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--indigo);
  color: #fff;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  text-align: center;
}
.btn:hover { background: var(--indigo-hover); }
.btn-lg { font-size: 1rem; padding: 1rem 2.25rem; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { background: var(--off-white); border-color: var(--text); }
.btn-block { width: 100%; }

/* ── NAV ── */
.site-nav {
  background: #fff;
  height: var(--nav-h);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
}
.site-nav .container-wide {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
  text-decoration: none;
}
.nav-link:hover { color: var(--text); }
.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: var(--indigo);
  color: #fff;
  transition: background 0.15s;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--indigo-hover); }

/* ── BURGER MENU ── */
.nav-hamburger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: var(--off-white); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 0.5rem 1.5rem 1.5rem;
  z-index: 99;
}
.nav-mobile-menu.open { display: flex; }

.nav-mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.15s;
  display: block;
}
.nav-mobile-link:hover { color: var(--indigo); }

@media (max-width: 800px) {
  .nav-hamburger { display: flex; }
}

/* ── PAGE LAYOUT ── */
.page-layout {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 3rem;
  align-items: start;
}

/* ── SIDEBAR & BUY PANEL ── */
.sidebar { padding-top: 3.5rem; align-self: stretch; }

.buy-panel {
  position: sticky;
  top: calc(var(--nav-h) + 1.25rem);
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.09);
}
.buy-panel-cover {
  width: 100%;
  height: 196px;
  overflow: hidden;
  background: var(--off-white);
  position: relative;
  border-radius: 15px 15px 0 0;
}
.buy-panel-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* slider */
.slider { position: relative; width: 100%; height: 100%; }
.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}
.slider-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.slider-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot.active {
  background: var(--indigo);
  transform: scale(1.2);
}
.buy-panel-body {
  padding: 1.375rem 1.375rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.buy-panel-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.buy-panel-subtitle {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.buy-panel-price {
  padding: 0.875rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.price-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.price-amount {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.price-per { font-size: 0.875rem; color: var(--text-muted); }

/* Cohort selector */
.cohort-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.cohort-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  margin-bottom: 0.5rem;
}
.cohort-option:has(input:checked) {
  border-color: var(--indigo);
  background: var(--indigo-light);
}
.cohort-option input[type="radio"] {
  accent-color: var(--indigo);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.cohort-option-name {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.cohort-option-dates {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Calendar icon & hover popup */
.cal-trigger {
  position: relative;
  margin-left: auto;
  flex-shrink: 0;
  color: var(--text-muted);
  padding: 4px 5px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  line-height: 0;
  cursor: default;
}
.cal-trigger:hover {
  color: var(--indigo);
  background: var(--indigo-light);
}
.cal-popup {
  display: none;
  position: fixed;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  padding: 0.875rem;
  z-index: 9999;
  width: 210px;
  pointer-events: none;
}
.cal-month-header {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.cal-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.cal-table th {
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  padding-bottom: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cal-table td {
  font-size: 0.6875rem;
  text-align: center;
  padding: 2px 0;
  color: var(--text);
}
.cal-day-marked {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--indigo);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.6875rem;
}

.buy-panel-scarcity {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}
.buy-panel-scarcity strong { color: var(--text); }

.buy-panel-includes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.875rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.include-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1.375rem;
  position: relative;
  line-height: 1.5;
}
.include-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.buy-panel-ctas { display: flex; flex-direction: column; gap: 0.625rem; }

/* ── COHORT SEATS REMAINING ── */
.cohort-seats { margin-top: 0.25rem; min-height: 0; }
.seats-chip {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #e6f4ea;
  color: var(--green);
}
.seats-chip.seats-low { background: #fff3cd; color: #92550a; }
.seats-chip.seats-critical { background: #fee2e2; color: #dc2626; }
.seats-chip.seats-sold-out { background: var(--off-white); color: var(--text-muted); }

/* ── BOOKING DEADLINE ── */
.deadline-chip {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #92550a;
  background: #fff3cd;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  text-align: center;
  margin-top: 0.5rem;
}
.deadline-closed {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* ── BUY PANEL GUARANTEE ── */
.buy-panel-guarantee {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 0.25rem;
}
.buy-panel-guarantee span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.buy-panel-guarantee span a { color: var(--text-muted); }

/* ── LOGO STRIP ── */
.logo-strip {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0;
}
.logo-strip-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.logo-strip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.logo-strip-row img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity 0.2s, filter 0.2s;
}
.logo-strip-row img:hover { filter: grayscale(0); opacity: 1; }
.logo-strip:not(:has(img)) { display: none; }

.buy-panel-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ── HERO (left column) ── */
.hero-section { padding: 1.5rem 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 1.25rem;
}
.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
  max-width: 560px;
}
.hero-section h1 em { font-style: normal; color: var(--indigo); }
.hero-tagline {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
  line-height: 1.55;
}

.logistics-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
  white-space: nowrap;
}

.authority-strip {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
}
.authority-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.authority-stats span { font-size: 0.875rem; color: var(--text-muted); }
.authority-stats strong { color: var(--text); }
.authority-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.authority-logos img { height: 26px; width: auto; object-fit: contain; opacity: 0.8; }

/* ── SECTION COMMON ── */
.section {
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
}
#who { border-top: none; padding-top: 0; }
#problem { border-top: none; padding-top: 1.5rem; }
#logos { padding: 1.5rem 0; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 0.625rem;
}
.section-intro {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  max-width: 640px;
  margin-bottom: 0.25rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

/* Full-width sections (outside page-layout) */
.section-full {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-light);
}
.section-full-off {
  background: var(--off-white);
}
.section-full .section-title,
.section-full .section-sub { max-width: 720px; }

/* ── WHO FOR ── */
.who-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.who-col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--text-muted);
}
.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.who-list li {
  font-size: 0.9375rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  line-height: 1.5;
}
.who-list li .mark {
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
  font-size: 0.875rem;
}
.who-col.for .mark { color: var(--green); }
.who-col.not .mark { color: #e53e3e; }

/* ── OUTCOMES ── */
.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.outcome-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--indigo);
  background: var(--indigo-light);
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.outcome-text strong {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 0.125rem;
}
.outcome-text span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── AGENDA GRID ── */
.agenda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.agenda-day-header {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--indigo);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--indigo);
  margin-bottom: 1rem;
}
.agenda-session {
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: 12px;
  margin-bottom: 0.875rem;
}
.agenda-session:last-child { margin-bottom: 0; }
.agenda-session-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.375rem;
}
.agenda-session-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.agenda-session-dur {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.agenda-session-title {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.375rem;
}
.agenda-session-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.625rem;
}
.agenda-deliverable {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green);
}

/* ── DAY LOGISTICS ── */
.logistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.logistics-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--text-muted);
}
.timeline {
  display: flex;
  flex-direction: column;
}
.tl-item {
  display: flex;
  gap: 0.875rem;
  position: relative;
}
.tl-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50px;
  top: 22px;
  bottom: 0;
  width: 1px;
  background: var(--border-light);
}
.tl-time {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  width: 44px;
  flex-shrink: 0;
  text-align: right;
  padding-top: 2px;
}
.tl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--indigo);
  margin-top: 6px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.tl-label {
  padding-bottom: 1.125rem;
}
.tl-label strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.tl-label span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.included-list li {
  font-size: 0.9375rem;
  color: var(--text);
  padding-left: 1.375rem;
  position: relative;
  line-height: 1.5;
}
.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.venue-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  color: var(--indigo);
  font-weight: 500;
  margin-top: 1.25rem;
}
.venue-link:hover { text-decoration: underline; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}
.about-photo {
  border-radius: 12px;
  overflow: hidden;
  background: var(--off-white);
}
.about-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
}
.about-partners {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
.about-partner-logo { width: 156px; height: auto; object-fit: contain; }
.buildup-logo { width: 100px; height: auto; }
.about-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}
.about-role {
  font-size: 0.9rem;
  color: var(--indigo);
  font-weight: 500;
  margin-bottom: 1.25rem;
  letter-spacing: -0.005em;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
  margin-bottom: 1.25rem;
}
.about-stat { padding: 0 0.875rem; }
.about-stat:first-child { padding-left: 0; }
.about-stat:not(:last-child) { border-right: 1px solid var(--border-light); }
.about-stat-num {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.about-stat-lbl { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }
.about-bio { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }
.about-bio p + p { margin-top: 0.75rem; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-list details { border-bottom: 1px solid var(--border-light); }
.faq-list details:first-child { border-top: 1px solid var(--border-light); }
.faq-list details summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  user-select: none;
}
.faq-list details summary::-webkit-details-marker { display: none; }
.faq-chevron { color: var(--text-muted); flex-shrink: 0; transition: transform 0.2s; }
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-body {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}

/* ── PROBLEM BLOCK ── */
.problem-callout {
  background: var(--off-white);
  border-left: 4px solid var(--indigo);
  border-radius: 12px;
  padding: 2rem 2.25rem;
}
.problem-callout .section-title { margin-bottom: 1rem; }
.problem-sub {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  letter-spacing: -0.01em;
}
.problem-sub strong { font-weight: 700; }

/* ── CONTRAST BLOCK ── */
.contrast-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.5rem;
}
.contrast-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.125rem 1.375rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.contrast-item.contrast-bad { background: #fff5f5; border: 1px solid #fed7d7; }
.contrast-item.contrast-good { background: #f0fff4; border: 1px solid #9ae6b4; }
.contrast-mark { font-size: 1rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.contrast-bad .contrast-mark { color: #e53e3e; }
.contrast-good .contrast-mark { color: var(--green); }
.contrast-item strong { font-weight: 700; color: var(--text); }

/* ── WHY PM ── */
.why-pm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.75rem;
}
.why-pm-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.75rem;
}
.why-pm-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-light);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1rem;
}
.why-pm-card-sub {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.why-pm-card-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.why-pm-card-text strong { color: var(--text); font-weight: 600; }

/* ── BUY PANEL ROI ── */
.buy-panel-roi {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  font-style: italic;
}

/* ── CLOSING CTA ── */
.closing-cta {
  text-align: center;
  padding: 4.5rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
}
.closing-cta h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.875rem;
}
.closing-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 1.5rem;
}
.closing-cta-note {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── FOOTER ── */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border-light);
  padding: 1.75rem 0;
}
.site-footer .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-logo img { height: 22px; width: auto; opacity: 0.8; }
.footer-copy { font-size: 0.8125rem; color: var(--text-muted); }
.footer-copy a { color: var(--indigo); }

/* ── MOBILE STICKY ── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid var(--border-light);
  padding: 0.75rem 1.25rem;
}
.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  max-width: var(--max-wide);
  margin: 0 auto;
}
.mobile-sticky-price {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.mobile-sticky-price span { font-size: 0.75rem; font-weight: 400; color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  :root { --sidebar-w: 320px; }
}

@media (max-width: 800px) {
  .page-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    padding-top: 0;
  }
  .buy-panel {
    position: static;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  }
  .who-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-pm-grid { grid-template-columns: 1fr; }
  .agenda-grid { grid-template-columns: 1fr; }
  .logistics-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .mobile-sticky { display: block; }
  body { padding-bottom: 76px; }
  .hero-section { padding: 2.5rem 0 1.75rem; }
  .section { padding: 2.25rem 0; }

  /* Instructor logos: side by side, smaller */
  .about-partners {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .buildup-logo { width: 70px; }

  /* Footer: logo centred */
  .site-footer .container-wide {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stat:nth-child(2) { border-right: none; }
  .about-stat:nth-child(3) {
    grid-column: span 2;
    border-top: 1px solid var(--border-light);
    margin-top: 0.875rem;
    padding-top: 0.875rem;
    padding-left: 0;
  }
}
