:root {
  --bg: #f3efe8;
  --surface: #ffffff;
  --surface-muted: #f8f6f3;
  --ink: #1a1a2e;
  --ink-soft: #555b6f;
  --navy-900: #0d1b2a;
  --navy-800: #162d44;
  --navy-700: #1a3a5c;
  --navy-100: #edf2f8;
  --gold: #c9a84c;
  --gold-soft: #e8d48b;
  --green: #28a745;
  --green-700: #218838;
  --red: #dc3545;
  --yellow: #ffc107;
  --line: #e6ddd2;
  --shadow-card: 0 10px 32px rgba(13, 27, 42, 0.08);
  --shadow-sticky: 0 -8px 28px rgba(0, 0, 0, 0.12);
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #070e16;
}

body {
  margin: 0 auto;
  max-width: 430px;
  font-family: "Inter", sans-serif;
  background: #070e16;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  min-height: 100vh;
}

main,
.footer,
.m-nav,
.m-sticky-bottom {
  width: 100%;
}

main {
  background: #ffffff;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

/* ── ADVERTISEMENT BANNER (NJ compliance) ── */
.m-ad-banner {
  background: #ffffff;
  text-align: center;
  padding: 14px 16px;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #1a1a2e;
  border-bottom: 2px solid rgba(13, 27, 42, 0.75);
}

.m-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.m-nav-logo {
  display: flex;
  align-items: center;
}

.m-nav-logo-image {
  display: block;
  width: 132px;
  height: auto;
}

.m-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
}

.m-nav-call-icon {
  font-size: 13px;
}

.m-hero {
  background: linear-gradient(170deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  padding: 24px 16px 28px;
  color: #fff;
}

.m-attorney-note {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d2dae5;
  font-size: 10.5px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.55;
}

.m-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.25);
  color: #ff8b97;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.m-hero-dot {
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.m-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px;
}

.m-hero-sub {
  margin: 0 0 20px;
  font-size: 14px;
  color: #c0c9d2;
  line-height: 1.6;
}

.m-facts-title {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #d6e0eb;
}

.m-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.m-fact {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px;
  min-width: 0;
}

.m-fact-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.m-fact-label {
  font-size: 7px;
  color: #8ea3b9;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.m-fact-value {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.m-fact > div:last-child {
  min-width: 0;
}

.m-fact-value.blue {
  color: #6db3f2;
}

.m-warning {
  background: var(--yellow);
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.m-warning-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.m-warning-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}

.m-warning-text span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 500;
  color: #4a3f00;
}

.m-form-section,
.m-next,
.m-faq {
  padding: 24px 16px 0;
  background: #fff;
}

.m-map-section,
.m-proof {
  padding: 28px 16px 0;
  background: var(--surface-muted);
}

.m-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid #e8e4df;
}

.m-form-header {
  background: linear-gradient(135deg, var(--red), #c82333);
  padding: 16px;
  text-align: center;
  color: #fff;
}

.m-form-h {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 800;
}

.m-form-hsub {
  margin-top: 3px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

.m-form-body {
  padding: 18px 16px;
}

.m-vp-row,
.m-confirmed-row,
.m-proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.m-vp {
  background: var(--surface-muted);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
  border: 1px solid #f0ece7;
}

.m-vp-icon {
  font-size: 20px;
  margin-bottom: 3px;
}

.m-vp-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.m-vp-micro {
  font-size: 8px;
  color: #999;
  margin-top: 2px;
}

.m-confirmed-row {
  margin-top: 10px;
  margin-bottom: 10px;
}

.m-confirmed {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px;
  background: #edf7ed;
  border: 1.5px solid #c3e6c3;
  border-radius: 7px;
}

.m-c-check {
  color: var(--green);
  font-size: 13px;
  flex-shrink: 0;
}

.m-c-label {
  font-size: 7px;
  color: #6b9e6b;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.m-c-value {
  font-size: 12px;
  font-weight: 600;
  color: #2d6a2d;
  line-height: 1.35;
}

.m-field {
  margin-bottom: 10px;
}

.m-label {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #555;
}

.m-input {
  width: 100%;
  padding: 12px;
  border: 1.5px solid #e0dcd7;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  background: #fafaf8;
  -webkit-appearance: none;
  appearance: none;
}

.m-input:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

.m-input::placeholder {
  color: #bbb;
}

.m-injury {
  background: #fff8f0;
  border: 1.5px solid #ffe0b2;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}

.m-injury-label {
  font-size: 11px;
  font-weight: 700;
  color: #e65100;
  margin-bottom: 8px;
}

.m-injury-opts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.m-injury-opt {
  padding: 10px 6px;
  background: #fff;
  border: 1.5px solid #e0dcd7;
  border-radius: 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
}

.m-injury-opt.selected {
  border-color: #e65100;
  color: #fff;
  background: #e65100;
}

.m-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-700));
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
  -webkit-appearance: none;
  appearance: none;
}

