/* RV Service Escalation Kit */

:root {
  --bg-dark: #111418;
  --bg: #f7f6f4;
  --surface: #ffffff;
  --ink: #1a1d22;
  --ink-soft: #2d3340;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --accent: #1f4f8b;
  --accent-strong: #163a68;
  --accent-soft: #e8eef7;
  --accent-light: #f0f4fa;
  --success: #16a34a;
  --success-soft: #f0fdf4;
  --border: #e5e0d8;
  --border-soft: #ede9e2;
  --warn-bg: #fffbf0;
  --warn-border: #ffefd5;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.13), 0 6px 16px rgba(0, 0, 0, 0.07);
  --radius: 8px;
  --radius-lg: 12px;
  --maxw: 1020px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-strong); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── HEADER ──────────────────────────────────────────────────────── */

header.site {
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-xs);
}

header.site .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

header.site .brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

header.site .brand-logo {
  width: 190px;
  height: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}

header.site nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

header.site nav a {
  margin-left: 28px;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
  white-space: nowrap;
}

header.site nav a:hover { color: var(--ink); }

.btn-nav-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: background 0.15s, transform 0.15s;
}

.btn-nav-cta:hover {
  background: var(--accent-strong);
  color: #fff;
  transform: translateY(-1px);
}

.nav-cta-short { display: none; }
.nav-cta-full  { display: inline; }

/* ── BUTTONS ─────────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  background: var(--accent-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  color: #fff;
}

.btn-primary {
  padding: 15px 32px;
  font-size: 16px;
  font-weight: 700;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--accent-light);
  color: var(--accent-strong);
  border-color: var(--accent-strong);
}

.btn-hero {
  display: inline-block;
  background: #fff;
  color: var(--bg-dark);
  padding: 17px 36px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  letter-spacing: -0.1px;
}

.btn-hero:hover {
  background: #e8eef8;
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-row.centered { justify-content: center; }

/* ── SHARED SECTION BASE ─────────────────────────────────────────── */

section {
  padding: 96px 0;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}

/* ── 1. HERO ─────────────────────────────────────────────────────── */

.hero {
  background: var(--bg-dark);
  padding: 100px 0 112px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin: 0 0 32px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  margin: 0 0 28px;
  max-width: 760px;
}

.hero .hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 580px;
  margin: 0 0 48px;
}

.hero .trust-line {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.32);
  margin: 20px 0 0;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* ── 2. PAIN SECTION ─────────────────────────────────────────────── */

.pain-section {
  background: var(--bg);
  padding: 96px 0;
  border-bottom: 1px solid var(--border-soft);
}

.pain-wrapper {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: start;
}

.pain-left h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.2;
}

.pain-left p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 24px;
}

.pain-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.pain-link:hover { color: var(--accent-strong); }

.pain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pain-list li {
  font-size: 16px;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.5;
}

.pain-list li:first-child {
  border-top: 1px solid var(--border-soft);
}

.pain-list li::before {
  content: "→";
  color: var(--accent);
  font-weight: 700;
  flex: 0 0 auto;
  margin-top: 1px;
  font-size: 15px;
}

/* ── 3. WHAT'S INCLUDED ──────────────────────────────────────────── */

.included-section {
  background: var(--surface);
  padding: 72px 0;
  border-bottom: 1px solid var(--border-soft);
}

.included-section h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
  line-height: 1.12;
}

.included-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 32px;
}

.included-intro h2 {
  margin: 0;
}

.included-intro-copy {
  max-width: 420px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 56px;
}

.included-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--border-soft);
}

.included-item-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted-light);
  letter-spacing: 0.8px;
}

.included-item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}

.included-item-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.included-note {
  font-size: 13px;
  color: var(--muted-light);
  line-height: 1.6;
  margin: 0;
  margin-top: 32px;
}

/* ── 4. HOW IT WORKS ─────────────────────────────────────────────── */

.how-section {
  background: var(--bg);
  padding: 96px 0;
  border-bottom: 1px solid var(--border-soft);
}

.how-section h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
  margin: 0 0 64px;
  line-height: 1.12;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.how-step-num {
  display: block;
  font-size: 52px;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -2px;
  line-height: 1;
  margin: 0 0 20px;
}

.how-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.3;
}

.how-step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* ── 5. FOUNDER / WHY I MADE THIS ────────────────────────────────── */

.founder-section {
  background: var(--surface);
  padding: 96px 0;
  border-bottom: 1px solid var(--border-soft);
}

.founder-wrapper {
  max-width: 680px;
}

.founder-quote {
  font-size: 21px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 28px;
  font-weight: 400;
}

.founder-note {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 32px;
}

.founder-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0;
}

/* ── 6. TESTIMONIALS ─────────────────────────────────────────────── */

