/* =========================================================
   ApplyForYou - Design System
   Plain CSS, no dependencies. Edit variables below to re-skin.
   ========================================================= */

:root {
  /* Colors — minimal SaaS (Stripe/Notion vibe): soft gray bg, white cards,
     near-black headings, muted body, single strong blue accent */
  --color-primary: #2563EB;
  --color-primary-hover: #1D4ED8;
  --color-accent: #2563EB;            /* accent mirrors primary (no extra color) */
  --color-accent-hover: #1D4ED8;
  --color-success: #2563EB;           /* use blue for checks (monochrome accent) */
  --color-bg: #F7F7F7;
  --color-surface: #FFFFFF;
  --color-text: #111111;
  --color-text-muted: #6B7280;
  --color-border: #E5E7EB;
  --color-border-strong: #D1D5DB;

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.05), 0 10px 15px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 10px 20px rgba(15, 23, 42, 0.08), 0 20px 40px rgba(15, 23, 42, 0.10);

  /* Layout */
  --max-width: 1160px;
  --section-padding-y: 96px;
  --section-padding-y-mobile: 56px;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--color-text);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 var(--space-4);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 var(--space-4); color: var(--color-text-muted); }

ul { padding-left: 1.25rem; }
li { margin-bottom: var(--space-2); color: var(--color-text-muted); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section { padding: var(--section-padding-y) 0; }
@media (max-width: 720px) { .section { padding: var(--section-padding-y-mobile) 0; } }

.section--alt { background: var(--color-surface); }

.section__header {
  max-width: 720px;
  margin: 0 auto var(--space-12);
  text-align: center;
}
.section__eyebrow {
  display: inline-block;
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.section__header p { font-size: 1.05rem; }

.grid {
  display: grid;
  gap: var(--space-6);
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 22px;
  min-height: 48px;
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.05s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.btn--primary:hover { background: var(--color-primary-hover); color: #fff; text-decoration: none; }

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border-strong);
}
.btn--ghost:hover {
  border-color: var(--color-primary);
  text-decoration: none;
}

.btn--lg { padding: 16px 26px; font-size: 1.05rem; min-height: 54px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 247, 247, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  font-weight: var(--font-weight-semibold);
  color: #111111;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav__brand:hover { text-decoration: none; color: #111111; }
.nav__brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.nav__brand > span {
  color: #111111;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}
.nav__links a:hover { color: var(--color-text); text-decoration: none; }

/* Nav CTA: .nav__links a rules above override .btn--primary — reset to match other primary buttons */
.nav__links a.btn--primary {
  background: var(--color-primary);
  color: #fff;
  font-weight: var(--font-weight-semibold);
}
.nav__links a.btn--primary:hover {
  background: var(--color-primary-hover);
  color: #fff;
  text-decoration: none;
}

.nav__cta { margin-left: var(--space-6); }

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-text);
  position: relative;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--color-text);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }

@media (max-width: 820px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    gap: 0;
    padding: var(--space-4) var(--space-6);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { width: 100%; padding: var(--space-3) 0; border-bottom: 1px solid var(--color-border); }
  .nav__links li:last-child { border-bottom: none; }
  .nav__cta { margin-left: 0; width: 100%; }
  .nav__cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  padding: var(--space-20) 0 var(--space-24);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero { padding: var(--space-12) 0 var(--space-16); }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-5);
}
.hero__title {
  font-size: clamp(2.25rem, 5.2vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: var(--space-5);
}
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 560px;
}
.hero__cta-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}
.hero__note {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.hero__note strong { color: var(--color-text); font-weight: var(--font-weight-semibold); }

/* Hero — weekly progress card (symmetric padding, even vertical rhythm) */
.hero__progress-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-6);
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-xl);
  padding-block: var(--space-8);
  padding-inline: var(--space-8);
  box-shadow: var(--shadow-md);
  font-family: inherit;
  /* Shared label typography (eyebrow + rows): one system */
  --progress-label-tracking: 0.01em;
  --progress-label-leading: 1.45;
  --progress-eyebrow-size: 14px;
  --progress-row-size: 13px;
}
/* Eyebrow — same tracking / weight / rhythm as rows, larger + lighter */
.hero__progress-card__label {
  margin: 0;
  font-size: var(--progress-eyebrow-size);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--progress-label-tracking);
  line-height: var(--progress-label-leading);
  color: #6B7280;
}
.hero__progress-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.hero__progress-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.hero__progress-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3) var(--space-4);
  align-items: start;
}
.hero__progress-name,
.hero__progress-pct {
  font-family: inherit;
  font-size: var(--progress-row-size);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--progress-label-tracking);
  line-height: var(--progress-label-leading);
}
.hero__progress-name {
  color: #374151;
}
.hero__progress-pct {
  justify-self: end;
  color: #4B5563;
  font-variant-numeric: tabular-nums;
}
.hero__progress-track {
  height: 6px;
  background: #E5E7EB;
  border-radius: 999px;
  overflow: hidden;
}
.hero__progress-fill {
  height: 100%;
  min-width: 0;
  background: #2563EB;
  border-radius: 999px;
}
@media (max-width: 960px) {
  .hero__progress-card { max-width: 100%; }
}

/* ---------- Intake embed (Jotform) ---------- */
.section--intake {
  padding-top: var(--space-12);
  padding-bottom: var(--space-16);
  scroll-margin-top: 88px;
}
.intake-embed {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  min-height: 320px;
}
.intake-embed iframe {
  max-width: 100% !important;
}

