/* =========================================================
   Baz Auto Movers — Landing Page Styles
   Brand palette: Orange #F39A33, Charcoal #2F3A46, Slate #5F6B76,
                  Light Gray #F3F4F6, White #FFFFFF
   Type: Oswald (display, condensed bold) + Inter (body)
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --orange: #F39A33;
  --orange-600: #E08416;
  --orange-100: #FCE6CC;
  --orange-50: #FFF6EA;

  --charcoal: #2F3A46;
  --charcoal-700: #243039;
  --charcoal-900: #1A2027;

  --slate: #5F6B76;
  --slate-400: #8B96A1;
  --slate-200: #C7CED5;

  --light: #F3F4F6;
  --light-2: #EAECEF;
  --white: #FFFFFF;

  --border: #E3E6EA;
  --shadow-sm: 0 1px 2px rgba(31, 41, 51, 0.06), 0 1px 1px rgba(31, 41, 51, 0.04);
  --shadow-md: 0 4px 14px rgba(31, 41, 51, 0.08), 0 2px 4px rgba(31, 41, 51, 0.04);
  --shadow-lg: 0 18px 40px rgba(31, 41, 51, 0.12), 0 4px 10px rgba(31, 41, 51, 0.06);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --container: 1240px;

  --font-display: "Oswald", "Bebas Neue", "Impact", "Arial Narrow Bold", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--charcoal); text-decoration: none; }
a:hover { color: var(--orange-600); }
ul { padding: 0; margin: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.06;
  letter-spacing: 0.005em;
  margin: 0;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 0.92rem; letter-spacing: 0.08em; }

p { margin: 0 0 0.75em; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 12px;
}
.eyebrow-orange { color: var(--orange-600); }
.eyebrow-orange-light { color: var(--orange); }

.section-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head h2 { margin-bottom: 12px; }
.section-sub { color: var(--slate); font-size: 1.05rem; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform .12s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease, border-color .15s ease;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 10px 16px; font-size: 0.9rem; }
.btn-lg { padding: 16px 26px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: var(--orange);
  color: var(--charcoal-900);
  box-shadow: 0 4px 14px rgba(243, 154, 51, 0.35);
}
.btn-primary:hover { background: var(--orange-600); color: #fff; box-shadow: 0 8px 18px rgba(224, 132, 22, 0.45); }

.btn-secondary {
  background: var(--charcoal);
  color: #fff;
}
.btn-secondary:hover { background: var(--charcoal-700); color: #fff; }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 50px;
  min-width: 150px;
  width: auto;
  display: block;
}
.header-nav {
  display: flex;
  gap: 22px;
  margin-left: 20px;
}
.header-nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  position: relative;
  white-space: nowrap;
}
.header-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.header-nav a:hover::after { transform: scaleX(1); }

.header-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.phone-link svg { color: var(--orange-600); }
.phone-link .phone-label { color: var(--slate); font-weight: 500; font-size: 0.82rem; }
.phone-link:hover .phone-num { color: var(--orange-600); }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  position: relative;
  border-radius: 8px;
}
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--charcoal);
  position: absolute; left: 10px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 19px; }
.menu-toggle span:nth-child(3) { top: 24px; }
.menu-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 14px 24px 22px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-nav a {
  padding: 12px 4px;
  font-weight: 600;
  border-bottom: 1px solid var(--light-2);
}
.mobile-nav a.btn { border: 2px solid transparent; margin-top: 8px; }
.mobile-nav[data-open="true"] { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--charcoal-900);
  isolation: isolate;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.85;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(26,32,39,0.96) 0%, rgba(26,32,39,0.82) 38%, rgba(26,32,39,0.30) 65%, rgba(26,32,39,0) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.25) 100%);
}
.hero-grid {
  position: relative; z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
}
.hero-copy { max-width: 640px; color: #fff; }
.hero-copy .eyebrow { color: var(--orange); }

.hero-title {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.98;
  margin: 8px 0 18px;
}
.hero-title .amp { color: var(--orange); }
.hero-divisions {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px 14px;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.hero-divisions .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}
.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 0 0 28px;
}
.hero-bullets li {
  display: flex; align-items: center; gap: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 1.0rem;
}
.hero-bullets li svg { color: var(--orange); flex-shrink: 0; }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 16px;
}
.hero-foot {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.hero-foot a { color: var(--orange); font-weight: 700; }

/* ---------- Benefits strip ---------- */
.benefits-strip {
  background: var(--charcoal);
  color: #fff;
  padding: 28px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 28px;
}
.benefit {
  display: flex; align-items: center; gap: 14px;
}
.benefit-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(243, 154, 51, 0.18);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit h3 {
  color: #fff;
  font-size: 1.0rem;
  margin: 0 0 2px;
  letter-spacing: 0.04em;
}
.benefit p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
}

