* { margin: 0; padding: 0; box-sizing: border-box; }
svg { max-width: 100%; height: auto; }

:root {
  --dark: #0d2818;
  --dark-medium: #1a4a2e;
  --dark-light: #153723;
  --accent: #22c55e;
  --accent-hover: #16a34a;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --red: #ef4444;
  --orange: #f59e0b;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
}

.section-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13, 40, 24, 0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(34, 197, 94, 0.15);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.logo { color: var(--white); font-size: 20px; font-weight: 800; text-decoration: none; letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; }
.logo-img { height: 28px !important; width: 28px !important; max-width: 28px !important; max-height: 28px !important; object-fit: contain; filter: invert(1); }
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--accent) !important; color: var(--dark) !important;
  padding: 8px 20px !important; border-radius: 6px;
  font-weight: 700 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; color: var(--white) !important; }

/* HERO */
.hero {
  background: linear-gradient(165deg, #0d2818 0%, #153723 50%, #1a4a2e 100%);
  color: var(--white);
  padding: 140px 24px 80px; text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 60%, rgba(34,197,94,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.hero-kicker {
  font-size: 14px; color: var(--orange); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px;
}
.hero h1 {
  font-size: 52px; line-height: 1.1; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 580px; margin: 0 auto 40px; line-height: 1.7; }
.btn-hero {
  display: inline-block; background: var(--accent); color: var(--dark);
  padding: 18px 44px; border-radius: 8px; font-size: 18px; font-weight: 800;
  text-decoration: none; transition: all 0.2s; letter-spacing: -0.01em;
}
.btn-hero:hover { background: var(--accent-hover); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,0.3); }
.hero-note { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 16px; }

/* TRUST BAR */
.trust-bar {
  background: var(--dark); padding: 28px 24px;
  border-top: 1px solid rgba(34,197,94,0.1);
  border-bottom: 1px solid rgba(34,197,94,0.1);
}
.trust-bar-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.trust-bar-label {
  font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em; margin-right: 8px;
  white-space: nowrap;
}
.trust-bar-logos {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center;
}
.trust-bar-logos span {
  font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 600;
  letter-spacing: 0.02em;
}

/* RAGE COUNTER */
.interrupts {
  background: linear-gradient(180deg, #0d2818 0%, #0a1f14 100%);
  padding: 64px 24px;
}
.interrupt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.interrupt-card {
  padding: 28px; border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.interrupt-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 16px;
  background: radial-gradient(ellipse at center bottom, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.interrupt-num {
  display: block; font-size: 48px; font-weight: 900; color: var(--orange);
  margin-bottom: 8px; letter-spacing: -0.03em;
}
.interrupt-label { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.interrupt-label em { color: var(--red); font-style: normal; font-weight: 700; }

/* PAIN / QUOTES */
.pain { background: var(--gray-50); padding: 80px 24px; }
.pain h2 { text-align: center; font-size: 36px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.02em; }
.section-sub { text-align: center; color: var(--gray-500); margin-bottom: 48px; font-size: 16px; }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
blockquote {
  background: var(--white); border-radius: 12px; padding: 28px;
  border-left: 4px solid var(--red); box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
blockquote:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
blockquote p { font-size: 16px; font-weight: 500; color: var(--gray-900); line-height: 1.55; margin-bottom: 14px; font-style: italic; }
blockquote cite { font-size: 13px; color: var(--gray-500); font-style: normal; }

/* CASE STUDIES */
.case-studies { padding: 80px 24px; background: var(--white); }
.case-studies h2 { text-align: center; font-size: 36px; font-weight: 900; margin-bottom: 48px; letter-spacing: -0.02em; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.case-card {
  background: var(--gray-50); border-radius: 12px; padding: 32px;
  border: 1px solid var(--gray-200);
}
.case-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.case-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; flex-shrink: 0;
}
.case-name { font-size: 15px; font-weight: 700; color: var(--gray-900); }
.case-source { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
.case-body p {
  font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 12px;
}
.case-body p:last-child { margin-bottom: 0; }
.case-body strong { color: var(--gray-900); }

@media (max-width: 960px) {
  .cases-grid { grid-template-columns: 1fr; }
}

/* SUCCESS STORY */
.success-story {
  padding: 80px 24px;
  background: linear-gradient(165deg, #0d2818 0%, #153723 100%);
  color: var(--white);
}
.story-card {
  max-width: 720px; margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: 16px; padding: 40px;
  position: relative;
}
.story-badge {
  position: absolute; top: -12px; left: 40px;
  background: var(--accent); color: var(--dark);
  padding: 4px 14px; border-radius: 12px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.story-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.story-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(34,197,94,0.15); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; flex-shrink: 0;
}
.story-name { font-size: 16px; font-weight: 700; }
.story-stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; margin-top: 2px; }
.story-body {}
.story-section { margin-bottom: 24px; }
.story-section:last-child { margin-bottom: 0; }
.story-label {
  display: inline-block; padding: 3px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.story-label.before { background: rgba(239,68,68,0.15); color: var(--red); }
.story-label.after { background: rgba(34,197,94,0.15); color: var(--accent); }
.story-body p {
  font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 12px;
}
.story-body p:last-child { margin-bottom: 0; }
.story-body strong { color: var(--white); }

@media (max-width: 768px) {
  .story-card { padding: 28px 20px; }
}

/* PROBLEM — WHY BLOCKING DOESN'T WORK */
.problem { padding: 80px 24px; }
.problem-content { max-width: 720px; margin: 0 auto; }
.problem-content h2 { font-size: 36px; font-weight: 900; margin-bottom: 16px; text-align: center; letter-spacing: -0.02em; }
.problem-lead { font-size: 18px; color: var(--gray-600); text-align: center; margin-bottom: 40px; line-height: 1.7; }
.problem-lead strong { color: var(--gray-900); }
.problem-points { display: flex; flex-direction: column; gap: 28px; }
.point { display: flex; gap: 20px; align-items: flex-start; }
.point-icon {
  width: 40px; height: 40px; border-radius: 50%; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; margin-top: 2px;
}
.point-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.point-icon.red { background: var(--red); }
.point-icon.orange { background: var(--orange); }
.point-icon.dark { background: var(--dark); }
.point strong { display: block; font-size: 17px; color: var(--gray-900); margin-bottom: 4px; }
.point p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

/* WHAT YOU GET (replaces Time Theft) */
.what-you-get {
  padding: 80px 24px;
  background: linear-gradient(165deg, #0d2818 0%, #1a4a2e 100%);
  color: var(--white);
}
.what-you-get h2 { text-align: center; font-size: 36px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.02em; }
.what-you-get .section-sub { color: rgba(255,255,255,0.5); }
.wyg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 740px; margin: 0 auto; }
.wyg-card {
  padding: 28px; border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 16px; align-items: flex-start;
}
.wyg-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(34,197,94,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wyg-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.wyg-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.wyg-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* MID-PAGE CTA */
.mid-cta {
  padding: 56px 24px; text-align: center;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.mid-cta p { font-size: 20px; font-weight: 700; margin-bottom: 16px; color: var(--gray-900); }
.btn-mid {
  display: inline-block; background: var(--accent); color: var(--dark);
  padding: 14px 36px; border-radius: 8px; font-size: 16px; font-weight: 700;
  text-decoration: none; transition: all 0.2s;
}
.btn-mid:hover { background: var(--accent-hover); color: var(--white); transform: translateY(-1px); }

/* HOW IT WORKS */
.how { background: var(--white); padding: 80px 24px; }
.how h2 { text-align: center; font-size: 36px; font-weight: 900; margin-bottom: 8px; color: var(--gray-900); letter-spacing: -0.02em; }
.how .section-sub { color: var(--gray-500); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.step-card {
  background: var(--gray-50); border-radius: 12px; padding: 32px;
  border: 1px solid var(--gray-200);
  position: relative;
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--dark);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  font-size: 18px; font-weight: 900; margin-bottom: 16px;
}
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.step-card p { color: var(--gray-600); font-size: 15px; line-height: 1.6; }
.step-connector {
  display: none;
}
@media (min-width: 769px) {
  .step-connector {
    display: block; position: absolute; top: 52px;
    width: 32px; height: 2px; background: var(--gray-200);
    right: -32px;
  }
  .step-connector::after {
    content: ''; position: absolute; right: -2px; top: -4px;
    border: 5px solid transparent; border-left-color: var(--gray-400);
  }
}

/* VALIDATION — YOU'VE TRIED EVERYTHING */
.validation { padding: 80px 24px; background: var(--gray-50); }
.validation h2 { text-align: center; font-size: 36px; font-weight: 900; margin-bottom: 48px; letter-spacing: -0.02em; }
.tried-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 820px; margin: 0 auto; }
.tried-card {
  padding: 28px; border-radius: 12px; background: var(--white);
  border: 1px solid var(--gray-200);
}
.tried-card h3 {
  font-size: 16px; font-weight: 700; color: var(--red); margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.tried-card h3::before { content: "\2717"; font-size: 14px; }
.tried-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* PRICING */
.pricing {
  padding: 80px 24px;
  background: linear-gradient(165deg, #0d2818 0%, #153723 100%);
  color: var(--white);
}
.price-card {
  max-width: 520px; margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border-radius: 16px; padding: 48px 40px; text-align: center;
  border: 1px solid rgba(34,197,94,0.2);
  position: relative; overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.price-badge {
  display: inline-block; background: rgba(34, 197, 94, 0.15); color: var(--accent);
  padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 700;
  margin-bottom: 16px; border: 1px solid rgba(34,197,94,0.3);
}
.price-amount { font-size: 68px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.03em; }
.price-desc { color: rgba(255,255,255,0.5); margin-bottom: 32px; font-size: 16px; }
.price-features { list-style: none; text-align: left; margin-bottom: 32px; }
.price-features li {
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 15px; color: rgba(255,255,255,0.6); padding-left: 28px; position: relative;
}
.price-features li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.price-guarantee {
  margin-top: 20px; padding: 16px; border-radius: 8px;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.15);
  font-size: 14px; color: rgba(255,255,255,0.6);
}
.price-guarantee strong { color: var(--accent); }
.btn-price {
  display: inline-block; background: var(--accent); color: var(--dark);
  padding: 18px 52px; border-radius: 8px; font-size: 18px; font-weight: 800;
  text-decoration: none; transition: all 0.2s;
}
.btn-price:hover { background: var(--accent-hover); color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(34,197,94,0.3); }

/* FAQ */
.faq { padding: 80px 24px; }
.faq h2 { text-align: center; font-size: 36px; font-weight: 900; margin-bottom: 40px; letter-spacing: -0.02em; }
.faq-list { max-width: 700px; margin: 0 auto; }
details { border-bottom: 1px solid var(--gray-200); padding: 20px 0; }
summary {
  font-size: 17px; font-weight: 600; cursor: pointer; color: var(--gray-900);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 22px; color: var(--gray-400); font-weight: 400; transition: transform 0.2s; }
details[open] summary::after { content: "\2212"; }
details p { margin-top: 12px; color: var(--gray-600); font-size: 15px; line-height: 1.7; }

/* FORM SECTION */
.get-started { padding: 80px 24px; background: var(--gray-50); }
.get-started h2 { text-align: center; font-size: 36px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.02em; }
.form-container { max-width: 680px; margin: 0 auto; }

.steps-indicator { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; }
.step-dot {
  display: flex; align-items: center; gap: 6px; font-size: 13px; color: #9aa0b0;
  padding: 8px 16px; border-radius: 20px; background: var(--gray-200); transition: all 0.3s;
}
.step-dot span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; background: var(--gray-400);
  color: var(--white); font-size: 12px; font-weight: 600;
}
.step-dot.active { background: var(--dark); color: var(--white); }
.step-dot.active span { background: var(--accent); color: var(--dark); }
.step-dot.done { background: #d0e8d8; color: #1a6b35; }
.step-dot.done span { background: var(--accent); }

.form-step {
  display: none; background: var(--white); border-radius: 12px; padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.form-step.active { display: block; }
.form-step h3 { font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.step-desc { color: var(--gray-500); font-size: 14px; margin-bottom: 24px; text-align: left; }

.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 4px; }
input, select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--gray-200);
  border-radius: 6px; font-size: 15px; color: var(--gray-900); background: var(--white);
  font-family: inherit; transition: border-color 0.2s;
}
input:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,197,94,0.1); }
input.invalid { border-color: var(--red); }

.legal-text {
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 8px;
  padding: 20px; margin-bottom: 24px; font-size: 13px; color: var(--gray-700);
  max-height: 240px; overflow-y: auto;
}
.legal-text ul { margin: 8px 0 8px 20px; }
.legal-text li { margin-bottom: 4px; }

.sig-label { margin-bottom: 8px; }
.signature-wrapper {
  border: 2px dashed var(--gray-200); border-radius: 8px; background: var(--gray-50); margin-bottom: 8px;
}
.signature-wrapper.invalid { border-color: var(--red); }
#signature-pad { display: block; width: 100%; height: 160px; }

.actions { display: flex; justify-content: space-between; margin-top: 28px; }
.btn {
  padding: 12px 28px; border: none; border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s;
  font-family: inherit;
}
.btn-primary { background: var(--dark); color: var(--white); }
.btn-primary:hover { background: var(--dark-medium); }
.btn-secondary { background: var(--gray-200); color: var(--gray-700); }
.btn-secondary:hover { background: var(--gray-400); color: var(--white); }
.btn-small {
  padding: 6px 14px; font-size: 12px; background: var(--gray-200); color: var(--gray-500);
  border: none; border-radius: 6px; cursor: pointer; font-family: inherit;
}

.review-summary { background: var(--gray-50); border-radius: 8px; padding: 20px; font-size: 14px; }
.review-summary .review-row { display: flex; padding: 6px 0; border-bottom: 1px solid var(--gray-200); }
.review-summary .review-row:last-child { border-bottom: none; }
.review-summary .review-label { width: 160px; font-weight: 600; color: var(--gray-500); flex-shrink: 0; }
.review-summary .review-value { color: var(--gray-900); }
.review-summary .sig-preview { margin-top: 12px; }
.review-summary .sig-preview img { max-height: 80px; border: 1px solid var(--gray-200); border-radius: 6px; background: var(--white); }

.message { text-align: center; padding: 40px 32px; border-radius: 12px; }
.message h2 { margin-bottom: 8px; }
.message.success { background: #d0e8d8; color: #1a6b35; }
.message.error { background: #f8d7d7; color: #8b1a1a; }
.hidden { display: none; }

/* FOOTER */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.5);
  padding: 48px 24px 32px;
  border-top: 1px solid rgba(34,197,94,0.1);
}
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; }
.footer-brand strong { color: var(--white); font-size: 18px; display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 14px; max-width: 320px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; font-size: 13px; }

/* STICKY MOBILE CTA */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  padding: 12px 16px;
  background: rgba(13, 40, 24, 0.97); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(34,197,94,0.2);
  text-align: center;
}
.sticky-cta a {
  display: block; background: var(--accent); color: var(--dark);
  padding: 14px; border-radius: 8px; font-size: 16px; font-weight: 800;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 120px 20px 60px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }

  .interrupt-grid { grid-template-columns: 1fr; gap: 12px; }
  .interrupt-num { font-size: 36px; }
  .interrupt-card { padding: 20px; }

  .quotes-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .tried-grid { grid-template-columns: 1fr; }
  .wyg-grid { grid-template-columns: 1fr; }

  .trust-bar-label { width: 100%; text-align: center; margin-right: 0; margin-bottom: 4px; }
  .trust-bar-logos { gap: 16px; }

  .nav-links a:not(.nav-cta) { display: none; }

  .row { grid-template-columns: 1fr; gap: 0; }
  .form-step { padding: 24px 20px; }
  .steps-indicator { flex-direction: column; align-items: stretch; gap: 4px; }
  .step-dot { justify-content: center; }
  .review-summary .review-row { flex-direction: column; gap: 2px; }
  .review-summary .review-label { width: auto; }

  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-links { flex-direction: column; gap: 8px; }

  .price-card { padding: 32px 24px; }
  .price-amount { font-size: 48px; }

  .sticky-cta { display: block; }
  body { padding-bottom: 68px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-kicker { font-size: 12px; }
}
