/* ============================================================
 * Shared section-level primitives. Per-section styles below.
 * ============================================================ */

.grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.stack > * + * {
  margin-top: var(--space-4);
}
.stack-lg > * + * {
  margin-top: var(--space-6);
}

/* Lead paragraph below H2 */
.lead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 80ch;
}

/* Check / cross markers for comparison */
.mark-yes { color: var(--success); font-weight: 600; }
.mark-no  { color: #6B7280; }

/* Icon tile */
.icon-tile {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-primary);
}
.icon-tile svg { width: 22px; height: 22px; stroke-width: 1.75; }

.icon-tile--warm {
  background: var(--accent-warm-soft);
  color: #7C3AED;
}

/* =========================================================
   Site header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 242, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.site-header[data-scrolled="true"] {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 1px 0 rgba(26, 26, 46, 0.03),
              0 8px 24px rgba(26, 26, 46, 0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.site-header__logo {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
}

.site-header__logo strong {
  font-weight: 700;
  color: var(--accent-primary);
}

.site-header__logo:hover,
.site-header__logo:focus-visible {
  color: var(--accent-primary);
}

.site-nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: var(--space-2) 0;
  transition: color var(--dur-fast) var(--ease);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--accent-primary);
}

.site-header__cta {
  padding: 10px 18px;
  font-size: 0.9375rem;
}

/* Burger */
.site-header__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}

.site-header__burger:hover,
.site-header__burger:focus-visible {
  border-color: var(--accent-primary);
  background: var(--accent-soft);
}

.site-header__burger-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease),
              opacity var(--dur) var(--ease);
}

.site-header__burger[aria-expanded="true"] .site-header__burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__burger[aria-expanded="true"] .site-header__burger-bar:nth-child(2) {
  opacity: 0;
}
.site-header__burger[aria-expanded="true"] .site-header__burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 16px 32px rgba(26, 26, 46, 0.08);
  padding: var(--space-4) var(--gutter) var(--space-6);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--dur) var(--ease),
              opacity var(--dur) var(--ease),
              visibility 0s linear var(--dur);
}

.mobile-nav[data-open="true"] {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform var(--dur) var(--ease),
              opacity var(--dur) var(--ease),
              visibility 0s linear 0s;
}

.mobile-nav__list {
  list-style: none;
  margin: 0 0 var(--space-4);
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav__link {
  display: block;
  padding: var(--space-4) 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--dur-fast) var(--ease);
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
  color: var(--accent-primary);
}

.mobile-nav__cta {
  margin-top: var(--space-2);
}

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .site-header__burger { display: none; }
  .mobile-nav { display: none; }
}

/* =========================================================
   Hero — ThriveHigh-style full-bleed photo + left text overlay
   ========================================================= */
.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-warm);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

/* Ivory gradient mask — fades from opaque on the left to transparent
 * ~60% across so left-side text sits on a readable surface. Mirrors
 * ThriveHigh's approach. */
.hero__mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    var(--bg-warm) 0%,
    var(--bg-warm) 25%,
    rgba(251, 247, 242, 0.85) 45%,
    rgba(251, 247, 242, 0.35) 65%,
    rgba(251, 247, 242, 0) 85%
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding-block: var(--space-12);
}

.hero__content {
  max-width: 560px;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin: 0 0 var(--space-5);
}
.hero__title-accent {
  color: var(--accent-primary);
  font-weight: 700;
}

.hero__tagline {
  font-size: clamp(1.125rem, 0.6vw + 1rem, 1.375rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0 0 var(--space-4);
  letter-spacing: -0.01em;
}

.hero__subhead {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 var(--space-6);
  max-width: 52ch;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.hero__subhead-line {
  display: block;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.hero__ctas .btn {
  padding: 10px 20px;
  font-size: 0.9375rem;
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
  }
  .hero__bg img {
    object-position: center top;
  }
  .hero__mask {
    background: linear-gradient(
      to bottom,
      rgba(251, 247, 242, 0) 0%,
      rgba(251, 247, 242, 0.3) 45%,
      var(--bg-warm) 70%,
      var(--bg-warm) 100%
    );
  }
  .hero__inner {
    min-height: 680px;
    align-items: flex-end;
    padding-bottom: var(--space-10);
    padding-top: var(--space-16);
  }
  .hero__content {
    max-width: 100%;
    text-align: left;
  }
}

/* ============================================================
 * §1.5 The Reality — problem-agitation
 * ============================================================ */
.reality-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 720px) {
  .reality-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .reality-grid { grid-template-columns: repeat(4, 1fr); }
}

.reality-tile {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
}

.reality-tile__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.reality-tile p {
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--fs-body-sm);
  line-height: 1.55;
}

