/* ════════════════════════════════════════════════
   RoofMaxx / Infinite Roofing Solutions
   V2 — Cinematic / Dramatic Variant
   Same copy. Elevated design. More visual flair.
   Avatar: California homeowners 70+, dignity-sensitive
   ════════════════════════════════════════════════ */

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

/* ── Design Tokens ──────────────────────────── */
:root {
  --navy:         #1A3A5C;
  --navy-deep:    #0E2240;
  --navy-dark:    #122840;
  --green:        #4A9B4A;
  --green-dark:   #3a7a3a;
  --green-glow:   rgba(74,155,74,0.35);
  --gold:         #F5A623;
  --gold-soft:    #F8C05A;
  --red:          #B83232;
  --red-light:    #FDF3F3;
  --green-light:  #F2FAF2;

  --text-dark:    #1C1C1C;
  --text-body:    #3A3A3A;
  --text-muted:   #6B7280;
  --border:       #E2E8F0;
  --bg-white:     #FFFFFF;
  --bg-light:     #F5F5F5;
  --bg-warm:      #FAFAF8;
  --bg-footer:    #0A0F1A;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  --shadow-xs:    0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md:    0 8px 24px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl:    0 24px 64px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-btn:   0 6px 20px rgba(74,155,74,0.35);
  --shadow-glow:  0 0 40px rgba(74,155,74,0.20);

  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:   'Merriweather', Georgia, 'Times New Roman', serif;

  --section-pad:  clamp(80px, 9vw, 120px);
  --container-px: clamp(20px, 4vw, 48px);
}

/* ── Base ───────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg-white);
}

body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease, color 0.2s ease;
}
a:hover { opacity: 0.82; }

ul { list-style: none; padding: 0; }

/* ── Layout ─────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-px);
  width: 100%;
}

/* ── Typography ─────────────────────────────── */
h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.15;
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.22;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.3;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 32px;
}
h3:first-child { margin-top: 0; }

h4 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

p { margin-bottom: 20px; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  background: rgba(245,166,35,0.12);
  border-radius: 100px;
  border: 1px solid rgba(245,166,35,0.25);
}

.section-heading {
  margin-bottom: 52px;
  position: relative;
  display: inline-block;
}
.text-center .section-heading,
.section-heading.text-center {
  display: block;
}
.section-heading::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  margin: 18px auto 0;
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.section-heading.is-visible::after,
.reveal.is-visible .section-heading::after,
.reveal.is-visible.section-heading::after {
  width: 60px;
}

.section-sub {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: -32px;
  margin-bottom: 52px;
  letter-spacing: 0.005em;
}

/* ── Primary CTA Button ─────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  padding: 17px 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.2;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.btn:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(74,155,74,0.45);
  opacity: 1;
}
.btn:hover::after { opacity: 1; }
.btn:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.btn:active { transform: translateY(-1px); }

.btn-lg { font-size: 18px; padding: 20px 44px; }

.btn-glow {
  animation: btnPulse 3s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: var(--shadow-btn); }
  50% { box-shadow: var(--shadow-btn), 0 0 28px var(--green-glow); }
}

/* Button shimmer sweep */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: none;
  z-index: 1;
}
.btn:hover::before {
  animation: btnShimmer 0.6s ease forwards;
}
@keyframes btnShimmer {
  to { left: 120%; }
}

/* ── Scroll Reveal — Cinematic ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.42s; }

/* Cinematic hero entrance — staggered fade */
.cin-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: cinFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.cin-d1 { animation-delay: 0.2s; }
.cin-d2 { animation-delay: 0.4s; }
.cin-d3 { animation-delay: 0.6s; }
.cin-d4 { animation-delay: 0.85s; }
.cin-d5 { animation-delay: 1.1s; }

@keyframes cinFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Wave Dividers ─────────────────────────── */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}
.wave-divider svg {
  width: 100%;
  height: 48px;
  display: block;
}
.wave-light { color: var(--bg-light); }
.wave-white { color: var(--bg-white); }

