/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0d1e38;
  --blue:        #1a68b2;
  --blue-dark:   #134f89;
  --blue-light:  #3382cb;
  --blue-pale:   #eaf2fb;
  --off-white:   #f3f7fd;
  --white:       #ffffff;
  --text:        #0d1e38;
  --text-mid:    #435574;
  --text-light:  #7a93b0;
  --border:      #cad5e5;
  --silver:      #8a9db8;
  --font-serif:  'Georgia', 'Times New Roman', serif;
  --font-sans:   'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(13,30,56,0.06);
}
.header-logo img { height: 46px; width: auto; display: block; }
.header-cta {
  display: inline-block;
  padding: 10px 26px;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.header-cta:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ===== HERO ===== */
.hero {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: auto;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.hero__left {
  padding: 120px 56px 120px 80px;
  border-right: 1px solid var(--border);
}
.hero__right { padding: 120px 80px 120px 56px; background: var(--off-white); }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  color: var(--navy);
  line-height: 1.18;
  font-weight: normal;
  margin-bottom: 24px;
}
.hero__headline em { font-style: italic; color: var(--blue); }

.hero__sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 440px;
}

.btn-primary {
  display: inline-block;
  padding: 15px 34px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: var(--font-sans);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ===== VSL ===== */
.vsl-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.vsl-container iframe, .vsl-container video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
.vsl-placeholder {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: #0c1422;
  border: 1px solid rgba(26,104,178,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 16px;
}
.vsl-placeholder__play {
  width: 64px; height: 64px;
  border: 1px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.vsl-placeholder__play:hover { background: rgba(26,104,178,0.18); }
.vsl-placeholder__play svg { width: 20px; height: 20px; fill: var(--blue); margin-left: 3px; }
.vsl-placeholder__label {
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.hero__video-caption {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-bar__inner { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 900px; margin: 0 auto; }
.stat-item {
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: normal;
}
.stat-item__number span { color: var(--blue-light); }
.stat-item__label {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
  line-height: 1.5;
}

/* ===== PAIN SECTION ===== */
.pain-section { background: var(--white); padding: 48px 0 96px; }
.pain-section__header {
  margin-bottom: 0;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  padding-left: 88px;
  padding-right: 48px;
}
.pain-section__intro {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.85;
  padding-top: 8px;
}
.pain-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  padding: 32px 48px 32px 0;
  border-bottom: 1px solid var(--border);
}
.pain-item:first-child { border-top: none; }
.pain-item__number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--border);
  line-height: 1;
  padding-top: 2px;
  font-weight: normal;
  user-select: none;
}
.pain-item__title {
  font-family: var(--font-serif);
  font-size: 1.38rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: normal;
}
.pain-item__text { font-size: 0.93rem; color: var(--text-mid); line-height: 1.85; }
.pain-item__solution {
  font-size: 0.9rem;
  color: var(--blue);
  line-height: 1.75;
  margin-top: 10px;
}

/* ===== BENEFITS ===== */
.benefits-section { background: var(--off-white); padding: 96px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.benefits-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 96px;
  align-items: start;
}
.benefits-left { position: sticky; top: 96px; }
.benefits-left .section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.5vw, 3.1rem);
  font-weight: normal;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}
.benefits-left__text { font-size: 0.93rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 32px; }

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.benefit-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
}
.benefit-row:first-child { border-top: 1px solid var(--border); }
.benefit-row__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.benefit-row__title { font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; font-weight: normal; }
.benefit-row__text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