.m-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.m-submit-sub {
  display: block;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 3px;
  text-transform: none;
  letter-spacing: 0;
}

.m-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 2px 0 12px;
  padding: 12px;
  border-radius: 10px;
  background: #fffdf8;
  border: 1px solid #dcc88e;
  color: var(--ink);
}

.m-consent-box {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.m-consent-copy {
  font-size: 11px;
  line-height: 1.7;
  color: #3e4654;
}

.m-consent-copy a {
  color: var(--navy-800);
  font-weight: 700;
  text-decoration: none;
}

.m-submit-disclaimer {
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.55;
  color: #6e6b67;
  text-align: center;
}

.m-form-status {
  margin: 12px 0 0;
  padding: 12px;
  border-radius: 8px;
  background: #edf7ed;
  border: 1px solid #c3e6c3;
  color: #2d6a2d;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}

.m-bonus {
  background: #f0faf0;
  border: 1px dashed #a8d5a8;
  border-radius: 8px;
  padding: 12px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.m-bonus-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.m-bonus-text {
  font-size: 11px;
  color: #2d6a2d;
  font-weight: 600;
  line-height: 1.4;
}

.m-bonus-text span {
  display: block;
  margin-top: 2px;
  font-weight: 400;
  color: #555;
  font-size: 10px;
}

.m-trust-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0ece7;
  flex-wrap: wrap;
}

.m-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  color: #999;
}

.m-trust-icon {
  font-size: 11px;
}

.m-map-h2,
.m-next-h2,
.m-proof-h2,
.m-faq-h2,
.m-final h2 {
  font-family: "Playfair Display", serif;
  color: var(--ink);
}

.m-map-h2,
.m-next-h2 {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 11px;
}

.m-map-sub {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin: 0 0 18px;
  line-height: 1.55;
}

.m-map-frame-wrap {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  box-shadow: 0 8px 18px rgba(13, 27, 42, 0.08);
  background: #dde4ec;
  margin-bottom: 14px;
}

.m-map-frame-wrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.m-weather-card {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-radius: 10px;
  padding: 16px;
  color: #fff;
  margin-bottom: 14px;
}

.mwc-label {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.mwc-condition {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 800;
  color: #6db3f2;
  margin-bottom: 6px;
}

.mwc-detail {
  font-size: 11px;
  color: #c0c9d2;
  line-height: 1.55;
}

.m-cta-card {
  background: var(--red);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  color: #fff;
}

.m-cta-text {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

.m-cta-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: #fff;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
}

.m-step {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f0ece7;
  align-items: flex-start;
}

.m-step:last-child {
  border-bottom: none;
}

.m-step-num {
  width: 36px;
  height: 36px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.m-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.m-step-featured {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.m-step-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
}

.m-step-time {
  font-size: 9px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.m-proof-stats {
  margin-bottom: 24px;
}

.m-help-intro {
  margin-bottom: 22px;
}

.m-proof-h2-left {
  text-align: left;
  margin-bottom: 14px;
}

.m-help-grid {
  display: grid;
  gap: 10px;
}

.m-help-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f2e7ba, #d6b85c);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.08);
}

.m-help-card span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(13, 27, 42, 0.08);
  font-size: 14px;
  flex-shrink: 0;
}

.m-proof-stat,
.m-testimonial,
.m-faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.m-proof-stat {
  padding: 16px;
  text-align: center;
}

.mps-num {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
}

.mps-label {
  font-size: 9px;
  color: #888;
  margin-top: 2px;
}

.m-proof-h2,
.m-faq-h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 16px;
}

.m-results-section {
  margin-top: 30px;
}

.m-result-card {
  padding: 22px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(201, 168, 76, 0.45);
  box-shadow: 0 10px 26px rgba(13, 27, 42, 0.08);
}

.m-result-card-featured {
  background: #fff;
  color: var(--ink);
}

.m-result-amount {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
}

.m-result-card:not(.m-result-card-featured) .m-result-amount {
  color: var(--ink);
}

.m-result-card-featured .m-result-amount {
  color: var(--ink);
}

.m-result-type {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 27, 42, 0.12);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-800);
}

