/* ==========================================================================
   Rio Grande Home Buyers — modern monochrome
   White + near-black + cobalt blue. All-sans. Generous whitespace.
   ========================================================================== */

:root {
  --bg:          #ffffff;
  --bg-soft:     #f7f7f4;
  --bg-dark:     #0a0a0a;
  --ink:         #0a0a0a;
  --ink-2:       #1f2937;
  --ink-soft:    #6b7280;
  --line:        #e7e7e2;
  --line-2:      #d4d4cf;
  --accent:      #2563eb;
  --accent-700:  #1d4ed8;
  --accent-50:   #eff6ff;
  --accent-100:  #dbeafe;

  --shadow-sm:   0 1px 2px rgba(10,10,10,.04);
  --shadow:      0 4px 12px rgba(10,10,10,.05), 0 1px 2px rgba(10,10,10,.03);
  --shadow-lg:   0 24px 48px rgba(10,10,10,.10), 0 4px 12px rgba(10,10,10,.05);

  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   18px;

  --maxw:        1200px;
  --pad:         28px;

  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.wrap.narrow { max-width: 800px; }

::selection { background: var(--accent); color: #fff; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  letter-spacing: -0.024em;
  line-height: 1.1;
  margin: 0 0 .4em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.034em;
  line-height: 1.04;
}
h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  letter-spacing: -0.028em;
}
h3 {
  font-size: 1.18rem;
  letter-spacing: -0.012em;
  line-height: 1.3;
}
h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}

p { margin: 0 0 1em; }

.text-accent { color: var(--accent); }

.kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--accent);
  margin-bottom: 18px;
  text-transform: lowercase;
}
.kicker::before { content: "// "; opacity: .6; }
.kicker-light { color: var(--accent-100); }
.kicker-light::before { color: var(--accent-100); opacity: .8; }

/* ---------- Header ---------- */
.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 16px var(--pad);
}

.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600;
}
.logo {
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.brand-name {
  font-size: 15.5px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav {
  display: flex; gap: 4px; justify-self: center;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.nav a:hover { background: var(--bg-soft); color: var(--ink); }

.site-cta { display: flex; gap: 14px; align-items: center; }
.phone-link {
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}
.phone-link:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line);
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer;
}
.nav-toggle span { width: 18px; height: 1.5px; background: var(--ink); transition: transform .2s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s, transform .08s, box-shadow .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37,99,235,.28);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-secondary:hover { background: var(--bg-soft); border-color: var(--ink); color: var(--ink); }
.btn-sm { padding: 8px 14px; font-size: 13.5px; }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* subtle grid background */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(10,10,10,.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,10,10,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 90% 70% at 30% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 30% 30%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}
.hero-copy { max-width: 620px; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-50);
  color: var(--accent-700);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent-100);
  margin-bottom: 28px;
}
.badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37,99,235,.18); }
  50%      { box-shadow: 0 0 0 6px rgba(37,99,235,.10); }
}

.hero h1 {
  margin: 0 0 22px;
  max-width: 18ch;
}
.hero-lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 14px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.trust-item {
  display: flex; flex-direction: column; gap: 4px;
}
.trust-num {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.trust-lab {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0;
}

/* ---------- Hero form card ---------- */
.hero-form-wrap {
  position: sticky;
  top: 96px;
}
.hero-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  box-shadow:
    0 1px 0 rgba(10,10,10,.02),
    0 24px 48px -16px rgba(10,10,10,.10),
    0 4px 12px -2px rgba(10,10,10,.04);
}
.hero-form-head {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.hero-form-head h2 {
  font-size: 1.35rem;
  margin: 0 0 4px;
  letter-spacing: -0.022em;
}
.hero-form-head p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.hero-form-card form { display: grid; gap: 12px; }
.hero-form-card label {
  display: grid; gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-form-card label small { font-weight: 400; text-transform: none; letter-spacing: 0; }
.hero-form-card .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-form-card input,
.hero-form-card select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.hero-form-card input:focus,
.hero-form-card select:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-100);
}
.hero-form-card input.error,
.hero-form-card select.error { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,.12); }
.hero-form-card input::placeholder { color: var(--ink-soft); opacity: .5; }
.hero-form-card button { margin-top: 6px; padding: 13px 24px; font-size: 15px; }
.hero-form-card .micro {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.hero-form-card .form-success { padding: 12px 4px; text-align: center; }
.hero-form-card .form-success h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--ink); }
.hero-form-card .form-success p { color: var(--ink-soft); font-size: 14.5px; }
.hero-form-card .form-success a { color: var(--accent); }

/* ---------- Proof strip ---------- */
.proof-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.proof-strip-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 14px 24px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.proof-label { color: var(--ink); font-weight: 500; }
.proof-rating { color: var(--ink); }
.proof-rating strong { color: var(--ink); font-weight: 600; }
.proof-divider {
  width: 1px; height: 14px; background: var(--line-2);
}

/* ---------- Generic section ---------- */
.section { padding: 110px 0; }
.section-soft { background: var(--bg-soft); }

.head { max-width: 680px; margin: 0 0 56px; }
.head.head-center { margin-left: auto; margin-right: auto; text-align: center; }
.head h2 { margin-bottom: 14px; }
.head-lede { font-size: 1.05rem; color: var(--ink-soft); max-width: 60ch; }
.head.head-center .head-lede { margin-left: auto; margin-right: auto; }

