/* =====================================================================
   ASCEND DIGITAL PARTNERS - SHARED DESIGN SYSTEM
   Used by both funnel pages (/heloc/ and /refinance/).
   Page-specific rules (calculator, urgency flag) live in each page's
   inline <style> block. Bump the ?v= query on the <link> tags when
   editing this file so returning visitors get the fresh copy.
   ===================================================================== */

:root {
  --navy: #0B2545;
  --navy-soft: #1C3A5E;
  --teal: #00A39B;
  --teal-dark: #008A83;
  --teal-tint: #E6F6F5;
  --bg-soft: #F5F7FA;
  --border: #E2E8F0;
  --muted: #5A6B7E;
  --white: #FFFFFF;
  --error: #D64545;
  --success: #1A8A3C;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(11, 37, 69, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: 1080px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); }
.logo-mark { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text { line-height: 1.1; }
.logo-text .logo-name { font-size: 17px; font-weight: 800; letter-spacing: -0.2px; display: block; }
.logo-text .logo-sub { font-size: 10.5px; font-weight: 600; color: var(--teal); letter-spacing: 1.6px; text-transform: uppercase; display: block; }
.header-phone { text-align: right; }
.header-phone .phone-label { display: block; font-size: 11px; color: var(--muted); }
.header-phone a { font-size: 17px; font-weight: 800; color: var(--navy); text-decoration: none; }
.header-phone a:hover { color: var(--teal-dark); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 55%, #14506B 100%);
  color: var(--white);
  padding: 56px 0 72px;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero h1 {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800; letter-spacing: -0.5px; line-height: 1.15;
  max-width: 720px;
}
.hero h1 .accent { color: #4FD8CF; }
.hero .subhead {
  margin-top: 14px; font-size: clamp(16px, 2.2vw, 19px);
  color: #C9D6E4; max-width: 620px;
}

/* Engaged: once the user starts answering, collapse the headline so the
   quiz card rises to the top of the hero band */
.hero { transition: padding 0.45s ease; }
.hero h1, .hero .subhead {
  max-height: 240px; overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.3s ease, margin 0.45s ease;
}
.hero.engaged { padding: 20px 0 48px; }
.hero.engaged h1, .hero.engaged .subhead { max-height: 0; opacity: 0; margin: 0; }
.hero.engaged .quiz-card { margin-top: 0; }
.hero-no-anim, .hero-no-anim h1, .hero-no-anim .subhead, .hero-no-anim .quiz-card { transition: none !important; }

/* ---------- Quiz card ---------- */
.quiz-card {
  margin-top: 36px;
  transition: margin 0.45s ease;
  background: var(--white);
  color: var(--navy);
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 100%; max-width: 640px;
  min-height: 430px;
  padding: 28px 28px 32px;
  text-align: left;
}
.quiz-progress { margin-bottom: 22px; }
.quiz-progress-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12.5px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px;
}
.quiz-progress-track { height: 6px; background: var(--bg-soft); border-radius: 99px; overflow: hidden; }
.quiz-progress-fill {
  height: 100%; background: var(--teal); border-radius: 99px;
  transition: width 0.35s ease; width: 0%;
}
.quiz-question-wrap { position: relative; }
.quiz-question { font-size: clamp(20px, 3vw, 24px); font-weight: 800; letter-spacing: -0.3px; }
.quiz-hint { margin-top: 6px; font-size: 14px; color: var(--muted); }
.quiz-calc-link { color: var(--teal-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prefill-note {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 10px; padding: 7px 12px;
  background: var(--teal-tint); border: 1.5px solid var(--teal); border-radius: 8px;
  font-size: 12.5px; font-weight: 600; color: var(--teal-dark); line-height: 1.4;
}
.prefill-note svg { width: 15px; height: 15px; flex-shrink: 0; }
.tooltip-trigger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg-soft); border: 1.5px solid var(--border);
  font-size: 12px; font-weight: 800; color: var(--muted);
  cursor: pointer; margin-left: 8px; vertical-align: middle;
  flex-shrink: 0; line-height: 1;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.tooltip-trigger:hover, .tooltip-trigger[aria-expanded="true"] {
  background: var(--teal-tint); border-color: var(--teal); color: var(--teal-dark);
}
.tooltip-box {
  display: none; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
  background: var(--navy); color: #C9D6E4;
  font-size: 13.5px; font-weight: 500; line-height: 1.65;
  border-radius: 10px; padding: 14px 16px; z-index: 20;
  box-shadow: 0 8px 28px rgba(11,37,69,0.22);
}
.tooltip-box::before {
  content: ''; position: absolute; top: -5px; left: 20px;
  width: 10px; height: 10px; background: var(--navy);
  transform: rotate(45deg); border-radius: 2px;
}
.tooltip-box.active { display: block; }

.quiz-options { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quiz-options.list { grid-template-columns: 1fr; gap: 10px; }
/* compact: 2-column with denser rows, for icon-less range/score options */
.quiz-options.compact { gap: 10px; }
.quiz-options.compact label { min-height: 48px; padding: 10px 14px; font-size: 14.5px; }

.option-card { position: relative; }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card label {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--border); border-radius: var(--radius);
  cursor: pointer; font-weight: 700; font-size: 15.5px;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  min-height: 64px;
}
.option-card label:hover { border-color: #7BCFCA; background: #F4FBFA; }
.option-card input:focus-visible + label { outline: 3px solid var(--teal); outline-offset: 2px; }
.option-card input:checked + label { border-color: var(--teal); background: var(--teal-tint); }
.option-card .option-icon {
  width: 28px; height: 28px; flex-shrink: 0; color: var(--teal);
}
.option-card .option-text { display: block; }
.option-card .option-sub { display: block; font-size: 12.5px; font-weight: 500; color: var(--muted); margin-top: 1px; }

.quiz-back {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; background: none; border: none;
  font-size: 14px; font-weight: 700; color: var(--muted);
  cursor: pointer; padding: 4px 2px;
}
.quiz-back:hover { color: var(--navy); }

/* Contact form step */
.contact-grid { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.field input {
  padding: 13px 14px; font-size: 16px; border: 2px solid var(--border);
  border-radius: 10px; font-family: inherit; color: var(--navy); width: 100%;
}
.field input:focus { outline: none; border-color: var(--teal); }
.field.invalid input { border-color: var(--error); }
.field .field-error { display: none; font-size: 12.5px; color: var(--error); margin-top: 5px; font-weight: 600; }
.field.invalid .field-error { display: block; }
.field.valid input { border-color: var(--success); padding-right: 40px; }
.field .input-wrap { position: relative; }
.field-check {
  display: none; position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%); color: var(--success); pointer-events: none;
  width: 18px; height: 18px;
}
.field.valid .field-check { display: block; }
.zip-reassure {
  display: none; margin-top: 8px;
  background: var(--teal-tint); border: 1.5px solid var(--teal);
  border-radius: 8px; padding: 10px 14px;
  font-size: 13px; font-weight: 600; color: var(--teal-dark); line-height: 1.45;
}
.zip-reassure.visible { display: flex; align-items: flex-start; gap: 8px; }
.zip-reassure svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }

.tcpa {
  margin-top: 18px; font-size: 11.5px; color: var(--muted); line-height: 1.5;
}
.tcpa a { color: var(--teal-dark); }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 16px;
  background: var(--teal); color: var(--white);
  font-size: 17px; font-weight: 800; font-family: inherit;
  border: none; border-radius: 10px; padding: 16px 24px;
  cursor: pointer; transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--teal-dark); }
.btn-primary:active { transform: scale(0.99); }

.quiz-reassure {
  margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; color: #C9D6E4;
}
.quiz-reassure svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Resume banner */
.resume-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--teal-tint); border: 1.5px solid var(--teal);
  border-radius: 8px; padding: 10px 14px; margin-bottom: 18px;
  font-size: 13px; font-weight: 600; color: var(--teal-dark);
}
.resume-banner button {
  background: none; border: none; cursor: pointer; flex-shrink: 0;
  font-size: 13px; font-weight: 700; color: var(--navy);
  text-decoration: underline; padding: 2px;
}
.resume-banner button:hover { color: var(--teal-dark); }

