/* ═══════════════════════════════════════════════════════════════
   School AI Policy — Editorial Design System
   Typography-first. Print-inspired precision. Zero rounded corners.
   ═══════════════════════════════════════════════════════════════ */

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

/* ─── Design Tokens ─── */
:root {
  /* Type */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Fluid type scale */
  --text-xs:   clamp(0.7rem,   0.65rem  + 0.25vw, 0.8125rem);
  --text-sm:   clamp(0.8125rem, 0.75rem + 0.3vw,  0.9375rem);
  --text-base: clamp(0.9375rem, 0.88rem + 0.28vw, 1.0625rem);
  --text-lg:   clamp(1.0625rem, 0.95rem + 0.55vw, 1.375rem);
  --text-xl:   clamp(1.375rem,  1.1rem  + 1.1vw,  2rem);
  --text-2xl:  clamp(1.75rem,   1.2rem  + 2.2vw,  3rem);
  --text-3xl:  clamp(2.25rem,   1.4rem  + 3.4vw,  4rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;   --space-2: 0.5rem;    --space-3: 0.75rem;
  --space-4: 1rem;      --space-5: 1.25rem;   --space-6: 1.5rem;
  --space-8: 2rem;      --space-10: 2.5rem;   --space-12: 3rem;
  --space-16: 4rem;     --space-20: 5rem;     --space-24: 6rem;

  /* Layout */
  --content-narrow: 680px;
  --content-default: 960px;
  --content-wide: 1200px;
  --page-gutter: clamp(1.25rem, 3vw, 3.5rem);

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 200ms;

  /* Light mode (default) */
  --color-bg:           #f8f7f4;
  --color-surface:      #ffffff;
  --color-surface-alt:  #f2f1ed;
  --color-border:       #e0e0e0;
  --color-border-light: #ececec;
  --color-text:         #1a1a2e;
  --color-text-muted:   #5c5c6e;
  --color-text-faint:   #8a8a96;
  --color-primary:      #1b365d;
  --color-primary-hover: #142849;
  --color-primary-light: #e8ecf2;
  --color-accent:       #c4a35a;
  --color-white:        #ffffff;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
}

/* ─── Dark Mode ─── */
[data-theme="dark"] {
  --color-bg:           #13131a;
  --color-surface:      #1a1a24;
  --color-surface-alt:  #22222e;
  --color-border:       #2a2a36;
  --color-border-light: #232330;
  --color-text:         #d4d4dc;
  --color-text-muted:   #9e9eaa;
  --color-text-faint:   #6e6e7a;
  --color-primary:      #7ea3d4;
  --color-primary-hover: #9ab8de;
  --color-primary-light: #1e2a3d;
  --color-accent:       #d4b76a;
  --color-white:        #ffffff;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.4);
}

/* ─── Base ─── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--duration) var(--ease), color var(--duration) var(--ease);
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }

p { color: var(--color-text-muted); }
p + p { margin-top: var(--space-4); }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
a:hover { color: var(--color-primary-hover); }

strong { font-weight: 600; color: var(--color-text); }

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}
.container--narrow { max-width: var(--content-narrow); }
.container--default { max-width: var(--content-default); }

/* ─── Skip Link ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--text-sm);
  z-index: 1000;
  transition: top var(--duration);
}
.skip-link:focus {
  top: var(--space-2);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background-color var(--duration) var(--ease);
}
.header--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: var(--space-8);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-primary);
  text-decoration: none;
  flex-shrink: 0;
}
.header__logo svg {
  width: 28px;
  height: 28px;
}
.header__wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.header__nav { display: flex; align-items: center; }
.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}
.header__nav-list a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--duration) var(--ease);
  white-space: nowrap;
}
.header__nav-list a:hover { color: var(--color-text); }

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color var(--duration), border-color var(--duration);
}
.theme-toggle:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}
.theme-toggle svg { width: 18px; height: 18px; }

/* Mobile nav toggle */
.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn--sm {
  font-size: var(--text-sm);
  padding: 0.5rem 1.25rem;
}
.btn--lg {
  font-size: var(--text-base);
  padding: 0.875rem 2rem;
}

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

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  box-shadow: inset 0 0 0 1px var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn--white:hover {
  background: #f0f0f0;
  color: var(--color-primary);
}

.btn--white-outline {
  background: transparent;
  color: var(--color-white);
  box-shadow: inset 0 0 0 1px var(--color-white);
}
.btn--white-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  padding: var(--space-24) 0 var(--space-20);
  background: var(--color-bg);
}
.hero__inner {
  max-width: var(--content-default);
}

.hero__badge {
  display: inline-flex;
  padding: 0.375rem 1rem;
  border: 1px solid var(--color-accent);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-8);
}

.hero__heading {
  max-width: 900px;
  margin-bottom: var(--space-6);
}