.testimonials-section {
  background: var(--bg);
  padding: 96px 0;
  border-bottom: 1px solid var(--border-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 20px;
  font-weight: 400;
}

.testimonial-author {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

/* ── 7. FAQ ──────────────────────────────────────────────────────── */

.faq-section {
  background: var(--bg);
  padding: 96px 0;
  border-bottom: 1px solid var(--border-soft);
}

.faq-section h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
  margin: 0 0 48px;
  line-height: 1.12;
}

.faq-wrapper {
  max-width: 680px;
}

details.faq {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 8px;
}

details.faq:hover { border-color: #d4d9e4; }

details.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  user-select: none;
  line-height: 1.4;
  list-style: none;
}

details.faq summary::-webkit-details-marker { display: none; }

details.faq summary::after {
  content: "+";
  margin-left: 16px;
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
  flex: 0 0 auto;
  line-height: 1.2;
}

details.faq[open] summary::after { content: "−"; }

details.faq p {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.guide-callout {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}

.guide-callout-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 8px;
}

.guide-callout-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.guide-callout-link:hover { color: var(--accent-strong); }

/* ── 7. FINAL CTA ────────────────────────────────────────────────── */

.final-cta-section {
  background: var(--bg-dark);
  padding: 100px 0 112px;
  text-align: center;
}

.final-eyebrow {
  color: rgba(255, 255, 255, 0.38);
}

.final-price {
  font-size: 80px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -4px;
  line-height: 1;
  margin: 0 0 16px;
}

.final-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 48px;
  line-height: 1.75;
}

.final-trust {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  margin: 20px 0 0;
  letter-spacing: 0.2px;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */

footer.site {
  border-top: 1px solid var(--border-soft);
  padding: 48px 0;
  background: var(--surface);
}

.disclaimer-text {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted-light);
  text-align: center;
  margin: 0 auto 32px;
  max-width: 680px;
}