/* ===== TIERS ===== */
.tiers-section { background: var(--navy); padding: 96px 0; }
.tiers-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tiers-header .eyebrow { color: var(--blue-light); }
.tiers-header .eyebrow::before { background: var(--blue-light); }
.tiers-header .section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.5vw, 3.1rem);
  color: var(--white);
  font-weight: normal;
  line-height: 1.2;
}
.tiers-header__text { font-size: 0.93rem; color: rgba(255,255,255,0.5); line-height: 1.85; align-self: end; }
.tiers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  /* 5 shared row tracks: level | title | subtitle+divider | features | button */
  grid-template-rows: auto auto auto auto auto;
}
.tier-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  padding: 48px 44px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.35);
  /* Subgrid: each card spans all 5 shared row tracks */
  grid-row: span 5;
  display: grid;
  grid-template-rows: subgrid;
}
.tier-card--featured {
  background: var(--white);
  border: 1px solid var(--blue);
  border-top: 3px solid var(--blue);
  position: relative;
}
.tier-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0; right: 28px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
}
.tier-card__level { font-size: 0.68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; }
.tier-card__title { font-family: var(--font-serif); font-size: 1.6rem; color: var(--navy); font-weight: normal; margin-bottom: 8px; }
.tier-card__for {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  /* stretch fills the shared row so both cards' divider line sits at the same height */
  align-self: stretch;
  display: flex;
  align-items: flex-start;
}
.tier-card__features { list-style: none; padding-top: 32px; align-self: start; }
.tier-card__features li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 14px;
  line-height: 1.5;
  min-height: 48px;
  align-items: center;
}
.tier-card__features li::before { content: '—'; color: var(--blue); flex-shrink: 0; }
.tier-card .btn-primary { background: var(--blue); color: var(--white); text-align: center; display: block; text-decoration: none; margin-top: 36px; align-self: stretch; }
.tier-card .btn-primary:hover { background: var(--blue-dark); }

/* ===== TESTIMONIALS ===== */
.proof-section { background: var(--white); padding: 96px 0; border-top: 1px solid var(--border); }
.proof-header { margin-bottom: 56px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.proof-header .section-headline { font-family: var(--font-serif); font-size: clamp(2.1rem, 3.5vw, 3.1rem); font-weight: normal; line-height: 1.2; color: var(--navy); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.testimonial-card { background: var(--white); padding: 44px 40px; }
.testimonial-card__open-quote { font-family: var(--font-serif); font-size: 3.5rem; color: var(--blue); line-height: 0.8; margin-bottom: 20px; display: block; opacity: 0.4; }
.testimonial-card__text { font-size: 0.93rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 28px; font-style: italic; }
.testimonial-card__rule { width: 28px; height: 1px; background: var(--blue); margin-bottom: 16px; }
.testimonial-card__author { font-size: 0.83rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; letter-spacing: 0.3px; }
.testimonial-card__role { font-size: 0.75rem; color: var(--text-light); }

/* ===== CTA / FORM ===== */
.cta-section {
  background: var(--off-white);
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: start;
}

/* Left content column */
.cta-content { padding-top: 4px; }
.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.5vw, 3.1rem);
  color: var(--navy);
  font-weight: normal;
  line-height: 1.18;
  margin-bottom: 18px;
}
.cta-lead {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.75;
  margin-top: 28px;
  margin-bottom: 40px;
  font-weight: 500;
}
.cta-body {
  font-size: 0.91rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 36px;
}
.cta-benefits { list-style: none; margin-bottom: 36px; }
.cta-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 0.91rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.55;
}
.cta-benefits li:last-child { margin-bottom: 0; }
.benefit-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.benefit-check svg { width: 10px; height: 10px; stroke: #fff; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.qualify-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.4;
  margin-top: 40px;
}
.qualify-badge svg { color: #c49a3c; flex-shrink: 0; }

/* Right form column */
.cta-form-col { position: sticky; top: 88px; }
.form-card {
  background: var(--navy);
  border-top: 3px solid var(--blue-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid var(--blue-light);
  padding: 56px 40px 40px;
  box-shadow: 0 16px 64px rgba(13,30,56,0.22);
}
.form-card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--white);
  font-weight: normal;
  margin-bottom: 10px;
}
.form-card__sub {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 7px;
}
.form-group label span { color: var(--blue-light); }
.form-group input {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.92rem;
  font-family: var(--font-sans);
  color: var(--navy);
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}
.form-group input:focus { outline: none; border-color: var(--blue-light); }
.form-group input::placeholder { color: transparent; }
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--blue-light); }
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.form-trust-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.form-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.2px;
  line-height: 1.3;
}
.form-trust-item svg { color: var(--blue-light); flex-shrink: 0; }
.form-error { background: rgba(220,38,38,0.15); border: 1px solid rgba(220,38,38,0.4); color: #fca5a5; padding: 11px 13px; font-size: 0.84rem; margin-bottom: 14px; display: none; }
.form-error.visible { display: block; }

/* ===== WHO THIS IS FOR ===== */
.who-section { background: var(--white); padding: 96px 0; border-top: 1px solid var(--border); }
.who-header {
  margin-bottom: 40px;
}
.who-headline {
  font-family: 'Georgia', serif;
  font-size: clamp(2.1rem, 3.5vw, 3.1rem);
  font-weight: normal;
  color: var(--navy);
  line-height: 1.15;
  margin-top: 12px;
}
.who-callout {
  background: var(--off-white);
  border-left: 3px solid var(--blue);
  padding: 22px 24px;
  margin-top: 40px;
}
.who-callout__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}
.who-callout__label svg { color: var(--blue); flex-shrink: 0; }
.who-callout__text { font-size: 0.83rem; color: var(--text-mid); line-height: 1.75; }
.who-list { list-style: none; }
.who-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.who-item:first-child { border-top: 1px solid var(--border); }
.who-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: var(--blue);
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--white);
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.faq-header {
  margin-bottom: 48px;
  text-align: center;
}
.faq-headline {
  font-family: 'Georgia', serif;
  font-size: clamp(2.1rem, 3.5vw, 3.1rem);
  font-weight: normal;
  color: var(--navy);
  line-height: 1.15;
  margin-top: 12px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 0 24px;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--navy);
  gap: 20px;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: transform 0.22s ease, border-color 0.15s, color 0.15s, background 0.15s;
}
.faq-card.is-open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--blue);
  background: var(--blue-pale);
  color: var(--blue);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.faq-answer__inner { overflow: hidden; }