/* ---------- Social proof strip ---------- */
.proof {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-8) 0;
}
.proof__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-6);
}
.proof__label {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
}
.proof__stats {
  display: flex;
  gap: var(--space-10);
  flex-wrap: wrap;
}
.proof__stat {
  display: flex;
  flex-direction: column;
}
.proof__stat-number {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  line-height: 1;
}
.proof__stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: #fff;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-4);
}
.card h3 { margin-bottom: var(--space-2); }
.card p { margin-bottom: 0; }

/* ---------- Included list ---------- */
.included {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 720px) { .included { grid-template-columns: 1fr; } }
.included__item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.included__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-pill);
  background: rgba(37, 99, 235, 0.10);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  margin-top: 2px;
}
.included__item strong { color: var(--color-text); }

/* ---------- Pricing cards ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

/* Column wrapper (badge spacer + card) */
.pricing-col {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.pricing-col__badge {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* "Most Popular" floating badge */
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: var(--font-weight-semibold);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  line-height: 1;
}

/* Card */
.pricing-card {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 36px 28px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.pricing-card--featured {
  background: #EFF6FF;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}
.pricing-card--featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.18);
}

/* Blue pill at top of card */
.pricing-card__pill {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: var(--font-weight-semibold);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Plan name */
.pricing-card__title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Price */
.pricing-card__price {
  margin: 0;
  font-size: 3.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  line-height: 1;
  letter-spacing: -0.04em;
}
.pricing-card__cad {
  font-size: 0.38em;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
  vertical-align: 0.6em;
  margin-left: 2px;
}

/* "One-time setup" */
.pricing-card__setup {
  margin: 6px 0 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Divider */
.pricing-card__hr {
  width: 100%;
  border: none;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 20px 0;
}

/* Billing text block */
.pricing-card__billing {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.pricing-card__billing p {
  margin: 0 0 4px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}
.pricing-card__billing p:last-child { margin-bottom: 0; }
.pricing-card__billing strong { color: var(--color-text); }
.pricing-card__includes {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* Feature list */
.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
  flex: 1 1 auto;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}
.pricing-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  line-height: 1.45;
  max-width: 100%;
}
.pricing-card__list li:last-child { margin-bottom: 0; }
.pricing-card__list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5l3 3 6-6' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

/* CTA wrapper — pushes button to bottom */
.pricing-card__cta {
  width: 100%;
  margin-top: auto;
  padding-top: 28px;
}
.btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
  border-radius: 12px;
}

/* ---- Trust strip ---- */
.trust-strip {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr 1fr;
  column-gap: 0;
  row-gap: var(--space-4);
  align-items: center;
  padding: 18px 28px;
  background: #F9FAFB;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
}
.trust-strip > * {
  position: relative;
  min-height: 0;
}
/* Short vertical rules between columns (desktop) */
.trust-strip > *:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 46%;
  min-height: 34px;
  max-height: 52px;
  background: rgba(0, 0, 0, 0.09);
  pointer-events: none;
}
.trust-strip > *:not(:last-child) {
  padding-right: 20px;
}
.trust-strip > *:not(:first-child) {
  padding-left: 20px;
}
@media (max-width: 960px) {
  .trust-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
    padding: 20px 22px;
  }
  .trust-strip > *:not(:last-child)::after {
    display: none;
  }
  .trust-strip > *:not(:last-child) {
    padding-right: 0;
    margin-right: 0;
  }
  .trust-strip > *:not(:first-child) {
    padding-left: 0;
  }
}
@media (max-width: 540px) {
  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}
.trust-strip__lead {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-strip__shield {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 50%;
}
.trust-strip__lead p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}
.trust-strip__lead a {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-strip__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 50%;
}
.trust-strip__item > div:last-child {
  flex: 1;
  min-width: 0;
}
.trust-strip__item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 3px;
}
.trust-strip__item p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ---------- Audience cards ---------- */
.audience-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.audience-card h3 { color: var(--color-primary); }

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-10);
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .about { grid-template-columns: 1fr; text-align: center; }
  .about__photo { margin: 0 auto; }
}
.about__photo {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #DBEAFE 0%, #F7F7F7 100%);
  border: 4px solid var(--color-surface);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  overflow: hidden;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about p { font-size: 1.05rem; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
}
.faq__summary {
  list-style: none;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 48px;
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__summary::after {
  content: "+";
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq__item[open] .faq__summary::after { content: "−"; }
.faq__body {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--color-text-muted);
}
.faq__body p:last-child { margin-bottom: 0; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-16) var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto var(--space-8); }
.final-cta__buttons {
  display: inline-flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}
.final-cta .btn--primary {
  background: #fff;
  color: var(--color-primary);
}
.final-cta .btn--primary:hover { background: #F7F7F7; color: var(--color-primary-hover); }
.final-cta .btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.final-cta .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); color: #fff; }

/* ---------- Footer ---------- */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-10) 0 var(--space-8);
  margin-top: var(--space-16);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: space-between;
  align-items: flex-start;
}
.footer__brand { font-weight: var(--font-weight-bold); color: var(--color-text); }
.footer__meta { color: var(--color-text-muted); font-size: 0.9rem; max-width: 420px; }
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer__links a { color: var(--color-text-muted); }
.footer__bottom {
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ---------- Privacy / long-form page ---------- */
.longform {
  max-width: 760px;
  margin: 0 auto;
}
.longform h1 { margin-bottom: var(--space-8); }
.longform h2 { margin-top: var(--space-10); font-size: 1.4rem; }
.longform p, .longform li { font-size: 1rem; }
.longform a { text-decoration: underline; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