.m-result-card-featured .m-result-type {
  color: var(--navy-800);
  border-top-color: rgba(13, 27, 42, 0.12);
}

.m-result-desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: #5d6472;
}

.m-result-card-featured .m-result-desc {
  color: #5d6472;
}

.m-testimonial {
  padding: 18px;
  margin-bottom: 12px;
}

.mt-stars {
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.mt-quote {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 10px;
}

.mt-author {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}

.mt-result {
  font-size: 10px;
  color: var(--green);
  font-weight: 700;
  margin-top: 2px;
}

.mt-meta {
  font-size: 9px;
  color: #aaa;
  margin-top: 2px;
}

.m-faq-item {
  padding: 14px;
  margin-bottom: 8px;
}

.m-faq-q {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}

.m-faq-a {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

.m-final {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  padding: 32px 16px;
  text-align: center;
  color: #fff;
  margin-top: 28px;
}

.m-final h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.2;
  color: #fff;
}

.m-final p {
  font-size: 13px;
  color: #c0c9d2;
  margin: 0 0 20px;
  line-height: 1.55;
}

.m-final-btn-green,
.m-final-btn-outline {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
}

.m-final-btn-green {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.m-final-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  margin-bottom: 16px;
}

.m-final-phone {
  font-family: "JetBrains Mono", monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

.m-final-phone-sub {
  font-size: 9px;
  color: #8ea3b9;
  margin-top: 4px;
}

.m-error-card {
  margin: 24px 16px 0;
  padding: 18px 16px;
  background: #fff1f2;
  border: 1px solid rgba(220, 53, 69, 0.18);
  border-radius: 12px;
  color: #8a1c28;
}

.m-error-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 53, 69, 0.1);
  font-weight: 800;
  margin-bottom: 8px;
}

.m-error-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.m-error-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.footer {
  background: #070e16;
  padding: 18px 16px calc(96px + env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-size: 9px;
  color: #334;
  line-height: 1.6;
}

.footer__logo {
  display: block;
  height: 20px;
  width: auto;
  margin: 0 auto 10px;
  opacity: 0.75;
}

.footer__copy {
  color: #6c7787;
  font-size: 10px;
}

.footer__disc {
  color: #475061;
  margin: 8px auto 0;
  font-size: 9px;
  max-width: 320px;
}

.footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer__links a {
  color: #8893a5;
  text-decoration: none;
}

.m-sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: min(100%, 430px);
  max-width: 430px;
  background: rgba(255, 255, 255, 0.98);
  padding: 12px 14px calc(14px + env(safe-area-inset-bottom, 0px));
  box-shadow: var(--shadow-sticky);
  display: flex;
  gap: 10px;
  z-index: 99;
  border-top: 1px solid #eee;
  backdrop-filter: blur(10px);
}

.msb-call,
.msb-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  min-height: 54px;
  padding: 12px;
}

.msb-call {
  flex: 1;
  background: #fff;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.msb-form {
  flex: 1.4;
  background: var(--green);
  color: #fff;
  border: none;
}