/* ══════════════════════════════════════════════
   MOBILE STICKY CTA BAR
   ══════════════════════════════════════════════ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--navy-deep);
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 -6px 28px rgba(0,0,0,0.35);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-call, .mobile-form {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.mobile-call {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.20);
}
.mobile-form { background: var(--green); color: #fff; }
.mobile-call:hover, .mobile-form:hover { opacity: 0.88; }

/* ══════════════════════════════════════════════
   HEADER — Glass Morphism
   ══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #FFFFFF;
  height: 64px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  transition: box-shadow 0.35s ease, height 0.35s ease;
}
.header-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  height: 58px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-logos {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-logos img {
  height: auto;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.header-logos img:first-child { max-height: 42px; }
.header-logos img:last-child { max-height: 32px; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  transition: opacity 0.2s;
}
.header-phone:hover { opacity: 0.75; }
.header-phone svg { flex-shrink: 0; color: var(--navy); }

.phone-num {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
}

.phone-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}

/* ══════════════════════════════════════════════
   SECTION 1: CINEMATIC HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: kenBurns 25s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14,34,64,0.92) 0%, rgba(26,58,92,0.80) 40%, rgba(26,58,92,0.55) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-content { color: #fff; }

.hero-sub {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
  max-width: 600px;
}

/* Trust Badges — Hero */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin: 28px 0 36px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 64px;
  transition: transform 0.3s ease;
}
.trust-badge:hover {
  transform: translateY(-3px);
}
.badge-icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}
.trust-badge:hover .badge-icon {
  transform: scale(1.15);
  color: #fff;
}
.badge-logo {
  max-height: 26px;
  width: auto;
  background: rgba(255,255,255,0.90);
  padding: 4px 8px;
  border-radius: 6px;
}
.trust-badge span {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-align: center;
  line-height: 1.3;
}

/* Hero CTA */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero-phone-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-or {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.50);
}
.hero-phone-num {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.hero-phone-num:hover { opacity: 0.82; }
.hero-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ══════════════════════════════════════════════
   SECTION 2: CREDIBILITY BAR — Elevated
   ══════════════════════════════════════════════ */
.cred-bar {
  background: var(--bg-light);
  padding: 44px 0;
  position: relative;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
  align-items: center;
}

.cred-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 16px;
  border-radius: var(--radius-md);
  transition: all 0.35s ease;
  position: relative;
}
.cred-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  transition: transform 0.35s ease;
}
.cred-item:hover {
  background: rgba(26,58,92,0.04);
  transform: translateY(-2px);
}
.cred-item:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.cred-num {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.cred-lbl {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ══════════════════════════════════════════════
   SECTIONS: Common Rhythm
   ══════════════════════════════════════════════ */
.section { padding: var(--section-pad) 0; }

/* ══════════════════════════════════════════════
   SECTION 3: THE PROBLEM — Dramatic
   ══════════════════════════════════════════════ */
.section-problem {
  background: var(--bg-warm);
}

.problem-intro {
  font-size: 19px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--text-body);
}

.problem-callout {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-top: 8px;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.problem-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.problem-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.problem-card:hover::before { opacity: 1; }

.problem-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--bg-light), rgba(26,58,92,0.06));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.problem-card:hover .problem-card-icon {
  background: var(--navy);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 6px 20px rgba(26,58,92,0.25);
}
.problem-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
  transition: color 0.3s ease, transform 0.3s ease;
}
.problem-card:hover .problem-card-icon svg {
  color: #fff;
  transform: scale(1.1);
}

.problem-card h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.problem-card p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════════════
   SECTION 4: THE 85% REVELATION — Full Cinematic
   ══════════════════════════════════════════════ */
