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

:root {
  --ink: #111827;
  --ink-2: #1f2937;
  --muted: #667085;
  --line: #d8dee8;
  --paper: #ffffff;
  --paper-soft: #fef2f2;
  --paper-cool: #f5f7fb;
  --navy: #0b1f3a;
  --navy-2: #122f55;
  --teal: #9b1c1c;
  --teal-dark: #7f1d1d;
  --gold: #9b1c1c;
  --gold-soft: #fef2f2;
  --red: #b42318;
  --red-soft: #fff1ef;
  --shadow-sm: 0 12px 30px rgba(15, 23, 42, .08);
  --shadow-md: 0 22px 60px rgba(15, 23, 42, .16);
  --radius: 8px;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 16px;
}

body.landing-body {
  min-width: 320px;
  overflow-x: hidden;
  padding-top: 54px;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }
button { border: 0; cursor: pointer; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Sticky bar */
#sticky-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 9px 20px;
  background: rgba(11, 31, 58, .96);
  color: #fff;
  box-shadow: 0 8px 24px rgba(11, 31, 58, .18);
  backdrop-filter: blur(14px);
}

.sticky-text {
  font-size: .94rem;
  font-weight: 750;
}

.sticky-proof {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .72);
  font-size: .86rem;
}

.sticky-btn {
  min-height: 34px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: .86rem;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease;
}

.sticky-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* Buttons */
.btn-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.15;
  max-width: 100%;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  box-shadow: 0 16px 30px rgba(155, 28, 28, .22);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.btn-cta:hover {
  background: var(--teal-dark);
  box-shadow: 0 20px 38px rgba(155, 28, 28, .28);
  transform: translateY(-1px);
}

.btn-large { min-height: 58px; padding: 18px 32px; font-size: 1.06rem; }
.btn-card { width: 100%; margin-top: 18px; }
.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
}
.btn-white:hover { background: #fee2e2; color: var(--navy); }

/* Sections */
.section { padding: 86px 0; }
.section-light { background: var(--paper); }
.section-gray { background: var(--paper-cool); }
.section-dark-blue {
  background:
    linear-gradient(135deg, rgba(11, 31, 58, .98), rgba(18, 47, 85, .96)),
    radial-gradient(circle at 15% 10%, rgba(155, 28, 28, .18), transparent 34%);
}
.section-accent {
  padding: 54px 0;
  background: var(--paper-soft);
  border-block: 1px solid #eadfce;
}
.section-cta-bg {
  background:
    linear-gradient(135deg, rgba(11, 31, 58, .98), rgba(17, 24, 39, .96)),
    radial-gradient(circle at 85% 0%, rgba(155, 28, 28, .20), transparent 34%);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-kicker.light { color: #fca5a5; }
.section-kicker.large { font-size: clamp(1.8rem, 4vw, 2.65rem); letter-spacing: .04em; }

.section-title {
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
}
.section-title.light { color: #fff; }
.section-title.left { text-align: left; margin-bottom: 18px; }

.section-lead {
  max-width: 520px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-lead.light { color: rgba(255, 255, 255, .72); }

/* Hero */
#hero {
  position: relative;
  min-height: calc(84svh - 54px);
  display: flex;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 58px 0 46px;
  background:
    linear-gradient(90deg, rgba(6, 16, 32, .95) 0%, rgba(11, 31, 58, .86) 48%, rgba(11, 31, 58, .48) 100%),
    linear-gradient(180deg, rgba(6, 16, 32, .08), rgba(6, 16, 32, .46));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .72fr);
  gap: 54px;
  align-items: center;
}

.hero-copy { max-width: 720px; }

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 20px;
  padding: 9px 18px;
  border: 1px solid rgba(252, 165, 165, .6);
  border-radius: 999px;
  background: rgba(252, 165, 165, .14);
  color: #fca5a5;
  font-size: .88rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-inline-cta {
  margin-top: 36px;
  text-align: center;
}

.hero-h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.45rem, 6vw, 4.9rem);
  font-weight: 950;
  line-height: .98;
}

.hero-sub {
  max-width: 650px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  line-height: 1.65;
}

.hero-topics {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .66);
  font-size: .94rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-microcopy {
  max-width: 190px;
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
  line-height: 1.4;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}

.hero-trust span {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .86);
  font-size: .9rem;
  font-weight: 720;
  line-height: 1.35;
}

.ti {
  font-style: normal;
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
}

.hero-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 4px;
  background: var(--gold);
}

.hero-card-topline {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 18px;
  font-size: 1.46rem;
  line-height: 1.18;
}

.hero-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
  list-style: none;
}

.hero-card li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
  line-height: 1.48;
}