/* ---------- Offers ---------- */
.offers { padding: 90px 0 60px; background: var(--white); }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-100);
}
.offer-featured {
  background: linear-gradient(180deg, #FFFBF5 0%, #FFFFFF 60%);
  border-color: var(--orange-100);
  box-shadow: 0 6px 22px rgba(243, 154, 51, 0.12);
}
.offer-featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px; left: 24px;
  background: var(--orange);
  color: var(--charcoal-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.offer-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 6px;
}
.offer-title {
  font-size: 2rem;
  margin: 0 0 4px;
}
.offer-sub {
  color: var(--slate);
  font-size: 0.95rem;
  margin: 0 0 18px;
}
.big-number {
  display: flex; align-items: baseline; gap: 14px;
  padding: 18px 0 18px;
  margin: 4px 0 14px;
  border-top: 1px solid var(--light-2);
  border-bottom: 1px solid var(--light-2);
}
.big-number .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--charcoal-900);
  letter-spacing: 0.005em;
}
.big-number .num sup { color: var(--orange); font-size: 1.4rem; top: -1.0em; margin-left: 2px; }
.big-number .num .num-sm { font-size: 1.8rem; color: var(--slate); padding: 0 2px; }
.big-number .num-label {
  font-family: var(--font-body);
  color: var(--slate);
  font-size: 0.86rem;
  line-height: 1.35;
}
.offer-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 0 18px;
  flex: 1;
}
.offer-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.96rem;
  color: #2a323b;
  line-height: 1.45;
}
.offer-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(243, 154, 51, 0.15);
}
.offer-stat {
  background: var(--light);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin: 0 0 16px;
  display: flex; flex-direction: column; gap: 2px;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 700;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal-900);
  letter-spacing: 0.01em;
}

/* Shared fine print */
.fineprint-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.fineprint {
  background: var(--light);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.fineprint h4 {
  color: var(--charcoal-900);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.fineprint ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.fineprint li {
  position: relative;
  padding-left: 16px;
  font-size: 0.92rem;
  color: var(--charcoal);
}
.fineprint li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange);
}