.reality-footnote {
  margin-top: var(--space-10);
  text-align: center;
  color: var(--text-primary);
  font-size: 1.0625rem;
  max-width: 80ch;
  margin-inline: auto;
  line-height: 1.6;
}
.reality-footnote strong {
  color: var(--accent-primary);
  font-weight: 700;
}
.reality-footnote__highlight {
  display: inline-block;
  margin-top: var(--space-3);
  padding: 8px 18px;
  background: var(--accent-warm-soft);
  color: #6B21A8;
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: -0.005em;
}

/* ============================================================
 * §2 Journey — icon-led cards (confident, calm)
 * ============================================================ */
.journey-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 720px) {
  .journey-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .journey-list { grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
}

.journey-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
}

.journey-card__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-primary);
}
.journey-card__icon svg { width: 22px; height: 22px; }

.journey-card:nth-child(4) .journey-card__icon {
  background: var(--accent-warm-soft);
  color: #7C3AED;
}

.journey-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.journey-card p {
  color: var(--text-secondary);
  margin: 0;
  font-size: var(--fs-body-sm);
  line-height: 1.55;
}

.journey-cta {
  margin-top: var(--space-8);
  text-align: center;
}

.journey-afterword {
  margin-top: var(--space-10);
  text-align: center;
  color: var(--text-muted);
  font-size: var(--fs-body-sm);
  max-width: 92ch;
  margin-inline: auto;
  line-height: 1.6;
}

/* ============================================================
 * Values grid (partnership + runway merged)
 * ============================================================ */
.values-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 720px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
}

.value-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.01em;
}

.value-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--fs-body-sm);
  line-height: 1.55;
}

/* ============================================================
 * §3 Complete package
 * ============================================================ */
.package-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-tile {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.package-tile__title {
  margin: 0;
  font-size: var(--fs-h3);
  color: var(--text-primary);
  line-height: 1.25;
}

.package-tile p {
  margin: 0;
  color: var(--text-secondary);
}

/* ============================================================
 * §3.5 Partnership (owner amendment — co-founder framing
 *      + predictable-budget assurance)
 * ============================================================ */
.partnership__inner {
  display: grid;
  gap: var(--space-12);
}

.partnership__lede h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-4);
}

.partnership__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 720px) {
  .partnership__points {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
  }
}

@media (min-width: 1040px) {
  .partnership__inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.partnership__point {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.partnership__point:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-strong);
}

.partnership__point h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.partnership__point p {
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--fs-body-sm);
  line-height: 1.55;
}

/* ============================================================
 * §4 Founder runway
 * ============================================================ */
.runway-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 720px) {
  .runway-row {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-10);
  }
}

.runway-point {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.runway-point__lead {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.runway-point p {
  margin: 0;
  color: var(--text-secondary);
}

.runway-point p:last-of-type {
  line-height: 1.6;
}

.runway-footnote {
  margin-top: var(--space-12);
  text-align: center;
  color: var(--text-muted);
  max-width: 80ch;
  margin-inline: auto;
}

/* ============================================================
 * §5 Comparison table
 * ============================================================ */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: var(--fs-body-sm);
}

.compare-table thead th {
  text-align: left;
  padding: var(--space-5) var(--space-5);
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-strong);
  vertical-align: bottom;
}

.compare-table tbody th {
  text-align: left;
  padding: var(--space-5);
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
  white-space: nowrap;
}

.compare-table td {
  padding: var(--space-5);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table__sash {
  background: var(--accent-soft);
  color: var(--text-primary);
  border-left: 2px solid var(--accent-primary);
  border-right: 2px solid var(--accent-primary);
}

.compare-table thead th.compare-table__sash {
  background: var(--gradient-accent);
  color: var(--text-on-accent);
  border-top: 2px solid var(--accent-primary);
}

.compare-table tbody tr:last-child td.compare-table__sash {
  border-bottom: 2px solid var(--accent-primary);
}

.compare-table tbody td.compare-table__sash strong {
  color: var(--accent-deep);
}

.compare-footnote {
  margin-top: var(--space-10);
  text-align: center;
  color: var(--text-muted);
  max-width: 90ch;
  margin-inline: auto;
}

@media (max-width: 719px) {
  .compare-table {
    font-size: 0.875rem;
  }
  .compare-table thead th,
  .compare-table tbody th,
  .compare-table td {
    padding: var(--space-4);
  }
}

/* ============================================================
 * §6 45-day plan (timeline)
 * ============================================================ */
.plan-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-6);
  position: relative;
}

