:root {
  color-scheme: light;

  /* ── Core palette ── */
  --ink:        #0b1912;
  --ink-2:      #1c3028;
  --muted:      #4d6656;
  --muted-2:    #7a9486;
  --line:       #c6d9c2;
  --line-soft:  #dfeedd;
  --paper:      #edf7f2;
  --surface:    #ffffff;
  --surface-2:  #f4fbf6;

  /* ── Brand greens ── */
  --green:       #18955a;
  --green-mid:   #13784a;
  --green-dark:  #0d5c38;
  --green-xdark: #083d26;
  --green-pale:  #e4f5ec;
  --green-ultra: #f1fbf5;

  /* ── Accents ── */
  --gold:  #d99a18;
  --rose:  #c64b58;
  --blue:  #1c5b84;

  /* ── Shadows — softer, diffused ── */
  --shadow-xs:    0 2px 10px rgba(11,25,18,.05), 0 1px 3px rgba(11,25,18,.03);
  --shadow-sm:    0 4px 20px rgba(11,25,18,.06), 0 2px 6px rgba(11,25,18,.04);
  --shadow-md:    0 8px 32px rgba(11,25,18,.08), 0 3px 10px rgba(11,25,18,.05);
  --shadow-lg:    0 16px 52px rgba(11,25,18,.09), 0 6px 18px rgba(11,25,18,.06);
  --shadow-green: 0 8px 28px rgba(24,149,90,.28), 0 3px 10px rgba(24,149,90,.16);

  /* ── Glass system ── */
  --glass-bg:       rgba(255, 255, 255, 0.70);
  --glass-bg-dense: rgba(255, 255, 255, 0.82);
  --glass-border:   rgba(255, 255, 255, 0.68);
  --glass-blur:     blur(22px) saturate(1.6);
  --glass-blur-lg:  blur(36px) saturate(1.8);
  --glass-inset:    inset 0 1px 0 rgba(255,255,255,0.92);

  /* ── Border radii ── */
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Hide topbar on the landing page only */
body:has(#landing.active) .topbar { display: none; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 55% at 10%  5%,  rgba(24,149,90,0.18) 0%, transparent 100%),
    radial-gradient(ellipse 55% 65% at 90%  88%, rgba(28,91,132,0.12) 0%, transparent 100%),
    radial-gradient(ellipse 42% 48% at 72%  4%,  rgba(217,154,24,0.10) 0%, transparent 100%),
    radial-gradient(ellipse 50% 42% at 28%  96%, rgba(24,149,90,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 35% 35% at 50%  50%, rgba(255,255,255,0.40) 0%, transparent 100%),
    #edf7f2;
  background-attachment: fixed;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', Inter, ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input, select { font: inherit; }
[hidden] { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════════════════════════ */
.topbar {
  position: fixed;
  z-index: 20;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(237, 247, 242, 0.78);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur-lg);
  -webkit-backdrop-filter: var(--glass-blur-lg);
  box-shadow:
    0 1px 0 rgba(24,149,90,0.06),
    0 2px 24px rgba(11,25,18,.04),
    var(--glass-inset);
}

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

.brand img {
  display: block;
  width: clamp(140px, 16vw, 210px);
  height: auto;
}

nav {
  display: flex;
  gap: clamp(10px, 2vw, 26px);
  font-size: 13px;
  font-weight: 600;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color .18s;
  letter-spacing: .01em;
}
nav a:hover { color: var(--green); }

/* ═══════════════════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════════════════════ */
main { min-height: 100vh; }

.view {
  display: none;
  min-height: 100vh;
  padding: 108px clamp(18px, 5vw, 72px) 72px;
}
.view.active { display: block; }

/* ═══════════════════════════════════════════════════════════
   HERO / LANDING
══════════════════════════════════════════════════════════════ */
.landing-view {
  position: relative;
  overflow: hidden;
  display: none;
  padding-top: 0;
}

.landing-view.active {
  display: grid;
  align-items: end;
  min-height: 100svh;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(7,22,14,.86) 0%, rgba(10,36,22,.64) 42%, rgba(7,18,12,.44) 100%),
    url("./assets/form-six-hero.jpg");
  background-size: cover;
  background-position: center top;
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 42vh;
  background: linear-gradient(transparent, #edf7f2);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  padding: 148px 0 14vh;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   EYEBROW
══════════════════════════════════════════════════════════════ */
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(24, 149, 90, 0.22);
  border: 1px solid rgba(24, 149, 90, 0.44);
  color: rgba(130, 230, 175, .96);
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-content .hero-copy { color: rgba(255,255,255,.86); }

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════════════════════ */
h1, h2, h3 {
  margin: 0;
  letter-spacing: -.025em;
  line-height: 1.07;
}

h1 {
  max-width: 820px;
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 900;
}

h2 { font-size: clamp(28px, 3.6vw, 50px); font-weight: 800; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 700; }

p { line-height: 1.7; margin-top: 0; }

.hero-copy {
  max-width: 680px;
  margin: 22px 0 38px;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 400;
  line-height: 1.68;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.primary-action,
.secondary-action,
.light-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--r-md);
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform .16s cubic-bezier(.34,1.56,.64,1), box-shadow .18s ease, background .18s ease;
  letter-spacing: .005em;
}

.primary-action {
  background: linear-gradient(140deg, #21c974 0%, #0d7a45 100%);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.primary-action:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 32px rgba(24,149,90,.42), 0 4px 12px rgba(24,149,90,.22);
}
.primary-action:active {
  transform: translateY(0) scale(0.98);
  box-shadow: var(--shadow-green);
}

.secondary-action {
  width: 100%;
  margin-top: 10px;
  border: 1.5px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--ink-2);
  font-weight: 600;
  box-shadow: var(--shadow-xs), var(--glass-inset);
}
.secondary-action:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(24,149,90,0.06);
  transform: translateY(-1px);
}

.light-action {
  border: 1.5px solid rgba(255,255,255,.52);
  background: rgba(255,255,255,.16);
  color: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.light-action:hover {
  background: rgba(255,255,255,.26);
  transform: translateY(-1px);
}

.role-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ═══════════════════════════════════════════════════════════
   BONUS STRIP
══════════════════════════════════════════════════════════════ */
.bonus-strip,
.bonus-grid {
  display: grid;
  gap: 10px;
}

.bonus-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(820px, 100%);
  margin-top: 32px;
}

.bonus-strip span,
.bonus-grid span {
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.94);
  font-weight: 700;
  font-size: 13px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEAD
══════════════════════════════════════════════════════════════ */
.section-head {
  width: min(900px, 100%);
  margin: 0 auto 32px;
}

.section-head p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.assessment-form {
  width: min(980px, 100%);
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   GLASS CARDS
══════════════════════════════════════════════════════════════ */
.form-panel,
.question,
.offer-panel,
.report-grid article,
.wait-panel,
.score-panel {
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  background: var(--glass-bg);
  box-shadow: var(--shadow-md), var(--glass-inset);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.form-panel,
.question {
  margin: 0 0 16px;
  padding: 28px;
}

/* ═══════════════════════════════════════════════════════════
   PROGRESS
══════════════════════════════════════════════════════════════ */
.progress-card {
  position: sticky;
  z-index: 8;
  top: 88px;
  margin: 0 0 18px;
  padding: 16px 20px;
  border: 1px solid rgba(24, 149, 90, .18);
  border-radius: var(--r-md);
  background: var(--glass-bg-dense);
  box-shadow: var(--shadow-md), var(--glass-inset);
  backdrop-filter: var(--glass-blur-lg);
  -webkit-backdrop-filter: var(--glass-blur-lg);
}

.progress-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

#progressLabel { color: var(--ink); font-weight: 800; font-size: 14px; }

#progressEncouragement {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}

.progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(198, 217, 194, .5);
}

#progressFill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 100%);
  transition: width 260ms cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 0 10px rgba(24, 149, 90, .35);
}

legend { padding: 0 8px; font-weight: 700; font-size: 15px; }

/* ── Lead field grid: 2-column ── */
.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lead-field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#regionField {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

input,
select {
  min-height: 50px;
  width: 100%;
  border: 1.5px solid rgba(198, 217, 194, .65);
  border-radius: var(--r-sm);
  padding: 0 16px;
  color: var(--ink);
  background: rgba(255,255,255,0.78);
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
input:focus,
select:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(255,255,255,0.96);
  box-shadow:
    0 0 0 4px rgba(24, 149, 90, .10),
    0 0 0 1.5px rgba(24, 149, 90, .30);
}

.question legend { max-width: 100%; font-size: 18px; font-weight: 700; }

.question-count {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(24,149,90,0.10);
  border: 1px solid rgba(24,149,90,0.18);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

/* ── Option grid with glass + selected state ── */
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.option-grid label {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid rgba(198,217,194,0.55);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.60);
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .14s, background .14s, box-shadow .14s, transform .12s cubic-bezier(.34,1.56,.64,1);
  box-shadow: var(--glass-inset);
}
.option-grid label:hover {
  border-color: rgba(24,149,90,0.42);
  background: rgba(24,149,90,0.07);
  box-shadow: var(--shadow-xs), var(--glass-inset);
  transform: translateY(-1px);
}
.option-grid label:active {
  transform: scale(0.97);
}
.option-grid label:has(input:checked) {
  border-color: var(--green);
  background: rgba(24,149,90,0.10);
  box-shadow: 0 4px 20px rgba(24,149,90,0.14), var(--glass-inset);
  color: var(--green-dark);
  font-weight: 700;
}

.option-grid input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--green);
  flex-shrink: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 32px;
}