.hero__sub {
  max-width: 720px;
  font-size: var(--text-lg);
  line-height: 1.65;
  margin-bottom: var(--space-8);
}

.hero__cta-group {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.hero__trust-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: 600px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.section {
  padding: var(--space-20) 0;
}
.section__heading {
  margin-bottom: var(--space-6);
  max-width: 800px;
}

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

.section p {
  max-width: 720px;
}

/* Divider between sections */
.section--bordered {
  border-top: 1px solid var(--color-border);
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE CARDS (What's included — numbered)
   ═══════════════════════════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-4);
}

.feature-card {
  border: 1px solid var(--color-border);
  padding: var(--space-8);
  background: var(--color-surface);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.feature-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.feature-card__number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: -0.04em;
  margin-bottom: var(--space-4);
  line-height: 1;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: 0;
  line-height: 1.4;
}

.feature-card p {
  font-size: var(--text-sm);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════ */
.pricing { background: var(--color-surface); }

.pricing__heading {
  text-align: center;
  margin-bottom: var(--space-12);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.pricing-card {
  padding: var(--space-10);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
}

.pricing-card__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--space-4);
}
.pricing-card__price-prefix {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-right: var(--space-1);
}

.pricing-card__desc {
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.pricing-card__divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: var(--space-6);
}

.pricing-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.pricing-card__list li {
  font-size: var(--text-sm);
  color: var(--color-text);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.pricing-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  opacity: 0.4;
}

.pricing-card__cta {
  margin-top: var(--space-8);
}
.pricing-card__cta .btn {
  width: 100%;
}

/* Featured pricing card */
.pricing-card--featured {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.pricing-card--featured .pricing-card__label {
  color: rgba(255,255,255,0.6);
}
.pricing-card--featured .pricing-card__price {
  color: var(--color-white);
}
.pricing-card--featured .pricing-card__desc {
  color: rgba(255,255,255,0.75);
}
.pricing-card--featured .pricing-card__divider {
  background: rgba(255,255,255,0.2);
}
.pricing-card--featured .pricing-card__list li {
  color: var(--color-white);
}
.pricing-card--featured .pricing-card__list li::before {
  border-color: var(--color-white);
  opacity: 0.4;
}
.pricing-card--featured .btn--white:hover {
  background: rgba(255,255,255,0.9);
}

[data-theme="dark"] .pricing-card--featured {
  background: #2a3f5f;
  border-color: #2a3f5f;
}

/* ═══════════════════════════════════════════════════════════════
   DELIVERY CARDS
   ═══════════════════════════════════════════════════════════════ */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-4);
}
.delivery-card {
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}
.delivery-card h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: 0;
  line-height: 1.4;
}
.delivery-card p {
  font-size: var(--text-sm);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   APPROACH (4 columns)
   ═══════════════════════════════════════════════════════════════ */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-10);
  margin-top: var(--space-4);
}
.approach-item h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-2);
  letter-spacing: 0;
  line-height: 1.4;
}
.approach-item p {
  font-size: var(--text-sm);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   CTA BLOCK (How it works / mid-page CTA)
   ═══════════════════════════════════════════════════════════════ */
.cta-block {
  text-align: center;
  max-width: var(--content-narrow);
  margin: 0 auto;
}
.cta-block p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-block__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  transition: color var(--duration);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { display: none; content: ''; }

.faq-item__q::after {
  content: '+';
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text-muted);
  flex-shrink: 0;
  margin-left: var(--space-4);
  transition: transform var(--duration) var(--ease);
}

.faq-item[open] .faq-item__q::after {
  content: '\2212';
}

.faq-item__q:hover { color: var(--color-primary); }

.faq-item__a {
  padding-bottom: var(--space-6);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 680px;
}

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA (navy background)
   ═══════════════════════════════════════════════════════════════ */
.final-cta {
  background: var(--color-primary);
  padding: var(--space-20) 0;
  text-align: center;
}
[data-theme="dark"] .final-cta {
  background: #2a3f5f;
}
.final-cta h2 {
  color: var(--color-white);
  max-width: 700px;
  margin: 0 auto var(--space-4);
}
.final-cta p {
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
  font-size: var(--text-lg);
  line-height: 1.6;
}
.final-cta .cta-block__actions {
  margin-top: var(--space-8);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  padding: var(--space-10) 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.footer__logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-primary);
  text-decoration: none;
}

.footer__links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}
.footer__links a {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  transition: color var(--duration);
}
.footer__links a:hover { color: var(--color-text); }

.footer__divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: var(--space-6);
}