.plan-step {
  position: relative;
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  align-items: flex-start;
}

.plan-step__num {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-warm);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25);
}

.plan-step__body {
  flex: 1 1 auto;
  min-width: 0;
}

.plan-step__when {
  margin: 0 0 var(--space-2);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}

.plan-step__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-secondary);
  display: flex;
  flex-wrap: wrap;
  gap: 6px var(--space-3);
  font-size: var(--fs-body-sm);
}

.plan-step__bullets li {
  display: inline-flex;
  align-items: center;
}

.plan-step__bullets li + li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-strong);
  margin-right: var(--space-3);
  margin-left: calc(-1 * var(--space-3));
}

@media (min-width: 960px) {
  .plan-timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-4);
    padding-top: var(--space-8);
  }
  .plan-timeline::before {
    content: "";
    position: absolute;
    top: calc(var(--space-8) + 22px);
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-warm-soft) 0%, var(--accent-soft) 100%);
    border-radius: 2px;
    z-index: 0;
  }
  .plan-step {
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg-card);
    padding: var(--space-5) var(--space-4);
    z-index: 1;
  }
  .plan-step__num {
    margin-bottom: var(--space-3);
  }
  .plan-step__bullets {
    flex-direction: column;
    gap: var(--space-2);
  }
  .plan-step__bullets li + li::before {
    display: none;
  }
  .plan-step__bullets li::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-warm);
    margin-right: var(--space-2);
  }
}

@media (max-width: 959px) {
  .plan-timeline::before {
    content: "";
    position: absolute;
    top: var(--space-5);
    bottom: var(--space-5);
    left: calc(var(--space-5) + 22px);
    width: 2px;
    background: var(--accent-warm-soft);
    border-radius: 2px;
    z-index: 0;
  }
  .plan-step {
    z-index: 1;
  }
}

/* ============================================================
 * §7 Team
 * ============================================================ */
.team-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  text-align: left;
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.75rem;
  letter-spacing: 0.02em;
}

.team-card__name {
  margin: var(--space-2) 0 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.team-card__role {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--fs-body-sm);
}

.team-card__quote {
  margin: var(--space-2) 0 0;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.55;
}

.team-card__linkedin {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-muted);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  padding-top: var(--space-3);
  transition: color var(--dur-fast) var(--ease);
}
.team-card__linkedin:hover,
.team-card__linkedin:focus-visible {
  color: var(--accent-primary);
}
.team-card__linkedin .icon {
  width: 18px;
  height: 18px;
}

/* ============================================================
 * §9 Pricing
 * ============================================================ */
.pricing-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pricing-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.pricing-card__price {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--accent-primary);
}

.pricing-card__desc {
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  flex: 1 1 auto;
  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: normal;
  word-break: keep-all;
}

.pricing-card__bullets {
  list-style: none;
  padding: 0;
  margin: var(--space-2) 0 var(--space-2);
  display: grid;
  gap: 6px;
  flex: 1 1 auto;
}
.pricing-card__bullets li {
  position: relative;
  padding-left: 22px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.45;
}
.pricing-card__bullets li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.5em;
  width: 14px;
  height: 10px;
  border-left: 2px solid var(--accent-primary);
  border-bottom: 2px solid var(--accent-primary);
  transform: rotate(-45deg) translateY(-3px);
}

.pricing-card .btn {
  margin-top: var(--space-3);
}

.pricing-footnote {
  margin-top: var(--space-8);
  text-align: center;
  color: var(--text-secondary);
  font-size: var(--fs-body-sm);
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
 * Narrow container variant (used by FAQ + centered copy)
 * ============================================================ */
.container--narrow {
  max-width: var(--content-narrow);
}

/* ============================================================
 * §10 FAQ
 * ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-2) 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.faq-item__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-2);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.0625rem;
  letter-spacing: -0.005em;
  transition: color var(--dur-fast) var(--ease);
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q:hover {
  color: var(--accent-primary);
}

.faq-item__chevron {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--accent-primary);
  transition: transform var(--dur) var(--ease);
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(90deg);
}

.faq-item__a {
  padding: 0 var(--space-2) var(--space-5) calc(var(--space-3) + 18px + var(--space-2));
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-item__a p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__chevron {
    transition: none;
  }
}

/* ============================================================
 * §10.5 Additional services — "Also available"
 * ============================================================ */
.extras-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}