#formStatus { min-height: 28px; margin: 0; color: var(--muted); font-size: 14px; }

/* ═══════════════════════════════════════════════════════════
   WAIT
══════════════════════════════════════════════════════════════ */
.wait-view { display: none; place-items: center; }
.wait-view.active { display: grid; }

.wait-panel {
  width: min(680px, 100%);
  padding: clamp(32px, 5vw, 60px);
  text-align: center;
  border-radius: var(--r-xl);
}

.spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 28px;
  border: 3.5px solid rgba(24,149,90,.14);
  border-top-color: var(--green);
  border-right-color: rgba(24,149,90,.42);
  border-radius: 999px;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════
   OFFER / SALES
══════════════════════════════════════════════════════════════ */
.offer-hero,
.sales-grid,
.results-shell {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.offer-hero { margin-bottom: 36px; }
.offer-hero p:last-child {
  max-width: 780px;
  color: var(--muted);
  font-size: 19px;
}

.sales-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 30px;
  align-items: start;
}

.sales-copy > p { max-width: 720px; color: var(--muted); font-size: 18px; }

.copy-section,
.guarantee-band,
.bonus-section,
.aida-grid article {
  margin-top: 22px;
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  background: var(--glass-bg);
  padding: 28px;
  box-shadow: var(--shadow-sm), var(--glass-inset);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.copy-section p,
.guarantee-band p,
.aida-grid p,
.bonus-section p,
.payment-note,
.track-list p,
.route-text {
  color: var(--muted);
}

.steps-list {
  display: grid;
  gap: 16px;
  margin: 18px 0 0;
  padding-left: 22px;
}
.steps-list li { line-height: 1.65; }

.guarantee-band {
  border-color: rgba(24, 149, 90, .22);
  background: rgba(241, 251, 245, 0.78);
}

.bonus-section .eyebrow { color: var(--green); }

.bonus-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}
.bonus-grid span {
  border-color: rgba(198,217,194,.55);
  background: rgba(255,255,255,.65);
  color: var(--ink);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.aida-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.aida-grid article { margin-top: 0; }

.offer-front-image,
.summer-front-image {
  margin: 0;
}
.offer-front-image img,
.summer-front-image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}