.footer__disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.65;
  max-width: 800px;
  margin-bottom: var(--space-4);
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  opacity: 0.7;
}
.footer__copy a {
  color: var(--color-text-faint);
}
.footer__copy a:hover {
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL / CONTENT PAGES (Privacy, Terms)
   ═══════════════════════════════════════════════════════════════ */
.legal-page {
  padding: var(--space-16) 0 var(--space-20);
}
.legal-page__header {
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
}
.legal-page__meta {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  margin-top: var(--space-3);
}

.legal-page h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}
.legal-page h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
  letter-spacing: 0;
}

.legal-page p {
  margin-bottom: var(--space-4);
}

.legal-page ul, .legal-page ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}
.legal-page li {
  margin-bottom: var(--space-2);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}
.legal-page li strong {
  color: var(--color-text);
}

/* ═══════════════════════════════════════════════════════════════
   CHECKLIST PAGE
   ═══════════════════════════════════════════════════════════════ */
.checklist-page {
  padding: var(--space-16) 0 var(--space-20);
}

.checklist-hero {
  max-width: 640px;
  margin-bottom: var(--space-12);
}
.checklist-hero h1 {
  margin-bottom: var(--space-4);
}
.checklist-hero p {
  font-size: var(--text-lg);
  line-height: 1.6;
}

.checklist-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.checklist-content {
  max-width: 560px;
}
.checklist-content h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}
.checklist-content ul {
  list-style: none;
  margin-top: var(--space-4);
}
.checklist-content li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}
.checklist-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--color-primary);
  opacity: 0.5;
}

.checklist-form-area {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-10);
  position: sticky;
  top: 6rem;
}
.checklist-form-area h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-2);
  letter-spacing: 0;
}
.checklist-form-area > p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.checklist-form-area iframe {
  width: 100%;
  min-height: 400px;
  border: none;
}

/* ─── Form styles (Netlify Forms) ─── */
.form-group {
  margin-bottom: var(--space-5);
}
.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: border-color var(--duration) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
}
.form-input::placeholder {
  color: var(--color-text-faint);
}
.form-submit {
  width: 100%;
  margin-top: var(--space-2);
}
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-4);
  line-height: 1.5;
}
/* Honeypot */
.form-hp { display: none; }

/* ═══════════════════════════════════════════════════════════════
   THANKS PAGE
   ═══════════════════════════════════════════════════════════════ */
.thanks-page {
  padding: var(--space-24) 0 var(--space-20);
  text-align: center;
}
.thanks-page h1 {
  margin-bottom: var(--space-4);
}
.thanks-page p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--text-lg);
  line-height: 1.6;
}
.thanks-page .cta-block__actions {
  margin-top: var(--space-8);
}

/* ═══════════════════════════════════════════════════════════════
   AUDIENCE SECTION (Who it's for)
   ═══════════════════════════════════════════════════════════════ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-4);
}
.audience-item {
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  text-align: center;
}
.audience-item h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
  letter-spacing: 0;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    padding: var(--space-8) var(--page-gutter);
    border-top: 1px solid var(--color-border);
    z-index: 99;
  }
  .header__nav.is-open { display: block; }
  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .header__nav-list li { width: 100%; }
  .header__nav-list a {
    display: block;
    padding: var(--space-4) 0;
    font-size: var(--text-lg);
    border-bottom: 1px solid var(--color-border-light);
  }
  .header__nav-list .btn--sm {
    margin-top: var(--space-4);
    text-align: center;
    padding: var(--space-4);
  }

  .mobile-nav-toggle { display: flex; }

  .hero { padding: var(--space-16) 0 var(--space-12); }
  .hero__heading { font-size: var(--text-2xl); }

  .section { padding: var(--space-12) 0; }

  .feature-grid,
  .pricing-grid,
  .delivery-grid,
  .audience-grid { grid-template-columns: 1fr; }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hero__cta-group {
    flex-direction: column;
  }
  .hero__cta-group .btn { width: 100%; text-align: center; }

  .cta-block__actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-block__actions .btn { width: 100%; max-width: 320px; text-align: center; }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .checklist-sections {
    grid-template-columns: 1fr;
  }
  .checklist-form-area {
    position: static;
  }
}

@media (max-width: 480px) {
  .pricing-card { padding: var(--space-6); }
  .feature-card { padding: var(--space-6); }
}

/* ─── Print ─── */
@media print {
  .header, .theme-toggle, .mobile-nav-toggle, .btn, .final-cta,
  .cta-block__actions, .hero__cta-group, .hero__badge,
  .checklist-form-area, .pricing-card__cta { display: none; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .section { padding: 1rem 0; }
  .legal-page { padding: 0.5rem 0; }
  .legal-page h2 { margin-top: 1.5rem; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 0.85em; color: #666; }
  a[href^="mailto"]::after, a[href^="#"]::after, a[href^="javascript"]::after { content: ''; }
  .footer__disclaimer { max-width: none; }
}

/* ─── Scroll animations ─── */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }
  .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