.faq-card.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer__inner p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.85;
  padding-bottom: 20px;
  padding-right: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ===== MINI CTA ===== */
.mini-cta-section { background: var(--navy); padding: 88px 0; }
.mini-cta__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.mini-cta__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.5vw, 3.1rem);
  color: var(--white);
  font-weight: normal;
  line-height: 1.25;
  margin-bottom: 20px;
}
.mini-cta__sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.85;
  margin-bottom: 36px;
}
.mini-cta__btn { display: inline-block; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 40px 48px; border-top: 3px solid var(--blue); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__logo img { height: 38px; width: auto; }
.footer__links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer__links a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.5px; transition: color 0.2s; }
.footer__links a:hover { color: var(--blue-light); }
.footer__copy { color: rgba(255,255,255,0.22); font-size: 0.7rem; }

/* ===== SPINNER ===== */
.spinner { display: inline-block; width: 13px; height: 13px; border: 2px solid rgba(255,255,255,0.35); border-top-color: white; border-radius: 50%; animation: spin 0.7s linear infinite; vertical-align: middle; margin-right: 8px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 56px 32px; border-right: none; border-bottom: 1px solid var(--border); }
  .hero__right { padding: 40px 32px 56px; }
  .pain-section { padding: 40px 0 72px; }
  .pain-section__header { text-align: left; padding-left: 0; padding-right: 0; margin-bottom: 0; }
  .benefits-inner { grid-template-columns: 1fr; gap: 48px; }
  .benefits-left { position: static; }
  .tiers-header { grid-template-columns: 1fr; gap: 20px; }
  .faq-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .tier-card { grid-row: auto; display: flex; flex-direction: column; }
  .tier-card__for { align-self: auto; margin-bottom: 32px; }
  .tier-card__features { padding-top: 0; flex: 1; margin-bottom: 36px; align-self: auto; }
  .tier-card .btn-primary { margin-top: 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-form-col { position: static; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 28px; }
  .site-header { padding: 0 28px; }
  .footer { padding: 36px 28px; }
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
  .pain-item { grid-template-columns: 48px 1fr; gap: 20px; }
  .pain-item__number { font-size: 2rem; }
  .stats-bar__inner { grid-template-columns: 1fr; }

  /* Explicit phone padding — ~10% above pre-minimum values */
  .container { padding: 0 32px; }
  .site-header { padding: 0 32px; }
  .footer { padding: 36px 32px; }
  .hero__left { padding: 48px 36px; }
  .hero__right { padding: 32px 36px 48px; }
  .stat-item { padding: 40px 24px; }

  /* Hero headline — bigger on phone */
  .hero__headline { font-size: 2.8rem; line-height: 1.1; }

  /* Pain header — add left indent back on phone */
  .pain-section__header { padding-left: 20px; }

  /* Benefits — more left/right padding */
  .benefits-inner { padding: 0 16px; }

  /* Who This Is For — reduce top padding, more left padding */
  .who-section { padding: 48px 0 72px; }
  .who-section .container { padding-left: 44px; }

  /* Tiers (dark blue section) — more left/right padding */
  .tiers-section .container { padding: 0 44px; }
}
