/* ────────────────────────────────────────────────────
   SolarTech Real Estate Partner — Design System v3
   ──────────────────────────────────────────────────── */

/* ── Tokens ───────────────────────────────────────── */
:root {
  --navy:        #04171F;
  --navy-mid:    #0C1F37;
  --blue:        #005DAA;
  --blue-dark:   #004a8a;
  --orange:      #FF912A;
  --orange-dark: #e8811e;

  --white:       #FFFFFF;
  --surface-1:   #F3F3F3;
  --surface-2:   #EEECEA;

  --text-1:      #04171F;
  --text-2:      #374151;
  --text-3:      #6B7280;

  --border:      rgba(7, 17, 31, 0.08);
  --border-mid:  rgba(7, 17, 31, 0.14);

  --r-sm:  4px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);

  --max-w:  1240px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
}

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Figtree', system-ui, sans-serif;
  background: var(--white);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

/* ── Skip link ────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--orange); color: var(--white);
  padding: .5rem 1rem; border-radius: var(--r-sm); z-index: 999;
}
.skip-link:focus { top: 1rem; }

/* ── Focus styles ─────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Container ────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-sm);
  font-weight: 700; font-size: .875rem;
  letter-spacing: .04em; text-transform: uppercase;
  transition: all .2s; cursor: pointer; border: none;
  white-space: nowrap; text-decoration: none;
}
.btn-orange {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 16px rgba(255,145,42,.3);
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255,145,42,.42);
}
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }
.btn-cta {
  background: var(--orange); color: var(--white);
  padding: .6rem 1.5rem; font-size: .8rem;
  border-radius: var(--r-sm); letter-spacing: .04em; text-transform: uppercase;
}
.btn-cta:hover { background: var(--orange-dark); }

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding-block: 1.25rem;
  transition: background .3s, padding .3s;
}
.site-header.scrolled {
  background: rgba(7, 17, 31, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  padding-block: .875rem;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-link { display: flex; align-items: center; }
.site-logo { height: 32px; width: auto; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to right, rgba(5,12,22,0.92) 0%, rgba(7,17,31,0.75) 40%, rgba(7,17,31,0.15) 100%),
    url('hero-bg.png') center 55% / cover no-repeat;
}

.hero-inner {
  padding-block: clamp(100px, 12vw, 140px) 5rem;
  width: 100%;
}

.hero-copy {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-stat-boxes {
  display: flex;
  gap: 1rem;
  margin-top: .5rem;
}

.hero-stat-box {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
  flex: 1;
  position: relative;
  cursor: pointer;
}
.hero-stat-box-front { transition: opacity 0.3s ease; }
.hero-stat-box-back {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.hero-stat-box:hover .hero-stat-box-front { opacity: 0; }
.hero-stat-box:hover .hero-stat-box-back  { opacity: 1; pointer-events: auto; }
.stat-asterisk { font-size: 1rem; color: rgba(255,255,255,.9); margin-right: 2px; }
.hero-stat-box-back p {
  font-size: .82rem; line-height: 1.65;
  color: rgba(255,255,255,.8);
  text-align: center;
}

.hero-stat-num {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-family: 'Red Hat Display', system-ui, sans-serif;
  font-weight: 700; color: var(--white);
  line-height: 1; letter-spacing: -.03em; margin-bottom: .4rem;
}

.hero-stat-label {
  font-size: .68rem; font-weight: 700;
  color: rgba(255,255,255,.65);
  text-transform: uppercase; letter-spacing: .1em;
}

.open-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--orange);
  border: 1px solid transparent;
  border-radius: 999px; padding: .35rem .875rem;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); width: fit-content;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 6px rgba(255,145,42,.9);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.hero-h1 {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-family: 'Red Hat Display', system-ui, sans-serif;
  font-weight: 700; color: var(--white);
  line-height: 1.02; letter-spacing: -.035em;
}

.hero-sub {
  font-size: clamp(.9rem, 1.3vw, 1.05rem);
  color: rgba(255,255,255,.88); max-width: 640px; line-height: 1.7;
}

.hero-ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }


/* ── Statement ────────────────────────────────────── */
.statement {
  background: var(--white);
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  border-bottom: 1px solid var(--border);
}
.statement-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 4rem; align-items: start;
}
.statement-tag {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-3); padding-top: .6rem;
}
.statement-text {
  font-size: clamp(1.9rem, 3.5vw, 3.25rem);
  font-family: 'Red Hat Display', system-ui, sans-serif;
  font-weight: 700; color: var(--text-1);
  line-height: 1.12; letter-spacing: -.025em; font-style: normal;
}