/* Pre-qualification / savings teaser on contact step */
.prequal-banner {
  background: var(--teal-tint); border: 2px solid var(--teal);
  border-radius: var(--radius); padding: 14px 18px; margin-top: 16px;
  font-size: 15px; color: var(--navy); line-height: 1.5;
}
.prequal-banner strong { font-size: 19px; color: var(--teal-dark); }
.prequal-banner .prequal-note { display: block; font-size: 12.5px; color: var(--muted); margin-top: 6px; }

/* Matching simulation screen */
.matching { text-align: center; padding: 36px 4px 30px; }
.matching-ring { position: relative; width: 88px; height: 88px; margin: 0 auto 24px; }
.matching-ring svg { width: 88px; height: 88px; transform: rotate(-90deg); }
.matching-ring .ring-track { stroke: var(--bg-soft); }
.matching-ring .ring-arc {
  stroke: var(--teal); stroke-linecap: round;
  stroke-dasharray: 70 190;
  animation: ringSpin 1.1s linear infinite;
}
@keyframes ringSpin {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -260; }
}
.matching-ring .ring-logo {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.matching-ring .ring-logo svg { width: 34px; height: 34px; transform: none; }
.matching h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.3px; }
.matching-status {
  margin-top: 14px; min-height: 24px;
  font-size: 15px; font-weight: 600; color: var(--muted);
  opacity: 0; transition: opacity 0.3s ease;
}
.matching-status.show { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .matching-ring .ring-arc { animation: none; }
  .matching-status { transition: none; opacity: 1; }
}