/* ---------- How it works (3-card grid) ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.how-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.how-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.how-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-50);
  color: var(--accent-700);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.how-icon svg { width: 22px; height: 22px; }
.how-step {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.how-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.how-card p { color: var(--ink-soft); margin: 0; font-size: 15.5px; }

/* ---------- Metric panel (replaces comparison table) ---------- */
.metric-panel {
  background: var(--bg-dark);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.metric-panel::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(37,99,235,.16), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(37,99,235,.10), transparent 60%);
}
.metric-inner { position: relative; }
.metric-head { max-width: 700px; margin-bottom: 56px; }
.metric-head h2 { color: #fff; }
.metric-lede { color: #a3a3a3; font-size: 1.05rem; max-width: 60ch; }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.metric {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  transition: border-color .2s, background .2s;
}
.metric:hover {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.metric-num {
  display: block;
  font-size: clamp(2.6rem, 4.4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 16px;
}
.metric-cap {
  display: block;
  font-size: 14px;
  color: #a3a3a3;
  max-width: 22ch;
}
.metric-highlight {
  background: var(--accent);
  border-color: var(--accent);
}
.metric-highlight:hover { background: var(--accent-700); border-color: var(--accent-700); }
.metric-highlight .metric-num,
.metric-highlight .metric-cap { color: #fff; }
.metric-highlight .metric-cap { opacity: .92; }

.metric-foot {
  margin: 48px auto 0;
  max-width: 70ch;
  font-size: 1rem;
  color: #a3a3a3;
}
.metric-foot em { color: #fff; font-style: italic; }

/* ---------- Situations ---------- */
.sit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sit {
  display: block;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
a.sit:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: inherit;
}
a.sit:hover h3 { color: var(--accent); }
.sit h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--ink);
  transition: color .15s;
}
.sit p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Areas ---------- */
.areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.area-block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.area-block h3 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
.area-block ul { list-style: none; padding: 0; margin: 0; }
.area-block li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-2);
}
.area-block li:last-child { border-bottom: 0; }
.area-block ul.zips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 8px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
}
.area-block ul.zips li { border-bottom: 0; padding: 5px 0; }

/* ---------- Testimonial card ---------- */
.quote-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 48px 40px;
  text-align: left;
  position: relative;
}
.quote-stars {
  font-size: 14px;
  color: var(--accent);
  letter-spacing: .15em;
  margin-bottom: 22px;
}
.quote-card blockquote {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 32px;
}
.quote-foot {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.quote-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.quote-name {
  font-weight: 600; color: var(--ink);
  margin: 0; font-size: 14.5px;
}
.quote-meta {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ---------- FAQ ---------- */
.faq { display: block; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  letter-spacing: -0.012em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 14px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%232563eb' stroke-width='1.5'><path d='M3 7h8M7 3v8' stroke-linecap='round'/></svg>") center/contain no-repeat;
  flex-shrink: 0;
  transition: transform .2s;
}
.faq details[open] summary::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%232563eb' stroke-width='1.5'><path d='M3 7h8' stroke-linecap='round'/></svg>") center/contain no-repeat;
}
.faq details p {
  margin: 14px 0 4px;
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 68ch;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--bg-dark);
  color: #fff;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 360px at 50% 0%, rgba(37,99,235,.18), transparent 60%);
}
.final-cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.final-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  margin: 14px 0 18px;
}
.final-cta p {
  color: #a3a3a3;
  font-size: 1.05rem;
  max-width: 56ch;
  margin: 0 auto 32px;
}
.final-cta-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

.hp-field { position: absolute; left: -10000px; top: -10000px; height: 0; overflow: hidden; }
.micro {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 4px 0 0;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  text-align: center;
}
.form-success { text-align: center; padding: 16px 4px; }
.form-success h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); }
.form-success a { color: var(--accent); }

/* ---------- Footer ---------- */
.foot {
  background: var(--bg-dark);
  color: #a3a3a3;
  padding: 80px 0 28px;
}
.foot-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-brand .brand-name { color: #fff; }
.foot-blurb {
  font-size: 14px;
  color: #a3a3a3;
  margin-top: 14px;
  max-width: 32ch;
}
.foot h4 { color: #fff; }
.foot-col p { font-size: 14px; margin: 4px 0; }
.foot-col a {
  display: block;
  font-size: 14px;
  padding: 4px 0;
  color: #a3a3a3;
}
.foot-col a:hover { color: #fff; }

.foot-fine {
  display: flex; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  padding-top: 26px;
  font-size: 12.5px;
  color: #737373;
}
.disclaimer { max-width: 720px; }

/* ---------- Mobile floating CTA ---------- */
.mcta {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 80;
  background: var(--ink);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.mcta a {
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
.mcta-primary {
  flex: 1;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  font-size: 15px;
}
.mcta-primary:hover { background: var(--accent-700); color: #fff; }
.mcta-secondary {
  width: 44px; height: 44px;
  color: #fff;
  font-size: 18px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); }
  .sit-grid { grid-template-columns: repeat(3, 1fr); }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-form-wrap { position: static; max-width: 560px; }
  .hero { padding: 56px 0 64px; }
}

@media (max-width: 880px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .site-inner { grid-template-columns: auto 1fr auto auto; gap: 12px; }
  .site-cta .btn { display: none; }
  .nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px;
  }
  .nav.open a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    border-radius: 0;
  }

  .hero { padding: 40px 0 56px; }
  .section, .metric-panel, .final-cta { padding: 72px 0; }

  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
  .hero-form-card { padding: 24px 22px 22px; }

  .how-grid, .sit-grid { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: 1fr; }
  .areas { grid-template-columns: 1fr; }

  .quote-card { padding: 32px 24px; }
  .head { margin-bottom: 36px; }

  .foot-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-fine { flex-direction: column; }

  .mcta { display: flex; }
  body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .foot-inner { grid-template-columns: 1fr; }
  .hero-form-card .row { grid-template-columns: 1fr; }
  .proof-strip-inner { gap: 8px 14px; font-size: 12.5px; }
  .proof-divider { display: none; }
}

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