.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 5px #fee2e2;
}

.hero-urgency {
  padding: 14px 16px;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  background: #fef2f2;
  color: #7f1d1d;
  font-size: .96rem;
  font-weight: 800;
}

.hero-urgency strong {
  display: inline-flex;
  min-width: 30px;
  justify-content: center;
  color: var(--red);
  font-size: 1.35rem;
}

/* Problems */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.problem-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, .04);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.problem-card:hover {
  border-color: rgba(155, 28, 28, .44);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.problem-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--paper-soft);
  font-size: 1.7rem;
}

.problem-card p {
  color: var(--ink-2);
  font-size: .95rem;
  font-weight: 680;
  line-height: 1.48;
}

.pain-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid #f3b7af;
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: var(--red-soft);
}

.pain-block p {
  color: #7a271a;
  font-size: 1.04rem;
  font-weight: 760;
  line-height: 1.55;
}

/* What */
.split-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.checklist {
  display: grid;
  gap: 12px;
  list-style: none;
}

.checklist li {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 18px 20px 18px 58px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.45;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fca5a5;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 950;
  transform: translateY(-50%);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.stat {
  padding: 28px 22px;
  text-align: center;
}
.stat + .stat { border-left: 1px solid #fecaca; }

.stat-number {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 950;
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-size: .98rem;
  font-weight: 760;
}

/* Process */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
}

.step-body strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.3;
}

.step-body p {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.58;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  margin-bottom: 18px;
  color: #c7902f;
  font-size: .94rem;
  letter-spacing: 2px;
}

.review-text {
  flex: 1;
  color: var(--ink-2);
  font-size: .96rem;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-avatar,
.review-avatar-placeholder {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
}

.review-avatar { object-fit: cover; }

.review-avatar-placeholder {
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 850;
}

.review-author strong { color: var(--ink); font-size: .96rem; }
.review-author small { color: var(--muted); font-size: .86rem; }

/* Form */
#form-section { padding: 90px 0; }

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .82fr);
  gap: 58px;
  align-items: center;
}

.form-copy .section-title { max-width: 620px; }

.form-sub {
  max-width: 560px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .76);
  font-size: 1.07rem;
  line-height: 1.7;
}

.form-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 13px 16px;
  border: 1px solid rgba(252, 165, 165, .5);
  border-radius: var(--radius);
  background: rgba(252, 165, 165, .12);
  color: #fca5a5;
  font-size: .98rem;
  font-weight: 820;
}

.form-urgency strong {
  color: #fff;
  font-size: 1.28rem;
}

.form-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
}

.form-benefits span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 255, 255, .76);
  font-size: .86rem;
  font-weight: 720;
}

.form-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

#lead-form input,
#lead-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease;
}

#lead-form input[type="email"] { margin-bottom: 12px; }
#lead-form textarea { min-height: 124px; resize: vertical; margin-bottom: 12px; }
#lead-form input::placeholder,
#lead-form textarea::placeholder { color: #8a94a6; }

#lead-form input:focus,
#lead-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(155, 28, 28, .12);
}

.btn-submit {
  width: 100%;
  background: var(--teal);
  border-radius: var(--radius);
}

.privacy-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
  text-align: center;
}

#form-success {
  max-width: 440px;
  margin: 0 auto;
  color: var(--ink);
  text-align: center;
}

.success-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  font-size: 2rem;
  font-weight: 900;
}

#form-success h3 { margin-bottom: 8px; font-size: 1.55rem; }
#form-success p { color: var(--muted); line-height: 1.6; }

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto 40px;
  border-top: 1px solid var(--line);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 820;
  line-height: 1.35;
  text-align: left;
  transition: color .18s ease;
}

.faq-question:hover { color: var(--teal); }

.faq-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  font-size: 1.2rem;
  transition: transform .22s ease, background .22s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--teal);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.faq-answer p {
  max-width: 720px;
  padding: 0 0 22px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.72;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.final-cta p {
  color: var(--navy);
  font-size: 1.16rem;
  font-weight: 850;
  line-height: 1.35;
}

/* Footer */
.landing-footer {
  padding: 30px 20px;
  background: #071426;
  color: rgba(255, 255, 255, .58);
  font-size: .82rem;
  line-height: 1.65;
  text-align: center;
}

.landing-footer .disclaimer {
  max-width: 820px;
  margin: 6px auto 0;
  opacity: .72;
}

/* SVO block */
.svo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .78fr);
  gap: 54px;
  align-items: center;
}

.svo-copy .section-title.left { text-align: left; }