/* Thank-you screen */
.thanks { text-align: center; padding: 14px 4px 8px; }
.thanks .thanks-check { width: 64px; height: 64px; margin: 0 auto 18px; color: var(--teal); }
.thanks h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.3px; }
.thanks p { margin-top: 10px; color: var(--muted); font-size: 15.5px; }
.equity-teaser, .savings-teaser {
  margin: 22px auto 0; max-width: 420px;
  background: var(--teal-tint); border: 2px solid var(--teal);
  border-radius: var(--radius); padding: 18px 20px;
}
.equity-teaser .teaser-label, .savings-teaser .teaser-label { font-size: 13px; font-weight: 700; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.8px; }
.equity-teaser .teaser-amount, .savings-teaser .teaser-amount { font-size: 34px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.equity-teaser .teaser-note, .savings-teaser .teaser-note { font-size: 12px; color: var(--muted); margin-top: 4px; }
.booking-cta { text-decoration: none; }
.booking-alt { font-size: 13.5px; }
.cross-sell {
  margin-top: 26px; padding: 16px 18px; border-top: 1px solid var(--border);
  text-align: center; font-size: 14px; color: var(--muted);
}
.cross-sell-kicker {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal-dark); margin-bottom: 6px;
}
.cross-sell p { margin-bottom: 8px; }
.cross-sell-link { color: var(--teal-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-inner {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding: 26px 20px; max-width: 1080px; margin: 0 auto;
}
.trust-item { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 14.5px; font-weight: 700; }
.trust-item svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-soft { background: var(--bg-soft); }
.section-title { font-size: clamp(24px, 4vw, 34px); font-weight: 800; letter-spacing: -0.4px; text-align: center; }
.section-sub { text-align: center; color: var(--muted); margin-top: 10px; font-size: 16.5px; max-width: 560px; margin-left: auto; margin-right: auto; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 42px; }
.step-card { text-align: center; padding: 0 10px; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 18px; font-weight: 800; }
.step-card p { margin-top: 8px; color: var(--muted); font-size: 14.5px; }

.usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 42px; }
.usecase-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 20px;
}
.usecase-card svg { width: 32px; height: 32px; color: var(--teal); }
.usecase-card h3 { font-size: 16.5px; font-weight: 800; margin-top: 14px; }
.usecase-card p { margin-top: 6px; color: var(--muted); font-size: 14px; }