/* ── Opportunity ──────────────────────────────────── */
.opportunity { background: var(--surface-1); }

.opp-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: end;
  margin-bottom: 4rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-mid);
}
.opp-header .section-h2 { margin-bottom: 0; }
.opp-header-sub {
  font-size: 1rem; color: var(--text-2);
  line-height: 1.75; align-self: end;
}
.opp-list { display: flex; flex-direction: column; }
.opp-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem; padding-block: 2.5rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.opp-row:last-child { border-bottom: none; }
.opp-row-num {
  font-size: 2.5rem; font-weight: 700;
  font-family: 'Red Hat Display', system-ui, sans-serif;
  color: rgba(4,23,31,.1); line-height: 1;
  letter-spacing: -.03em; padding-top: .15rem;
}
.opp-row-content h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-1); margin-bottom: .625rem;
}
.opp-row-content p {
  font-size: .95rem; color: var(--text-2);
  line-height: 1.75; max-width: 640px;
}

/* ── How It Works ─────────────────────────────────── */
.how { background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 3.5rem;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.step {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--border);
  background: var(--white);
  transition: background .7s, box-shadow .7s, transform .5s;
  position: relative;
  z-index: 0;
}
.step:last-child { border-right: none; }
.step:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.step:last-child  { border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.step:hover { background: var(--surface-1); }
.step-num {
  font-size: 3rem; font-weight: 700;
  font-family: 'Red Hat Display', system-ui, sans-serif;
  color: rgba(0, 93, 170, 0.22); line-height: 1;
  margin-bottom: .75rem; letter-spacing: -.03em;
  transition: color .7s;
}
.step h3 { font-size: .95rem; font-weight: 700; color: var(--text-1); margin-bottom: .5rem; }
.step p { font-size: .88rem; color: var(--text-1); line-height: 1.7; }

.step.lit {
  background: #fff5ec;
  transform: scale(1.04);
  z-index: 1;
  box-shadow:
    inset 0 0 0 2px var(--orange),
    0 0 28px rgba(245, 128, 38, 0.22),
    0 0 60px rgba(245, 128, 38, 0.1);
}
.step.lit .step-num {
  color: var(--orange);
  text-shadow: 0 0 24px rgba(245, 128, 38, 0.5);
}

/* ── Compensation ─────────────────────────────────── */
.compensation { background: var(--navy); }
.compensation .section-tag { color: rgba(255,255,255,.7); }
.compensation .section-h2 { color: var(--white); }
.compensation .section-sub { color: rgba(255,255,255,.85); }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}

/* ── Flip card wrapper ── */
.flip-card { position: relative; cursor: pointer; }
.flip-card-front { transition: opacity 0.3s ease; }
.flip-card-back {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.flip-card:hover .flip-card-front { opacity: 0; }
.flip-card:hover .flip-card-back  { opacity: 1; pointer-events: auto; }

.bonus-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 2.5rem 2.25rem;
  height: 100%;
}
.bonus-card--featured {
  background: var(--orange); border-color: transparent;
  position: relative;
}
.bonus-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--white); color: var(--orange);
  font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .875rem; border-radius: 999px; white-space: nowrap;
}
.bonus-amount {
  font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 700;
  font-family: 'Red Hat Display', system-ui, sans-serif;
  color: var(--white);
  line-height: 1; margin-bottom: .4rem; letter-spacing: -.025em;
}
.bonus-type {
  font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem;
}
.bonus-card p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.bonus-card--featured p { color: rgba(255,255,255,.87); }
.bonus-fine-print { font-size: .78rem !important; color: rgba(255,255,255,.4) !important; margin-top: .75rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: .75rem; }
.bonus-card--featured .bonus-fine-print { color: rgba(255,255,255,.6) !important; border-color: rgba(255,255,255,.2); }
.flip-card-back .bonus-card-hint {
  font-size: .72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.45); margin-bottom: 1.25rem;
}

/* ── Earnings Example ─────────────────────────────── */
.example { background: var(--surface-1); }

.example-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.example-body { font-size: .97rem; color: var(--text-1); line-height: 1.75; margin-top: 1rem; }