.footer-legal {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.footer-legal p { margin: 0 0 10px; line-height: 1.6; }
.footer-legal p:last-child { margin-bottom: 0; }
.footer-legal p:first-child { font-weight: 600; color: var(--ink-soft); font-size: 14px; }
.footer-legal a { color: var(--muted); margin: 0 4px; }
.footer-legal a:hover { color: var(--ink); }

/* ── GUARDRAIL (intake/success pages) ───────────────────────────── */

.guardrail-text {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin: 24px 0 0;
  padding: 16px;
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

/* ── DOCUMENT PREVIEW ────────────────────────────────────────────── */

.document-preview {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px;
  margin: 32px 0;
}

.document-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: block;
  font-weight: 600;
}

.document-content { font-size: 14px; line-height: 1.6; color: #333; }
.document-content h3 { font-size: 16px; font-weight: 700; margin: 0 0 16px; color: var(--ink); }
.document-content h4 { font-size: 13px; font-weight: 700; margin: 24px 0 12px; color: var(--ink); text-transform: uppercase; letter-spacing: 0.3px; }
.document-content p { margin: 0 0 12px; }
.document-content p:last-child { margin-bottom: 0; }
.document-content strong { font-weight: 600; color: var(--ink); }
.document-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13px; }
.document-content th { text-align: left; font-weight: 600; border-bottom: 1.5px solid var(--border); padding: 10px 0; font-size: 12px; text-transform: uppercase; letter-spacing: 0.3px; color: var(--ink); }
.document-content td { border-bottom: 1px solid #f0f0f0; padding: 10px 0; font-size: 13px; }
.document-content td:first-child { width: 80px; white-space: nowrap; color: var(--muted); font-weight: 500; }

.packet-purposes { list-style: none; padding: 0; margin: 0; }
.packet-purposes li { padding: 8px 0 8px 24px; position: relative; font-size: 14px; color: #333; line-height: 1.5; margin-bottom: 6px; }
.packet-purposes li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.draft-label { font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 8px; display: block; font-style: italic; }
.timeline-list { list-style: none; padding: 0; margin: 0; }
.timeline-list li { padding: 8px 0; font-size: 13px; color: #333; line-height: 1.5; margin-bottom: 4px; }
.document-note { font-size: 13px; color: var(--muted); margin-top: 18px; text-align: center; line-height: 1.5; }

/* ── INTAKE FORM ─────────────────────────────────────────────────── */

.intake-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}

.progress { display: flex; gap: 6px; margin-bottom: 20px; }
.progress .step { flex: 1; height: 6px; background: var(--border); border-radius: 3px; }
.progress .step.active { background: var(--accent); }
.progress .step.done { background: var(--accent-strong); }

.screen { display: none; }
.screen.active { display: block; }
.screen h2 { margin-top: 0; font-size: 22px; font-weight: 700; }
.screen .hint { color: var(--muted); font-size: 14px; margin: 8px 0 20px; }

.field { margin: 18px 0; }
.field > label,
.field > .field-label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 15px; color: var(--ink); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field input[type="number"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  padding: 11px 13px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.field textarea { min-height: 110px; resize: vertical; }
.field .options { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.field .options.inline { flex-direction: row; flex-wrap: wrap; gap: 14px; }
.field .options label { font-weight: 400; font-size: 15px; cursor: pointer; display: flex; align-items: center; }
.field .options input { margin-right: 6px; }
.field .help { color: var(--muted); font-size: 13px; margin-top: 6px; }
.field.required > label::after,
.field.required > .field-label::after { content: " *"; color: var(--err); }

.error-msg { color: #b3261e; font-size: 13px; margin-top: 4px; display: none; }
.field.has-error .error-msg { display: block; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #b3261e; }

.repeating-group { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; margin: 14px 0; background: #fafaf7; }
.repeating-group .group-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.repeating-group .group-header strong { font-size: 15px; }

.btn.remove { background: transparent; color: #b3261e; border: 1px solid #b3261e; padding: 4px 10px; font-size: 13px; box-shadow: none; }
.btn.remove:hover { background: #fdecea; }
.btn.add { background: transparent; color: var(--accent); border: 1px dashed var(--accent); padding: 8px 14px; font-size: 14px; box-shadow: none; }

.nav-row { display: flex; justify-content: space-between; margin-top: 24px; gap: 12px; }

.summary-list { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; background: #fafaf7; font-size: 14px; }
.summary-list dt { font-weight: 600; margin-top: 10px; color: var(--ink); }
.summary-list dd { margin: 2px 0 8px 0; color: var(--muted); }

.banner { padding: 14px 16px; border-radius: var(--radius); margin: 16px 0; font-size: 15px; }
.banner.ok { background: #e9f5ed; color: var(--success); border: 1px solid #b9dcc4; }
.banner.err { background: #fdecea; color: #b3261e; border: 1px solid #f1b9b5; }
.banner.info { background: var(--accent-light); color: var(--accent-strong); border: 1px solid #cfdbef; }

pre.packet-preview { background: #fdfdfb; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; max-height: 360px; overflow: auto; font-size: 13px; white-space: pre-wrap; word-wrap: break-word; }

/* ── PACKET DOCUMENT (success.html rendered preview) ─────────────── */

.packet-document {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 760px;
  margin: 0 0 32px;
  padding: 48px 52px;
}

.packet-document .pkt-h1 {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  border-bottom: 2px solid var(--accent-soft);
  padding-bottom: 8px;
  margin: 36px 0 16px;
  line-height: 1.25;
}

.packet-document .pkt-h1:first-child { margin-top: 0; }

.packet-document .pkt-h2 {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 28px 0 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border-soft);
}

.packet-document .pkt-h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 20px 0 8px;
}

.packet-document .pkt-h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 16px 0 6px;
}

.packet-document .pkt-p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 10px;
  line-height: 1.7;
}

.packet-document .pkt-spacer { margin: 4px 0; display: block; }

.packet-document .pkt-bq {
  border-left: 3px solid var(--accent);
  padding: 10px 18px;
  margin: 14px 0;
  background: var(--accent-light);
  color: var(--ink-soft);
  font-size: 15px;
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.65;
}

.packet-document .pkt-list {
  margin: 8px 0 14px 22px;
  padding: 0;
}

.packet-document .pkt-list li {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 6px;
  line-height: 1.65;
}

.packet-document .pkt-rule {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 24px 0;
}

/* ── PRINT ───────────────────────────────────────────────────────── */

@media print {
  .no-print,
  header.site,
  footer.site,
  .cta-row,
  .next-steps,
  .success-section,
  #submission-info,
  #email-notice,
  .disclaimer { display: none !important; }

  body { background: #fff; font-size: 14px; }

  .container { padding: 0; max-width: 100%; }

  #packet-tools { margin-top: 0 !important; }

  .packet-document {
    box-shadow: none;
    border: none;
    border-radius: 0;
    max-width: 100%;
    padding: 24px 0;
    margin: 0;
  }

  .packet-document .pkt-h1 { font-size: 18px; }
  .packet-document .pkt-h2 { font-size: 12px; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .pain-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .included-intro,
  .included-list {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 680px) {
  header.site { padding: 10px 0; }
  header.site nav { display: none; }
  header.site .brand-logo { width: 160px; height: auto; max-width: 160px; }
  .btn-nav-cta { font-size: 13px; padding: 8px 14px; }
  .nav-cta-full { display: none; }
  .nav-cta-short { display: inline; }

  section { padding: 64px 0; }

  .hero { padding: 72px 0 80px; }
  .hero h1 { font-size: 36px; letter-spacing: -0.8px; }
  .hero .hero-sub { font-size: 16px; }

  .included-section {
    padding: 52px 0;
  }

  .included-section h2,
  .how-section h2,
  .faq-section h2 { font-size: 30px; letter-spacing: -0.5px; }

  .included-intro,
  .included-list {
    grid-template-columns: 1fr;
  }

  .included-intro {
    gap: 18px;
  }

  .pain-left h2 { font-size: 26px; }

  .final-cta-section { padding: 72px 0 80px; }
  .final-price { font-size: 60px; letter-spacing: -2px; }

  .founder-quote { font-size: 18px; }

  .container { padding: 0 18px; }

  .packet-document { padding: 28px 24px; }
  .document-preview { padding: 20px; }

  .faq-wrapper { max-width: 100%; }
}