/* ---------- Requirements ---------- */
.requirements {
  padding: 80px 0;
  background: var(--light);
}
.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.req-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
}
.req-card h3 {
  font-size: 1.35rem;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.req-list li {
  position: relative;
  padding: 8px 0 8px 30px;
  font-size: 1rem;
  border-bottom: 1px solid var(--light-2);
}
.req-list li:last-child { border-bottom: 0; }
.req-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.85em;
  width: 16px; height: 16px;
  background: var(--orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Apply / form ---------- */
.apply-section {
  padding: 90px 0;
  background: var(--charcoal-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.apply-section::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 480px; height: 480px;
  background: radial-gradient(ellipse at center, rgba(243, 154, 51, 0.18) 0%, rgba(243, 154, 51, 0) 70%);
  pointer-events: none;
}
.apply-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
  position: relative;
}
.apply-copy h2 { color: #fff; }
.apply-copy .eyebrow { color: var(--orange); }
.apply-lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 460px;
  margin: 12px 0 24px;
}
.apply-callouts {
  display: flex; flex-direction: column; gap: 14px;
  margin: 20px 0 22px;
}
.callout {
  display: flex; align-items: center; gap: 14px;
}
.callout-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(243, 154, 51, 0.18);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.callout-label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
}
.callout-strong {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
a.callout-strong:hover { color: var(--orange); }

.usdot-strip {
  margin-top: 22px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
}
.usdot-strip strong { color: #fff; }

.apply-form {
  background: #fff;
  color: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.form-title {
  margin: 0 0 20px;
  font-size: 1.6rem;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin-bottom: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}
.field label .req { color: var(--orange-600); }
.field input,
.field select {
  font: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--charcoal);
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235F6B76' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(243, 154, 51, 0.18);
}
.field input.invalid,
.field select.invalid { border-color: #C9342C; box-shadow: 0 0 0 3px rgba(201, 52, 44, 0.15); }
.form-submit { margin-top: 8px; }
.form-foot {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--slate);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 24px 12px;
}
.form-success .success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(67, 122, 34, 0.12);
  color: #2e7a17;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.form-success h3 { font-size: 1.6rem; margin: 0 0 8px; }
.form-success p { color: var(--slate); margin: 0 0 4px; }
.form-success a { color: var(--orange-600); font-weight: 700; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-600) 100%);
  color: var(--charcoal-900);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 24px);
  pointer-events: none;
}
.final-cta h2 {
  color: var(--charcoal-900);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}
.final-cta p {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(26, 32, 39, 0.78);
  margin-bottom: 22px;
}
.final-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative;
}
.final-cta .btn-primary {
  background: var(--charcoal-900);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}
.final-cta .btn-primary:hover { background: #000; color: #fff; }
.final-cta .btn-ghost-light {
  color: var(--charcoal-900);
  border-color: rgba(26,32,39,0.45);
}
.final-cta .btn-ghost-light:hover { background: rgba(26,32,39,0.08); border-color: var(--charcoal-900); color: var(--charcoal-900); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal-900);
  color: rgba(255,255,255,0.78);
  padding: 56px 0 24px;
  font-size: 0.95rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand {
  display: flex;
  align-items: center;
}
.footer-logo {
  display: block;
  width: min(230px, 100%);
  height: auto;
  padding: 12px 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.25);
}
.footer-col h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.footer-col p { margin: 0; line-height: 1.55; }
.footer-col a { color: var(--orange); font-weight: 600; }
.footer-col a:hover { color: #fff; }

.disclaimer {
  padding-top: 22px;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}
.disclaimer p { margin: 0 0 8px; max-width: 880px; }
.copyline { color: rgba(255,255,255,0.45); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .header-apply { display: none; }
  .menu-toggle { display: inline-flex; }
  .phone-link .phone-label { display: none; }
  .offers-grid { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; gap: 36px; }
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .hero { min-height: 0; padding: 0; }
  .hero-grid { padding-top: 56px; padding-bottom: 56px; }
  .hero-media img { object-position: 80% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(26,32,39,0.92) 0%, rgba(26,32,39,0.75) 40%, rgba(26,32,39,0.65) 100%);
  }
  .hero-bullets { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; }
  .header-cta { gap: 6px; }
  .phone-link .phone-num { display: none; }
  .req-grid { grid-template-columns: 1fr; }
  .offers { padding: 60px 0 40px; }
  .requirements { padding: 56px 0; }
  .apply-section { padding: 56px 0; }
  .apply-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .fineprint-grid { grid-template-columns: 1fr; }
  .fineprint ul { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding-bottom: 24px; }
  .big-number { flex-direction: column; align-items: flex-start; gap: 6px; }
  .big-number .num { font-size: 2.6rem; }
  .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