@media (max-width: 360px) {
  .m-ad-banner {
    font-size: 32px;
    padding: 12px 12px;
    letter-spacing: 2px;
  }

  .m-nav {
    padding-left: 12px;
    padding-right: 12px;
  }

  .m-nav-logo-image {
    width: 118px;
  }

  .m-nav-call {
    padding: 8px 10px;
    font-size: 10px;
  }

  .m-hero h1 {
    font-size: 25px;
  }

  .m-facts,
  .m-vp-row,
  .m-confirmed-row,
  .m-proof-stats {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .m-ad-banner {
    font-size: 72px;
    padding: 20px 32px;
    letter-spacing: 5px;
  }

  body {
    width: 100%;
    max-width: none;
    background: #fff;
  }

  .m-nav,
  main,
  .footer {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .m-nav {
    padding: 16px 28px;
  }

  .m-nav-logo-image {
    width: 180px;
  }

  .m-nav-call {
    gap: 8px;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
  }

  .m-nav-call-icon {
    font-size: 16px;
  }

  main {
    background: #fff;
    box-shadow: none;
  }

  .m-hero,
  .m-warning,
  .m-form-section,
  .m-map-section,
  .m-next,
  .m-proof,
  .m-faq,
  .m-final {
    padding-left: 32px;
    padding-right: 32px;
  }

  .m-hero {
    padding-top: 40px;
    padding-bottom: 38px;
  }

  .m-attorney-note {
    max-width: 880px;
    font-size: 12px;
  }

  .m-hero-tag {
    font-size: 10px;
    padding: 7px 12px;
  }

  .m-hero h1 {
    max-width: 920px;
    font-size: 54px;
  }

  .m-hero-sub {
    max-width: 820px;
    font-size: 19px;
  }

  .m-facts-title {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .m-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .m-fact {
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
  }

  .m-fact-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 18px;
  }

  .m-fact-label {
    font-size: 9px;
  }

  .m-fact-value {
    font-size: 18px;
  }

  .m-warning {
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .m-warning-icon {
    font-size: 22px;
  }

  .m-warning-text {
    font-size: 18px;
  }

  .m-warning-text span {
    font-size: 15px;
  }

  .m-form-section,
  .m-next,
  .m-map-section,
  .m-proof,
  .m-faq {
    padding-top: 34px;
  }

  .m-form-card {
    max-width: 900px;
    margin: 0 auto;
  }

  .m-form-header {
    padding: 24px;
  }

  .m-form-h {
    font-size: 32px;
  }

  .m-form-hsub {
    margin-top: 8px;
    font-size: 15px;
  }

  .m-form-body {
    padding: 28px;
  }

  .m-vp-row,
  .m-confirmed-row {
    gap: 12px;
  }

  .m-vp {
    padding: 18px 16px;
  }

  .m-vp-icon {
    margin-bottom: 8px;
    font-size: 28px;
  }

  .m-vp-text {
    font-size: 15px;
  }

  .m-vp-micro {
    font-size: 11px;
  }

  .m-c-label {
    font-size: 9px;
  }

  .m-c-value {
    font-size: 16px;
  }

  .m-label {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .m-input {
    padding: 14px 16px;
    font-size: 17px;
  }

  .m-injury-label {
    font-size: 14px;
  }

  .m-injury-opt {
    padding: 12px 10px;
    font-size: 14px;
  }

  .m-consent-copy {
    font-size: 13px;
  }

  .m-submit {
    padding: 18px;
    font-size: 18px;
  }

  .m-submit-sub {
    font-size: 12px;
  }

  .m-submit-disclaimer {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
  }

  .m-bonus {
    padding: 16px;
  }

  .m-bonus-text {
    font-size: 13px;
  }

  .m-bonus-text span {
    font-size: 11px;
  }

  .m-trust-item {
    font-size: 11px;
  }

  .m-trust-icon {
    font-size: 13px;
  }

  .m-map-section {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.95fr);
    gap: 24px;
    align-items: start;
  }

  .m-map-h2 {
    grid-column: 1 / -1;
    text-align: left;
    font-size: 34px;
  }

  .m-map-frame-wrap {
    grid-column: 1;
    grid-row: 2 / span 2;
    margin-bottom: 0;
  }

  .m-map-frame-wrap iframe {
    height: 420px;
  }

  .m-weather-card,
  .m-cta-card {
    grid-column: 2;
  }

  .m-weather-card {
    margin-bottom: 0;
    padding: 22px;
    border-radius: 14px;
  }

  .mwc-label {
    font-size: 10px;
  }

  .mwc-condition {
    font-size: 30px;
  }

  .mwc-detail {
    font-size: 14px;
  }

  .m-cta-card {
    padding: 24px;
    border-radius: 14px;
  }

  .m-cta-text {
    font-size: 28px;
  }

  .m-cta-btn {
    width: auto;
    min-width: 260px;
    margin: 0 auto;
    padding: 14px 24px;
    font-size: 16px;
  }

  .m-next {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
  }

  .m-next-h2 {
    grid-column: 1 / -1;
    margin-bottom: 4px;
    font-size: 34px;
  }

  .m-step {
    height: 100%;
    padding: 22px;
    border: 1px solid #ece6de;
    border-radius: 14px;
    border-bottom: 1px solid #ece6de;
    background: #fff;
    box-shadow: 0 10px 26px rgba(13, 27, 42, 0.06);
  }

  .m-step-title {
    font-size: 18px;
  }

  .m-step-desc {
    font-size: 14px;
  }

  .m-step-time {
    font-size: 10px;
  }

  .m-proof {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
  }

  .m-help-intro,
  .m-proof-stats,
  .m-proof > .m-proof-h2,
  .m-results-section {
    grid-column: 1 / -1;
  }

  .m-help-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .m-proof-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 0;
  }

  .m-proof-stat {
    padding: 20px 18px;
  }

  .mps-num {
    font-size: 32px;
  }

  .mps-label {
    font-size: 12px;
  }

  .m-proof > .m-proof-h2 {
    margin-top: 6px;
    margin-bottom: 2px;
    font-size: 34px;
  }

  .m-proof > .m-testimonial {
    grid-column: span 4;
    margin-bottom: 0;
  }

  .m-testimonial {
    padding: 22px;
    border: 1px solid rgba(201, 168, 76, 0.22);
  }

  .mt-quote {
    font-size: 14px;
  }

  .mt-author {
    font-size: 13px;
  }

  .mt-result {
    font-size: 11px;
  }

  .mt-meta {
    font-size: 10px;
  }

  .m-results-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .m-results-section > .m-proof-h2 {
    grid-column: 1 / -1;
    margin-bottom: 2px;
    font-size: 34px;
  }

  .m-result-card {
    height: 100%;
    margin-bottom: 0;
  }

  .m-result-amount {
    font-size: 48px;
  }

  .m-result-type {
    font-size: 24px;
  }

  .m-result-desc {
    font-size: 16px;
  }

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

  .m-faq-h2 {
    grid-column: 1 / -1;
    margin-bottom: 2px;
    font-size: 34px;
  }

  .m-faq-item {
    margin-bottom: 0;
    padding: 18px;
  }

  .m-faq-q {
    font-size: 16px;
  }

  .m-faq-a {
    font-size: 14px;
  }

  .m-final {
    margin-top: 34px;
    padding: 42px 32px;
  }

  .m-final h2 {
    font-size: 42px;
  }

  .m-final p {
    max-width: 700px;
    margin: 0 auto 24px;
    font-size: 17px;
  }

  .m-final-btn-green,
  .m-final-btn-outline {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .m-final-btn-green {
    margin-bottom: 12px;
  }

  .m-final-btn-outline {
    margin-bottom: 20px;
  }

  .m-final-phone {
    font-size: 32px;
  }

  .m-final-phone-sub {
    font-size: 12px;
  }

  .footer {
    padding: 24px 32px calc(112px + env(safe-area-inset-bottom, 0px));
  }

  .footer__logo {
    height: 28px;
    margin-bottom: 12px;
  }

  .footer__copy {
    font-size: 12px;
  }

  .footer__disc {
    max-width: none;
    font-size: 11px;
  }

  .m-sticky-bottom {
    width: calc(100% - 48px);
    max-width: none;
    padding: 14px 18px calc(16px + env(safe-area-inset-bottom, 0px));
    border-radius: 16px 16px 0 0;
  }

  .msb-call,
  .msb-form {
    min-height: 58px;
    font-size: 14px;
  }
}