.cta-mid { text-align: center; margin-top: 42px; }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal); color: var(--white); text-decoration: none;
  font-size: 16px; font-weight: 800;
  border-radius: 10px; padding: 15px 36px;
  transition: background 0.15s;
}
.btn-secondary:hover { background: var(--teal-dark); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 36px auto 0; }
.faq-list details {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--white); margin-bottom: 12px; overflow: hidden;
}
.faq-list summary {
  list-style: none; cursor: pointer;
  padding: 18px 20px; font-weight: 800; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 22px; font-weight: 600; color: var(--teal); flex-shrink: 0; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list .faq-body { padding: 0 20px 18px; color: var(--muted); font-size: 15px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #9FB1C5; padding: 44px 0 36px; font-size: 12.5px; }
.site-footer.inverted {
  background: var(--white); color: var(--muted);
  border-top: 1px solid var(--border);
}
.site-footer.inverted .footer-logo { color: var(--navy); }
.site-footer.inverted .footer-links a { color: var(--navy-soft); }
.site-footer.inverted .footer-links a:hover { color: var(--teal-dark); }
.site-footer.inverted .footer-disclaimer { border-top-color: var(--border); }
.site-footer.inverted .footer-disclaimer a { color: var(--teal-dark) !important; }
.site-footer.inverted .eho { color: var(--navy); }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: var(--white); }
.footer-logo .logo-name { font-weight: 800; font-size: 16px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: #C9D6E4; text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: var(--white); }
.footer-disclaimer { margin-top: 26px; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; line-height: 1.65; }
.footer-disclaimer p { margin-bottom: 12px; }
.footer-meta { margin-top: 18px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.eho { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.eho svg { width: 26px; height: 26px; }

/* ---------- Motion: quiz step transitions ---------- */
@keyframes stepEnterFwd {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes stepEnterBack {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
.step-enter-fwd  { animation: stepEnterFwd 0.28s ease-out; }
.step-enter-back { animation: stepEnterBack 0.28s ease-out; }

/* Progress bar shimmer */
.quiz-progress-fill { position: relative; overflow: hidden; }
.quiz-progress-fill::after {
  content: ''; position: absolute; top: 0; left: -40%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: shimmer 2.2s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { left: -40%; }
  60%, 100% { left: 110%; }
}

/* ---------- Motion: scroll reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Motion: living hero ---------- */
.hero {
  background-size: 200% 200%;
  animation: heroDrift 18s ease-in-out infinite alternate;
  position: relative; overflow: hidden;
}
@keyframes heroDrift {
  from { background-position: 0% 0%; }
  to   { background-position: 100% 100%; }
}
.hero-inner { position: relative; z-index: 1; }
.hero-shape {
  position: absolute; pointer-events: none; z-index: 0;
}
.hero-shape.circle {
  border-radius: 50%; background: #4FD8CF; filter: blur(60px);
}
.shape-1 { width: 320px; height: 320px; top: -80px; left: -100px; opacity: 0.10; animation: floatA 26s ease-in-out infinite alternate; }
.shape-2 { width: 260px; height: 260px; bottom: -60px; right: -60px; opacity: 0.08; animation: floatB 32s ease-in-out infinite alternate; }
.shape-3 { width: 180px; height: 180px; top: 30%; right: 12%; opacity: 0.06; animation: floatA 22s ease-in-out infinite alternate-reverse; }
.shape-chevron { top: 18%; left: 8%; opacity: 0.07; animation: floatC 30s ease-in-out infinite alternate; }
.shape-chevron svg { width: 140px; height: 140px; }
@keyframes floatA {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, 30px); }
}
@keyframes floatB {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-35px, -25px) scale(1.12); }
}
@keyframes floatC {
  from { transform: translate(0, 0) rotate(-4deg); }
  to   { transform: translate(25px, 18px) rotate(6deg); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .step-enter-fwd, .step-enter-back { animation: none; }
  .quiz-progress-fill::after { animation: none; display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero { animation: none; background-size: auto; }
  .hero-shape { animation: none; }
  .hero, .hero h1, .hero .subhead, .quiz-card { transition: none; }
}

/* ---------- Animation utilities (shared across calculator pages) ---------- */
@keyframes fadeSlideUp   { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes fadeSlideDown { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(-8px); } }
.anim-in  { animation: fadeSlideUp 0.38s ease forwards; }
.anim-out { animation: fadeSlideDown 0.25s ease forwards; }
@media (prefers-reduced-motion: reduce) {
  .anim-in, .anim-out { animation: none; }
}

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: rgba(11,37,69,0.96); color: #C9D6E4;
  box-shadow: 0 -4px 16px rgba(11,37,69,0.3);
  padding: 12px 20px;
}
.cookie-banner.visible { display: block; }
.cookie-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.cookie-text { font-size: 13px; line-height: 1.4; margin: 0; }
.cookie-text a { color: #9FE8E3; text-decoration: underline; }
.cookie-accept {
  flex-shrink: 0;
  background: var(--teal); color: var(--white);
  font-family: inherit; font-size: 13px; font-weight: 700;
  border: none; border-radius: 6px; padding: 7px 18px; cursor: pointer;
  transition: background 0.15s; white-space: nowrap;
}
.cookie-accept:hover { background: var(--teal-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .hero { padding: 36px 0 52px; }
  .quiz-card { padding: 22px 18px 26px; }
  .quiz-options { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
  .trust-item { justify-content: flex-start; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .usecase-grid { grid-template-columns: 1fr 1fr; }
  .header-phone .phone-label { display: none; }
  section { padding: 48px 0; }
}
@media (max-width: 480px) {
  .usecase-grid { grid-template-columns: 1fr; }
}

/* Skip rendering work for below-fold sections until they near the viewport */
#section-how-it-works, #section-use-cases, #section-faq {
  content-visibility: auto; contain-intrinsic-size: auto 600px;
}