.revelation {
  position: relative;
  background: var(--navy-deep);
  padding: clamp(100px, 12vw, 160px) 0;
  color: #fff;
  overflow: hidden;
}
.revelation-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,166,35,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(74,155,74,0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, #0A1628 100%);
}

.rev-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.rev-stat { text-align: center; }

.rev-pct-wrap {
  display: inline-flex;
  align-items: baseline;
}

.rev-pct {
  font-family: var(--font-serif);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -4px;
  text-shadow: 0 4px 40px rgba(245,166,35,0.20), 0 0 80px rgba(245,166,35,0.06);
  animation: floatStat 6s ease-in-out infinite;
}
@keyframes floatStat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.rev-pct-symbol {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-left: 4px;
}

.rev-rule {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px auto;
  border-radius: 2px;
}

.rev-stat-copy {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

.rev-body {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  line-height: 1.8;
}
.rev-body p { margin-bottom: 18px; }
.rev-body strong { color: #fff; }

.rev-closer {
  font-style: italic;
  color: rgba(255,255,255,0.50);
  font-size: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  margin-top: 6px !important;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   SECTION 5: THE SOLUTION — Premium
   ══════════════════════════════════════════════ */
.section-solution {
  background: var(--bg-white);
}

.sln-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 72px;
  align-items: center;
}

.sln-text { color: var(--text-body); }

.sln-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.sln-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.15);
  pointer-events: none;
}
.sln-image-frame img {
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sln-image-frame:hover img {
  transform: scale(1.03);
}

.sln-price-line {
  font-size: 21px;
  color: var(--navy);
  margin-top: 28px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--green-light), #E8F5E8);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.sln-local {
  font-style: italic;
  color: var(--text-muted);
  font-size: 16px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 24px;
}

/* Benefit Cards — Elevated */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: rgba(26,58,92,0.15);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--bg-light), rgba(26,58,92,0.06));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all 0.3s ease;
}
.benefit-card:hover .benefit-icon {
  background: var(--navy);
}
.benefit-icon svg {
  width: 26px;
  height: 26px;
  color: var(--navy);
  transition: color 0.3s ease;
}
.benefit-card:hover .benefit-icon svg { color: #fff; }

.benefit-card h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════
   SECTION 6: MATH COMPARISON — Dramatic
   ══════════════════════════════════════════════ */
.section-math {
  background: var(--bg-light);
}

.math-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto 36px;
}

.math-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.math-col:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.math-bad  { border: 2px solid var(--red); }
.math-good { border: 2px solid var(--green); }