.example-table-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.example-caption {
  font-size: .72rem; font-weight: 700; color: var(--text-3);
  letter-spacing: .08em; text-transform: uppercase;
  padding: 1.25rem 1.75rem .75rem; background: var(--surface-2);
  border-bottom: 1px solid var(--border); caption-side: top; text-align: left;
}
.example-table { width: 100%; border-collapse: collapse; }
.example-table th {
  padding: .875rem 1.5rem; font-size: .74rem; font-weight: 700;
  color: var(--text-3); text-transform: uppercase; letter-spacing: .08em;
  background: var(--surface-2); text-align: left; border-bottom: 1px solid var(--border);
}
.example-table td {
  padding: .875rem 1.5rem; font-size: .9rem; color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.example-table tbody tr:last-child td { border-bottom: none; }
.example-total td { font-weight: 700; color: var(--text-1); background: rgba(255,107,44,.05); }
.example-total td:last-child { color: var(--orange); font-size: 1.05rem; }

/* ── Coverage Map ─────────────────────────────────── */
.coverage { background: var(--navy); }

.coverage-inner {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 4rem; align-items: center;
}
.coverage-sub {
  font-size: clamp(.9rem, 1.3vw, 1rem); color: rgba(255,255,255,.86);
  line-height: 1.75; margin-top: .75rem; margin-bottom: 2.5rem; max-width: 420px;
}
.coverage-regions { display: flex; flex-direction: column; gap: 1.25rem; }
.coverage-region { display: flex; align-items: flex-start; gap: 1rem; }
.region-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,44,.22);
  flex-shrink: 0; margin-top: .35rem;
}
.coverage-region strong {
  display: block; font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: .2rem;
}
.coverage-region span { font-size: .9rem; color: rgba(255,255,255,.6); }

.coverage-map {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 8px 48px rgba(0,0,0,.4);
}
#map { height: 440px; }

/* Leaflet overrides */
.leaflet-popup-content-wrapper {
  background: var(--white) !important; border: 1px solid var(--border-mid) !important;
  border-radius: var(--r-md) !important; box-shadow: 0 4px 24px rgba(0,0,0,.15) !important;
}
.leaflet-popup-tip { background: var(--white) !important; }
.leaflet-popup-content strong { color: var(--blue); font-size: .95rem; }
.leaflet-popup-content {
  color: var(--text-2); font-size: .85rem; line-height: 1.5;
  font-family: 'Figtree', sans-serif; margin: .75rem 1rem;
}
.leaflet-container { font-family: 'Figtree', sans-serif; }
.leaflet-control-attribution { font-size: .65rem !important; }
.map-marker-wrap { background: transparent; border: none; }
.map-marker-pulse {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 0 5px rgba(255,107,44,.3);
  animation: mapPulse 2.4s ease-in-out infinite; cursor: pointer;
}
@keyframes mapPulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(255,107,44,.3), 0 0 16px rgba(255,107,44,.4); }
  50% { box-shadow: 0 0 0 10px rgba(255,107,44,.12), 0 0 28px rgba(255,107,44,.3); }
}

/* ── Why SolarTech ────────────────────────────────── */
.why { background: var(--white); }

.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 3rem; margin-bottom: 2rem;
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.trust-card {
  padding: 2.25rem 1.75rem; text-align: center;
  border-right: 1px solid var(--border); transition: background .2s;
}
.trust-card:last-child { border-right: none; }
.trust-card:hover { background: var(--surface-1); }
.trust-num {
  font-size: clamp(2rem, 3vw, 2.75rem); font-weight: 700;
  font-family: 'Red Hat Display', system-ui, sans-serif; color: var(--orange);
  line-height: 1; margin-bottom: .5rem; letter-spacing: -.02em;
  display: block; transform-origin: top center;
}
@keyframes statFlip {
  0%   { opacity: 0; transform: perspective(300px) rotateX(-70deg) translateY(-12px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: perspective(300px) rotateX(0deg) translateY(0); }
}
.trust-num.flipping {
  animation: statFlip 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.trust-label {
  font-size: .75rem; font-weight: 600; color: var(--text-2);
  text-transform: uppercase; letter-spacing: .07em; line-height: 1.4;
}
.trust-list {
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 4rem;
}
.trust-list li {
  font-size: .93rem; color: var(--text-1);
  padding-left: 1.5rem; position: relative; line-height: 1.65;
}
.trust-list li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
}

/* ── Shared section type ──────────────────────────── */
section { padding-block: clamp(4rem, 8vw, 7rem); }
.hero { padding-block: 0; }
.statement { padding-block: clamp(3.5rem, 6vw, 5.5rem); }

.section-tag {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .875rem;
}
.section-h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-family: 'Red Hat Display', system-ui, sans-serif;
  font-weight: 700; color: var(--text-1);
  line-height: 1.1; letter-spacing: -.022em; margin-bottom: 1rem;
}
.section-sub {
  font-size: clamp(.92rem, 1.3vw, 1.02rem);
  color: var(--text-1); max-width: 580px; line-height: 1.75;
}
.section-h2--light { color: var(--white); }
.section-tag--light { color: rgba(255,255,255,.72); }