.video-frame {
  display: grid;
  min-height: 390px;
  place-items: center;
  margin-top: 26px;
  border-radius: var(--r-md);
  background:
    linear-gradient(rgba(15,23,21,.36), rgba(15,23,21,.56)),
    radial-gradient(circle at 22% 18%, rgba(240,180,41,.45), transparent 26%),
    linear-gradient(135deg, #173b31, #1f5f8b 62%, #11251f);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.video-frame button {
  min-width: 74px;
  height: 74px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  box-shadow: var(--shadow-md);
}
.video-frame span {
  align-self: start;
  margin-top: -130px;
  color: rgba(255,255,255,.82);
  font-weight: 900;
}

/* ── Offer panel — premium glass ── */
.offer-panel {
  padding: 28px;
  position: sticky;
  top: 96px;
  border-radius: var(--r-xl);
  background: var(--glass-bg-dense);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 24px 64px rgba(11,25,18,0.10),
    0 8px 24px rgba(11,25,18,0.06),
    var(--glass-inset);
  backdrop-filter: var(--glass-blur-lg);
  -webkit-backdrop-filter: var(--glass-blur-lg);
}

.offer-panel p { color: var(--muted); }

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}
.check-list li,
.report-grid li {
  position: relative;
  padding-left: 26px;
  line-height: 1.55;
  font-size: 15px;
}