.math-col-head {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.math-head-bad  { background: linear-gradient(135deg, var(--red), #962828); }
.math-head-good { background: linear-gradient(135deg, var(--green), #3a8a3a); }

.math-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
}
.math-title {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.math-col-body {
  background: var(--bg-white);
  padding: 22px 28px;
}

.math-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text-body);
}
.math-row:last-child { border-bottom: none; }

.math-total {
  font-weight: 700;
  font-size: 17px;
  padding-top: 14px;
  margin-top: 4px;
}
.math-total-bad  { color: var(--red); }
.math-total-good { color: var(--green-dark); }

.math-amt { font-weight: 700; flex-shrink: 0; }

/* Savings Impact — Gold Spotlight */
.math-savings {
  max-width: 880px;
  margin: 0 auto 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  color: var(--navy);
  box-shadow: 0 12px 40px rgba(245,166,35,0.25);
  position: relative;
  overflow: hidden;
  animation: savingsGlow 4s ease-in-out infinite;
}
@keyframes savingsGlow {
  0%, 100% { box-shadow: 0 12px 40px rgba(245,166,35,0.25); }
  50% { box-shadow: 0 16px 56px rgba(245,166,35,0.35); }
}
.math-savings::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.math-savings-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(26,58,92,0.55);
  margin-bottom: 12px;
}

.math-savings-num {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 72px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.math-savings-note {
  font-size: 16px;
  color: rgba(26,58,92,0.65);
  line-height: 1.5;
}

/* Math Meaning List */
.math-meaning {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.math-meaning-head {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.math-meaning-list {
  display: inline-block;
  text-align: left;
  margin-bottom: 24px;
  padding: 0;
}

.math-meaning-list li {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.65;
  padding: 8px 0 8px 30px;
  position: relative;
}
.math-meaning-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.math-meaning-close {
  font-style: italic;
  color: var(--text-muted);
  font-size: 17px;
}

/* ══════════════════════════════════════════════
   MID-PAGE CTA — Dramatic Band
   ══════════════════════════════════════════════ */
.mid-cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.mid-cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,155,74,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.mid-cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.mid-cta-box h2 {
  color: #fff;
  margin-bottom: 28px;
}

.mid-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.mid-or {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
}
.mid-or a {
  font-weight: 700;
  color: #fff;
}
.mid-or a:hover { opacity: 0.80; }

.mid-reassurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
}
.mid-reassurance span::before {
  content: '\2713 ';
  color: var(--green);
}

/* ══════════════════════════════════════════════
   SECTION 7: TESTIMONIALS — Premium
   ══════════════════════════════════════════════ */
.section-testimonials { background: var(--bg-warm); }

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.test-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 3px;
  background: linear-gradient(135deg, var(--gold), rgba(245,166,35,0.3), var(--border));
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.45s ease;
  overflow: hidden;
}
.test-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  z-index: 1;
  pointer-events: none;
}
.test-card:hover::after {
  animation: cardShine 0.7s ease forwards;
}
@keyframes cardShine {
  to { left: 150%; }
}
.test-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.test-card-inner {
  background: var(--bg-white);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.test-qmark {
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.25;
  display: block;
  margin-bottom: 16px;
  user-select: none;
}

.test-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.test-quote {
  font-size: 16px;
  font-style: italic;
  line-height: 1.78;
  color: var(--text-body);
  flex: 1;
  margin-bottom: 24px;
}

.test-attribution {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.test-author {
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}
.test-detail {
  font-size: 14px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   SECTION 8: PROCESS — Timeline
   ══════════════════════════════════════════════ */
.section-process {
  background: var(--bg-white);
}

.process-timeline {
  position: relative;
  max-width: 700px;
  margin: 52px auto 0;
  padding-left: 60px;
}

.timeline-line {
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--navy), var(--green), rgba(74,155,74,0.2));
  border-radius: 1px;
}

.process-step {
  position: relative;
  display: flex;
  gap: 24px;
  margin-bottom: 44px;
}
.process-step:last-child { margin-bottom: 0; }

.process-step .step-num {
  position: absolute;
  left: -60px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26,58,92,0.30), 0 0 0 4px var(--bg-white);
  z-index: 1;
  transition: all 0.35s ease;
}
.process-step:hover .step-num {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 6px 20px rgba(74,155,74,0.30), 0 0 0 4px var(--bg-white);
  transform: scale(1.1);
}

.step-content {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  flex: 1;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.step-content::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 0 2px 2px 0;
}
.process-step:hover .step-content {
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}
.process-step:hover .step-content::before {
  transform: scaleY(1);
}

.step-content h4 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.step-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════════════
   SECTION 9: TRUST / WHY US — Premium
   ══════════════════════════════════════════════ */
.section-trust {
  background: var(--bg-warm);
}

.trust-msg {
  max-width: 740px;
  margin: 0 auto 56px;
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-body);
}

.trust-blockquote {
  background: linear-gradient(135deg, rgba(26,58,92,0.03), rgba(26,58,92,0.06));
  border-left: 4px solid transparent;
  border-image: linear-gradient(180deg, var(--navy), var(--green)) 1;
  border-radius: 0;
  padding: 28px 36px;
  margin: 28px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.55;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: box-shadow 0.3s ease;
}
.trust-blockquote:hover {
  box-shadow: var(--shadow-lg);
}

.trust-closer {
  font-style: italic;
  color: var(--text-muted);
  font-size: 17px;
}

/* Comparison Table — Elevated */
.trust-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 900px;
  margin: 0 auto;
}