.svo-lead {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 760;
  line-height: 1.5;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.svo-lead strong { color: var(--teal); }

.svo-text {
  display: grid;
  gap: 14px;
  margin-bottom: 0;
}

.svo-text p {
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.72;
}

.svo-mark {
  color: var(--teal);
  font-weight: 900;
}

/* SVO form card */
.svo-form-card {
  position: relative;
  padding: 36px 38px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.svo-form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 38px; right: 38px;
  height: 4px;
  background: var(--teal);
  border-radius: 0 0 4px 4px;
}

.svo-form-topline {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(155, 28, 28, .1);
  color: var(--teal);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.svo-form-h3 {
  margin-bottom: 22px;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
}

#svo-lead-form input,
#svo-lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease;
}

#svo-lead-form input::placeholder,
#svo-lead-form textarea::placeholder { color: #8a94a6; }

#svo-lead-form input:focus,
#svo-lead-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(155, 28, 28, .12);
}

#svo-lead-form textarea { min-height: 90px; resize: vertical; }

.svo-submit { width: 100%; }

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

@media (max-width: 640px) {
  .svo-form-card { padding: 26px 20px 24px; }
  .svo-form-card::before { left: 20px; right: 20px; }
}

/* Floating messengers */
.mf-wrap {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mf-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .28);
  transition: transform .18s ease, box-shadow .18s ease;
}

.mf-btn:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .38);
}

.mf-tg { background: #2AABEE; }

.mf-max {
  background: linear-gradient(135deg, #44ccff 0%, #5533ee 66%, #9933dd 100%);
}

@media (max-width: 640px) {
  .mf-wrap { bottom: 18px; right: 14px; gap: 10px; }
  .mf-btn  { width: 48px; height: 48px; }
}

/* Animations */
.animate-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* Responsive */
@media (max-width: 1040px) {
  .problems-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { min-height: auto; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 32px, 1120px); }
  .hero-grid,
  .split-section,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero-overlay {
    align-items: flex-start;
    padding: 48px 0 34px;
    background: linear-gradient(180deg, rgba(6, 16, 32, .95), rgba(11, 31, 58, .84));
  }
  .hero-card { max-width: 560px; }
  .hero-trust { grid-template-columns: 1fr; }
  .section-title.left { text-align: center; }
  .section-lead,
  .form-sub,
  .form-copy .section-title { max-width: none; text-align: center; }
  .form-copy { text-align: center; }
  .form-benefits { justify-content: center; }
  .pain-block,
  .final-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 640px) {
  body.landing-body { padding-top: 72px; }
  #sticky-bar {
    min-height: 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    justify-content: stretch;
    padding: 10px 14px;
    align-items: center;
  }
  .sticky-proof { display: none; }
  .sticky-text {
    min-width: 0;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.3;
  }
  .sticky-btn {
    min-height: 46px;
    padding: 10px 16px;
    font-size: .92rem;
    font-weight: 900;
    white-space: nowrap;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(155, 28, 28, .40);
  }

  .section { padding: 58px 0; }
  .section-accent { padding: 36px 0; }
  #form-section { padding: 62px 0; }

  .hero-h1 { font-size: 2.35rem; }
  #hero { min-height: auto; }
  .hero-copy,
  .hero-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero-h1,
  .hero-sub,
  .hero-topics,
  .hero-card h2,
  .hero-card li {
    overflow-wrap: anywhere;
  }
  .hero-actions .btn-cta,
  .btn-large { width: 100%; }
  .hero-actions { gap: 10px; margin-bottom: 18px; }
  .hero-microcopy { max-width: none; text-align: center; }
  .hero-topics { margin-bottom: 22px; }
  .hero-trust { margin-bottom: 0; }
  .hero-trust span {
    min-height: 54px;
    padding: 12px 14px;
  }
  .hero-trust span:not(:first-child) { display: none; }
  .hero-card { padding: 20px 20px 18px; }
  .hero-card h2 {
    margin-bottom: 14px;
    font-size: 1.28rem;
  }
  .hero-card ul { gap: 8px; margin-bottom: 14px; }
  .hero-card li { line-height: 1.38; }
  .hero-urgency { padding: 11px 12px; font-size: .9rem; }
  .btn-card { min-height: 48px; margin-top: 12px; }

  .problems-grid,
  .steps,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat + .stat { border-left: 0; border-top: 1px solid #fecaca; }

  .problem-card { min-height: auto; }
  .form-card { padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .final-cta .btn-cta { width: 100%; }
}

@media (max-width: 380px) {
  .container { width: min(100% - 24px, 1120px); }
  .hero-h1 { font-size: 2.05rem; }
  .section-title { font-size: 1.62rem; }
  .hero-card h2 { font-size: 1.28rem; }
  .btn-cta { padding-inline: 18px; }
}