.view.active .check-list li::before,
.view.active .strengths-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}
.view.active .weakness-card li::before {
  position: absolute;
  left: 0;
  color: var(--rose);
  content: "!";
  font-weight: 900;
}

.price {
  margin: 22px 0 10px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--ink);
}
.payment-note { margin-top: 2px; font-size: 14px; line-height: 1.55; }

.track-list {
  margin: 20px 0 0;
  padding: 18px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(198,217,194,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.track-list h4 { margin: 0 0 10px; font-size: 15px; }
.track-list p { margin: 6px 0; font-size: 14px; }

.link-action { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   RESULTS
══════════════════════════════════════════════════════════════ */
.results-shell { display: grid; gap: 24px; }

.score-panel {
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--r-xl);
}

.score-number {
  margin-top: 18px;
  background: linear-gradient(135deg, var(--green) 0%, #0d7a45 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
}

.category { color: var(--muted); font-size: 19px; font-weight: 700; }
.route-text { margin-bottom: 0; font-weight: 700; }

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.report-grid article { padding: 28px; border-radius: var(--r-md); }
.report-grid ul { display: grid; gap: 12px; padding: 0; margin: 16px 0 0; list-style: none; }

.recommendation p { color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS — vertical 2-column grid, natural proportions
══════════════════════════════════════════════════════════════ */
.testimonials-section {
  width: min(1200px, 100%);
  margin: 60px auto 0;
}

.testimonials-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  letter-spacing: -.025em;
}

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

.testimonial-item {
  margin: 0;
  width: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.testimonial-image {
  width: 100%;
  background: var(--surface);
}

.testimonial-video {
  width: 100%;
}

.testimonial-item img {
  display: block;
  width: 100%;
  height: auto;
}

.testimonial-item video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — tablet (≤860 px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 14px 18px;
  }
  nav { width: 100%; overflow-x: auto; }

  .view { padding-top: 140px; }
  .progress-card { top: 130px; }

  /* ── HERO FIX: headline is the first thing seen on mobile ── */
  .landing-view { padding-top: 0; }
  .landing-view.active { align-items: start; }
  .hero-content { padding-top: 110px; padding-bottom: 52px; }

  .field-grid,
  .sales-grid,
  .report-grid,
  .bonus-strip,
  .bonus-grid,
  .aida-grid {
    grid-template-columns: 1fr;
  }

  /* Keep lead-field-grid 2-col until mobile breakpoint */
  .lead-field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

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

  .offer-panel { position: static; }
  .video-frame { min-height: 260px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — mobile (≤540 px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 540px) {
  .topbar { padding: 12px 16px; }

  .view {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Keep landing-view full-bleed and fix padding */
  .landing-view { padding-left: 0; padding-right: 0; }
  .hero-content { padding-top: 96px; padding-bottom: 40px; }

  h1 { font-size: 36px; }

  .bonus-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .lead-field-grid { grid-template-columns: 1fr; }
  #regionField { grid-column: auto; }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .progress-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  #progressEncouragement { text-align: left; }
  .form-actions .primary-action { width: 100%; }
}