.tc-bad  { background: var(--red-light); }
.tc-good { background: var(--green-light); }

.tc-head {
  padding: 18px 28px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tc-head-bad  { background: linear-gradient(135deg, var(--red), #962828); color: #fff; }
.tc-head-good { background: linear-gradient(135deg, var(--green), #3a8a3a); color: #fff; }

.tc-col ul { padding: 16px 24px 20px; }

.tc-col li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  color: var(--text-body);
}
.tc-col li:last-child { border-bottom: none; }

.tc-mark {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}
.tc-x     { color: var(--red); }
.tc-check { color: var(--green-dark); }

/* ══════════════════════════════════════════════
   SECTION 10: FAQ — Elevated
   ══════════════════════════════════════════════ */
.section-faq { background: var(--bg-light); }

.faq-list {
  max-width: 800px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all 0.35s ease;
}
.faq-item:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: rgba(26,58,92,0.15);
  transform: translateY(-2px);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
  transition: background 0.18s ease;
}
.faq-q:hover { background: var(--bg-light); }
.faq-q:focus-visible { outline: 2px solid var(--navy); outline-offset: -2px; }

.faq-q::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-light);
}

.faq-item.active .faq-q { background: var(--bg-light); }
.faq-item.active .faq-q::after { transform: rotate(45deg); background: rgba(74,155,74,0.15); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.78;
  transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-a {
  max-height: 600px;
  opacity: 1;
  padding: 4px 28px 28px;
}

/* ══════════════════════════════════════════════
   SECTION 11: FINAL CTA + FORM — Dramatic
   ══════════════════════════════════════════════ */
.final-cta {
  position: relative;
  background: var(--navy-deep);
  padding: 96px 0 80px;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(74,155,74,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(245,166,35,0.06) 0%, transparent 40%),
    linear-gradient(180deg, var(--navy-deep), #0A1628);
}

.final-cta-header { position: relative; margin-bottom: 56px; }
.final-cta-header h2 { color: #fff; }

.final-sub {
  font-size: 18px;
  line-height: 1.65;
  max-width: 600px;
  margin: 16px auto 0;
  color: rgba(255,255,255,0.70);
}

/* Form Layout */
.form-cols {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

/* Form Card — Floating */
.form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
  border-top: 4px solid var(--green);
  position: relative;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.form-wrap:hover {
  box-shadow: 0 28px 72px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

.form-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.form-wrap h3 {
  color: var(--navy);
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 8px;
}

.form-note {
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 17px;
  font-family: var(--font-sans);
  background: var(--bg-white);
  color: var(--text-dark);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  line-height: 1.4;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(74,155,74,0.12);
  transform: translateY(-1px);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit-btn {
  width: 100%;
  margin-top: 8px;
  font-size: 18px;
  padding: 20px;
}

/* Phone Panel — Glass */
.phone-wrap {
  padding: 40px 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.phone-wrap h3 {
  color: #fff;
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 14px;
}

.phone-wrap > p {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  margin-bottom: 0;
}

.phone-next-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px !important;
}

.big-phone {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  margin: 24px 0 6px;
  line-height: 1;
  transition: opacity 0.2s, text-shadow 0.3s;
}
.big-phone:hover {
  opacity: 0.85;
  text-shadow: 0 0 20px rgba(255,255,255,0.15);
}

.phone-hours {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  margin-top: 4px;
}

.phone-list {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 20px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone-list li {
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}
.phone-list li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.phone-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  font-weight: 500;
}

/* Form Safe Row */
.form-safe-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  color: rgba(255,255,255,0.35);
  font-size: 14px;
}
.form-safe-row svg { flex-shrink: 0; }
.form-safe-row p { color: rgba(255,255,255,0.35); margin: 0; line-height: 1.5; }
.form-safe-row strong { color: rgba(255,255,255,0.55); }

/* Form Trust Row */
.form-trust-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  font-weight: 500;
}
.form-trust-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.90);
  padding: 5px 10px;
  border-radius: 6px;
}
.form-trust-badge {
  height: 20px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.90);
  padding: 4px 8px;
  border-radius: 6px;
}

/* ══════════════════════════════════════════════
   FOOTER — Deep Dark
   ══════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-footer);
  padding: 64px 0 36px;
  color: #9CA3AF;
  font-size: 15px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.foot-logos {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.foot-logo-main {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.92);
  padding: 8px 16px;
  border-radius: 8px;
}
.foot-logo-badge {
  max-height: 30px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.92);
  padding: 6px 12px;
  border-radius: 8px;
}

.foot-tagline {
  font-style: italic;
  color: #6B7280;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.foot-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #D1D5DB;
  margin-bottom: 18px;
}

.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-col li,
.foot-col a {
  color: #9CA3AF;
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.2s;
}
.foot-col a:hover { color: #fff; opacity: 1; }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  text-align: center;
  font-size: 13px;
  color: #4B5563;
}

/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════ */

/* ── Large Tablet (<=1024px) ─── */
@media (max-width: 1024px) {
  .cred-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-cards { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── Tablet / Mobile (<=768px) ─── */
@media (max-width: 768px) {
  body { font-size: 17px; }

  .mobile-sticky { display: flex; }
  .site-footer { padding-bottom: 80px; }

  /* Header */
  .phone-label { display: none; }
  .phone-num   { font-size: 16px; }
  .header-logos img:first-child { max-height: 34px; }
  .header-logos img:last-child  { max-height: 26px; }

  /* Hero */
  .hero { min-height: 90vh; padding: 90px 0 60px; }
  .hero-container { max-width: 100%; }
  .hero-content { text-align: center; }
  .trust-badges { justify-content: center; }
  .hero-actions { align-items: center; }
  .hero-phone-block { align-items: center; }
  .hero-sub { max-width: 100%; }

  /* Cred bar */
  .cred-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Problem */
  .problem-cards { grid-template-columns: 1fr; }

  /* Revelation */
  .rev-layout { grid-template-columns: 1fr; gap: 48px; }
  .rev-stat { border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 40px; }

  /* Solution */
  .sln-grid { grid-template-columns: 1fr; gap: 36px; }
  .benefit-cards { grid-template-columns: repeat(2, 1fr); }

  /* Math */
  .math-cols { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }

  /* Testimonials */
  .test-grid { grid-template-columns: 1fr; }

  /* Process — Timeline */
  .process-timeline { padding-left: 50px; }
  .timeline-line { left: 20px; }
  .process-step .step-num { left: -50px; width: 42px; height: 42px; font-size: 16px; }

  /* Trust */
  .trust-compare { grid-template-columns: 1fr; }

  /* Mid CTA */
  .mid-cta-box { padding: 0 16px; }

  /* Form */
  .form-cols { grid-template-columns: 1fr; }
  .grid-2    { grid-template-columns: 1fr; }

  /* Footer */
  .foot-grid { grid-template-columns: 1fr; }

  .section-heading { margin-bottom: 36px; }
}

/* ── Mobile (<=480px) ─── */
@media (max-width: 480px) {
  .benefit-cards { grid-template-columns: 1fr; }
  .cred-grid     { grid-template-columns: 1fr 1fr; }

  .rev-pct { font-size: 80px; }
  .math-savings-num { font-size: 48px; }
  .math-savings { padding: 28px 20px; }
  .form-wrap { padding: 28px 20px; }
  .phone-wrap { padding: 28px 20px; }
  .hero { padding: 80px 0 48px; }
  .hero h1 { font-size: 28px; }
}