/* ── Scroll reveal ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Connect / Form ───────────────────────────────── */
.connect { background: var(--surface-2); }

.connect-inner {
  display: grid; grid-template-columns: 1fr 1.8fr;
  gap: 5rem; align-items: start;
}
.connect-header .section-sub { margin-top: .75rem; }

.connect-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2.5rem; box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.25rem; }
label { font-size: .79rem; font-weight: 600; color: var(--text-1); letter-spacing: .02em; }
.label-opt { font-weight: 400; color: var(--text-3); }
input, select, textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-md); font-size: .93rem; color: var(--text-1);
  background: var(--white); transition: border-color .2s, box-shadow .2s;
  outline: none; -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-3); }
input:focus, select:focus, textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,44,.1);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
textarea { resize: vertical; min-height: 96px; }
.btn-submit {
  width: 100%; justify-content: center;
  padding: .9rem 2rem; font-size: .875rem;
  margin-top: 1.5rem; border-radius: var(--r-md);
}
.form-note { font-size: .77rem; color: var(--text-3); text-align: center; margin-top: .875rem; }
.form-error { font-size: .84rem; color: #c0392b; text-align: center; margin-top: .75rem; }
.form-success { text-align: center; padding: 2.5rem 1rem; }
.form-success-check {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-size: 1.5rem; line-height: 52px; margin: 0 auto 1.25rem;
}
.form-success h3 { font-family: 'Red Hat Display', system-ui, sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--text-1); margin-bottom: .75rem; }
.form-success p { font-size: .95rem; color: var(--text-2); line-height: 1.7; }

/* ── Footer ───────────────────────────────────────── */
.site-footer { background: var(--navy); }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem; padding-block: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo { height: 52px; width: auto; margin-bottom: .75rem; }
.footer-brand p { font-size: .87rem; color: rgba(255,255,255,.44); }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; align-items: flex-end; }
.footer-contact a { font-size: .87rem; color: rgba(255,255,255,.82); transition: color .2s; }
.footer-contact a:hover { color: var(--white); }
.footer-legal { padding-block: 1.5rem; }
.footer-legal p { font-size: .77rem; color: rgba(255,255,255,.3); text-align: center; }
.footer-disclaimers { font-size: .68rem !important; color: rgba(255,255,255,.2) !important; margin-top: .5rem; line-height: 1.6; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(3), .step:nth-child(4) { border-top: 1px solid var(--border); }
  .step:nth-child(4) { border-right: none; }
  .step:first-child  { border-radius: var(--r-lg) 0 0 0; }
  .step:nth-child(2) { border-radius: 0 var(--r-lg) 0 0; }
  .step:nth-child(3) { border-radius: 0 0 0 var(--r-lg); }
  .step:last-child   { border-radius: 0 0 var(--r-lg) 0; }
}

@media (max-width: 960px) {
  .hero-stat-boxes { flex-wrap: wrap; }
  .hero-stat-box { flex: 1 1 200px; }
  .statement-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .opp-header { grid-template-columns: 1fr; gap: 1rem; }
  .hero-cards { grid-template-columns: 1fr; }
  .hero-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-card:last-child { border-bottom: none; }
  .example-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-card:nth-child(2) { border-right: none; }
  .trust-card:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .trust-card:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .connect-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-list { grid-template-columns: 1fr; }
  .coverage-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  #map { height: 340px; }
}

@media (max-width: 640px) {
  .hero-copy { gap: 1.25rem; }
  .hero-stat-boxes { width: 100%; }
  .hero-h1 { font-size: clamp(2.25rem, 8vw, 3rem); }
  .opp-row { grid-template-columns: 56px 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); border-radius: 0; }
  .step:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .step:last-child  { border-bottom: none; border-radius: 0 0 var(--r-lg) var(--r-lg); }
  .bonus-grid { grid-template-columns: 1fr; }
  .connect-form { padding: 1.75rem 1.5rem; }
  .trust-list { padding: 1.5rem; }
}