.extras-tile {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.extras-tile__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.extras-tile p {
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--fs-body-sm);
  line-height: 1.55;
}

.extras-footnote {
  margin-top: var(--space-8);
  text-align: center;
  color: var(--text-muted);
  max-width: 90ch;
  margin-inline: auto;
  font-size: var(--fs-body-sm);
}

/* ============================================================
 * §11 Final CTA
 * ============================================================ */
.final-cta {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.final-cta__header {
  margin-bottom: var(--space-8);
}

.final-cta__header h2 {
  margin-bottom: var(--space-4);
}

.final-cta__header .lead {
  margin-left: auto;
  margin-right: auto;
}

.final-cta__channels {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

@media (min-width: 720px) {
  .final-cta__channels {
    grid-template-columns: 1fr 1fr;
  }
}

.final-cta__channels .btn {
  width: 100%;
}

.final-cta__divider {
  position: relative;
  text-align: center;
  margin: var(--space-6) 0 var(--space-8);
  color: var(--text-muted);
  font-size: var(--fs-body-sm);
}

.final-cta__divider::before,
.final-cta__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 180px);
  height: 1px;
  background: var(--border-subtle);
}

.final-cta__divider::before { left: 0; }
.final-cta__divider::after { right: 0; }

.final-cta__divider span {
  display: inline-block;
  padding: 0 var(--space-4);
  background: transparent;
  max-width: 340px;
}

@media (max-width: 560px) {
  .final-cta__divider::before,
  .final-cta__divider::after {
    display: none;
  }
}

.final-cta__form {
  display: grid;
  gap: var(--space-4);
  text-align: left;
  background: var(--bg-card);
  padding: var(--space-6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-weight: 600;
  font-size: var(--fs-body-sm);
  color: var(--text-primary);
}

.form-field input,
.form-field textarea {
  font: inherit;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}

.form-field textarea {
  resize: vertical;
  min-height: 96px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(109, 74, 255, 0.18);
}

.final-cta__microcopy {
  margin: 0;
  text-align: center;
  font-size: var(--fs-body-sm);
  color: var(--text-muted);
}

/* ============================================================
 * Site footer (light, warm, per light-only constraint)
 * ============================================================ */
.site-footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-16) 0 var(--space-8);
  color: var(--text-secondary);
}

.site-footer__grid {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
}

.site-footer__heading {
  margin: 0 0 var(--space-3);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-primary);
}

.site-footer__wordmark {
  margin: 0 0 var(--space-3);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.site-footer__wordmark strong {
  color: var(--accent-primary);
  font-weight: 700;
}

.site-footer__tagline {
  margin: 0;
  color: var(--text-secondary);
  max-width: 36ch;
  line-height: 1.55;
}

.site-footer__bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
}

.site-footer__copy {
  margin: 0;
  font-size: var(--fs-body-sm);
  color: var(--text-muted);
}

.site-footer__sep {
  margin: 0 6px;
  color: var(--text-muted);
}

.site-footer__social {
  display: flex;
  gap: var(--space-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  color: var(--accent-primary);
  background: var(--accent-soft);
}

.site-footer__social svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
 * Sticky CTA bar
 * ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: var(--space-3) var(--gutter);
  pointer-events: none;
  transform: translateY(120%);
  opacity: 0;
  transition: transform var(--dur) var(--ease),
              opacity var(--dur) var(--ease);
}

.sticky-cta[data-visible="true"] {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-3) var(--space-4);
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 -2px 0 rgba(26, 26, 46, 0.02),
              0 12px 32px rgba(26, 26, 46, 0.12);
}

.sticky-cta__copy {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.sticky-cta__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex: 1;
  justify-content: flex-end;
}

.sticky-cta__primary {
  padding: 10px 18px;
  font-size: 0.9375rem;
}

.sticky-cta__secondary {
  padding: 10px 16px;
  font-size: 0.9375rem;
}

@media (max-width: 640px) {
  .sticky-cta {
    padding: var(--space-2);
  }
  .sticky-cta__inner {
    border-radius: var(--radius);
    padding: var(--space-3);
    gap: var(--space-3);
  }
  .sticky-cta__copy {
    display: none;
  }
  .sticky-cta__actions {
    width: 100%;
  }
  .sticky-cta__primary {
    flex: 1;
  }
  .sticky-cta__secondary {
    flex: 0 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta {
    transition: opacity var(--dur) var(--ease);
    transform: none;
  }
  .sticky-cta[data-visible="true"] {
    transform: none;
  }
}
