/* ==========================================================================
   Helmholt HomeBuyers Inc. — Design System
   Palette derived from the company logo (deep navy + warm orange).
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #16213f;
  --navy-800: #1d2b52;
  --navy-700: #263766;
  --navy-600: #324680;
  --blue-500: #4a5fa5;
  --blue-300: #8fa0d6;
  --orange-600: #cf6712;
  --orange-500: #e8791e;
  --orange-400: #f28f3b;
  --orange-100: #fdeede;

  /* Neutrals */
  --ink: #16203a;
  --body: #3b465c;
  --muted: #6b7689;
  --line: #e3e9f2;
  --line-strong: #cdd6e5;
  --surface: #ffffff;
  --surface-2: #f5f8fc;
  --surface-3: #eef3fa;

  /* System */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(22, 33, 63, .06), 0 2px 8px rgba(22, 33, 63, .05);
  --shadow: 0 10px 30px -12px rgba(22, 33, 63, .22);
  --shadow-lg: 0 30px 60px -20px rgba(22, 33, 63, .35);
  --ring: 0 0 0 4px rgba(232, 121, 30, .28);

  --container: 1180px;
  --header-h: 78px;

  --font-display: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 20px); overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--surface);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 68px 0; }
.section--alt { background: var(--surface-2); }
.section--navy { background: var(--navy-800); color: #dfe6f4; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--orange-500); }
.section--navy .eyebrow { color: var(--orange-400); }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin: 14px 0 16px; }
.section-head p { font-size: 1.075rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: 15px 26px; border-radius: 999px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--orange-500); color: #fff; box-shadow: 0 12px 24px -10px rgba(232, 121, 30, .7); }
.btn--primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 18px 30px -12px rgba(232, 121, 30, .8); }
.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.3); }
.btn--ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn--outline { background: #fff; color: var(--navy-800); box-shadow: inset 0 0 0 1.5px var(--line-strong); }
.btn--outline:hover { box-shadow: inset 0 0 0 1.5px var(--navy-600); transform: translateY(-2px); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.textlink { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 600; color: var(--navy-700); }
.textlink svg { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.textlink:hover { color: var(--orange-600); }
.textlink:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand .logo { height: 42px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-display); font-weight: 500; font-size: .95rem; color: var(--body);
  padding: 9px 14px; border-radius: 10px; transition: color .18s, background .18s;
}
.nav a:hover { color: var(--navy-800); background: var(--surface-3); }
.nav a.active { color: var(--navy-800); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; color: var(--navy-800); font-size: .95rem; }
.header-phone svg { width: 17px; height: 17px; color: var(--orange-500); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; color: var(--navy-800); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy-900); color: #eef2fb; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(74, 95, 165, .55), transparent 60%),
    radial-gradient(900px 500px at 8% 0%, rgba(232, 121, 30, .16), transparent 55%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
}
.hero-skyline { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: auto; opacity: .5; z-index: 1; }
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center;
  padding: 88px 0 108px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 15px; border-radius: 999px; font-size: .82rem; font-weight: 600;
  font-family: var(--font-display); letter-spacing: .02em; color: #dfe6f7;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #46d18a; box-shadow: 0 0 0 4px rgba(70,209,138,.25); }
.hero h1 { color: #fff; font-size: clamp(2.35rem, 5vw, 4rem); margin: 22px 0 20px; }
.hero h1 .accent { color: var(--orange-400); }
.hero-sub { font-size: 1.2rem; color: #c3cde3; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px; }
.hero-trust .item { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: #c3cde3; }
.hero-trust svg { width: 20px; height: 20px; color: var(--orange-400); flex-shrink: 0; }

/* Hero offer card */
.offer-card {
  background: #fff; color: var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 30px; position: relative;
}
.offer-card h3 { font-size: 1.35rem; }
.offer-card .lead { color: var(--muted); font-size: .96rem; margin-top: 6px; }
.offer-tag {
  position: absolute; top: -15px; right: 26px;
  background: var(--orange-500); color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; padding: 7px 15px; border-radius: 999px; box-shadow: var(--shadow);
}
.field { margin-top: 15px; }
.field label { display: block; font-size: .82rem; font-weight: 600; font-family: var(--font-display); color: var(--navy-800); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-strong); background: var(--surface-2); transition: border .18s, box-shadow .18s, background .18s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--orange-500); background: #fff; box-shadow: var(--ring); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-note svg { width: 13px; height: 13px; vertical-align: -2px; color: var(--orange-500); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--surface); border-bottom: 1px solid var(--line); }
.trustbar-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0; }
.stat { text-align: center; flex: 1 1 auto; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--navy-800); line-height: 1; letter-spacing: -.02em; }
.stat .num .unit { color: var(--orange-500); }
.stat .lbl { font-size: .86rem; color: var(--muted); margin-top: 8px; font-weight: 500; }
.stat + .stat { border-left: 1px solid var(--line); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card .icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-600)); color: #fff; margin-bottom: 18px;
}
.card .icon svg { width: 26px; height: 26px; }
.card.accent .icon { background: linear-gradient(150deg, var(--orange-500), var(--orange-600)); }
.card h3 { font-size: 1.22rem; margin-bottom: 9px; }
.card p { color: var(--muted); font-size: .97rem; }

/* Situations / what we buy */
.pill-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pill {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pill:hover { border-color: var(--orange-400); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.pill .tick { width: 40px; height: 40px; border-radius: 11px; background: var(--orange-100); color: var(--orange-600); display: grid; place-items: center; flex-shrink: 0; }
.pill .tick svg { width: 20px; height: 20px; }
.pill strong { font-family: var(--font-display); font-size: 1rem; color: var(--ink); font-weight: 600; }
.pill span { display: block; font-size: .86rem; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; position: relative; }
.step { position: relative; }
.step .n {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--orange-500); color: var(--orange-600);
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 18px; position: relative; z-index: 2;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .97rem; }
.steps::before {
  content: ""; position: absolute; top: 26px; left: 10%; right: 10%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px); z-index: 1;
}

/* ---------- Split / feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); box-shadow: var(--shadow-lg);
}
.split-media .arch-art { position: absolute; inset: 0; width: 100%; height: 100%; }
.check-list { display: grid; gap: 16px; margin-top: 8px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list .ck { width: 26px; height: 26px; border-radius: 50%; background: var(--orange-100); color: var(--orange-600); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.check-list .ck svg { width: 15px; height: 15px; }
.check-list b { font-family: var(--font-display); color: var(--ink); display: block; font-size: 1.02rem; }
.check-list span { color: var(--muted); font-size: .95rem; }

/* Comparison table */
.compare { display: grid; grid-template-columns: 1.2fr 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.compare > div { padding: 18px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; font-size: .96rem; }
.compare .ch { font-family: var(--font-display); font-weight: 700; font-size: 1rem; border-bottom: 1px solid var(--line-strong); }
.compare .ch.us { background: var(--navy-800); color: #fff; }
.compare .ch.them { background: var(--surface-2); color: var(--muted); }
.compare .rowlbl { font-weight: 600; color: var(--ink); font-family: var(--font-display); background: var(--surface-2); }
.compare .cell-us { background: rgba(232,121,30,.05); font-weight: 500; color: var(--ink); }
.compare .cell-them { color: var(--muted); }
.compare svg { width: 18px; height: 18px; flex-shrink: 0; }
.compare .yes { color: #1f9d5b; }
.compare .no { color: #cf4b3a; }
.compare > div:nth-last-child(-n+3) { border-bottom: none; }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.stars { display: flex; gap: 3px; color: var(--orange-500); margin-bottom: 14px; }
.stars svg { width: 18px; height: 18px; }
.quote-card blockquote { font-size: 1.05rem; color: var(--ink); line-height: 1.6; }
.quote-card .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.quote-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(150deg, var(--navy-600), var(--blue-500)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.quote-card .who b { font-family: var(--font-display); color: var(--ink); display: block; font-size: .95rem; }
.quote-card .who span { font-size: .84rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(130deg, var(--navy-800), var(--navy-900)); color: #fff; border-radius: var(--radius-xl); padding: 60px; }
.cta-band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(232,121,30,.35), transparent 65%); }
.cta-band .inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cta-band p { color: #c3cde3; margin-top: 10px; max-width: 520px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 14px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { width: 28px; height: 28px; border-radius: 50%; background: var(--surface-3); display: grid; place-items: center; flex-shrink: 0; transition: transform .25s var(--ease), background .2s; }
.faq summary .ico svg { width: 16px; height: 16px; color: var(--navy-700); }
.faq details[open] summary .ico { transform: rotate(45deg); background: var(--orange-500); }
.faq details[open] summary .ico svg { color: #fff; }
.faq .answer { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--navy-800); color: #eaf0fb; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 400px at 85% -20%, rgba(74,95,165,.5), transparent 60%), radial-gradient(600px 300px at 5% 120%, rgba(232,121,30,.14), transparent 60%); }
.page-hero .container { position: relative; z-index: 2; padding: 66px 24px; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin: 16px 0 14px; max-width: 760px; }
.page-hero p { color: #c3cde3; font-size: 1.12rem; max-width: 620px; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--blue-300); font-family: var(--font-display); }
.crumbs a:hover { color: #fff; }
.crumbs svg { width: 14px; height: 14px; opacity: .7; }

/* ---------- Property cards ---------- */
.prop { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s; }
.prop:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prop .thumb { position: relative; aspect-ratio: 16 / 10; background: linear-gradient(160deg, var(--navy-600), var(--navy-900)); overflow: hidden; }
.prop .thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.prop .status { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--orange-500); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.prop .status.sold { background: var(--navy-700); }
.prop .body { padding: 22px; }
.prop .price { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--navy-800); }
.prop .addr { color: var(--muted); font-size: .95rem; margin-top: 4px; }
.prop .specs { display: flex; gap: 18px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .9rem; color: var(--body); }
.prop .specs span { display: inline-flex; align-items: center; gap: 6px; }
.prop .specs svg { width: 16px; height: 16px; color: var(--blue-500); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.info-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 16px; transition: border-color .2s, box-shadow .2s; }
.info-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.info-card .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--surface-3); color: var(--navy-700); display: grid; place-items: center; flex-shrink: 0; }
.info-card .ic svg { width: 22px; height: 22px; }
.info-card h4 { font-family: var(--font-display); font-size: 1rem; color: var(--ink); margin-bottom: 3px; }
.info-card p, .info-card a { color: var(--muted); font-size: .96rem; }
.info-card a:hover { color: var(--orange-600); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }

.form-success { display: none; text-align: center; padding: 20px; }
.form-success.show { display: block; }
.form-success .big { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: #e7f7ee; color: #1f9d5b; display: grid; place-items: center; }
.form-success .big svg { width: 32px; height: 32px; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card .photo { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 18px; background: linear-gradient(150deg, var(--navy-600), var(--blue-500)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; box-shadow: var(--shadow); }
.team-card h3 { font-size: 1.2rem; }
.team-card .role { color: var(--orange-600); font-family: var(--font-display); font-weight: 600; font-size: .9rem; margin-top: 2px; }
.team-card p { color: var(--muted); font-size: .95rem; margin-top: 12px; }

/* ---------- Value list (investors) ---------- */
.value-list { display: grid; gap: 22px; }
.value-list li { display: flex; gap: 18px; }
.value-list .vnum { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--orange-600); width: 40px; height: 40px; border-radius: 12px; background: var(--orange-100); display: grid; place-items: center; flex-shrink: 0; }
.value-list b { font-family: var(--font-display); color: var(--ink); display: block; margin-bottom: 4px; font-size: 1.08rem; }
.value-list span { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #aab6d0; padding-top: 72px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .logo { height: 42px; margin-bottom: 18px; }
.footer-brand p { font-size: .96rem; max-width: 320px; color: #9aa6c2; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--orange-500); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; color: #fff; }
.footer-col h4 { color: #fff; font-family: var(--font-display); font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; padding: 6px 0; font-size: .95rem; transition: color .18s, transform .18s; }
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-contact li { display: flex; gap: 11px; padding: 6px 0; font-size: .95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--orange-400); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 26px 0; font-size: .87rem; color: #7d89a8; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* ---------- Mobile nav ---------- */
.mobile-nav { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.mobile-nav .scrim { position: absolute; inset: 0; background: rgba(16,24,45,.5); opacity: 0; transition: opacity .3s; }
.mobile-nav .panel { position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 86vw); background: #fff; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .35s var(--ease); display: flex; flex-direction: column; padding: 22px; overflow-y: auto; }
.mobile-nav.open { visibility: visible; }
.mobile-nav.open .scrim { opacity: 1; }
.mobile-nav.open .panel { transform: none; }
.mobile-nav .m-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mobile-nav .m-head .logo { height: 38px; }
.mobile-nav .close { width: 44px; height: 44px; border-radius: 11px; border: 1px solid var(--line); display: grid; place-items: center; }
.mobile-nav .close svg { width: 22px; height: 22px; }
.mobile-nav a.m-link { padding: 14px 12px; border-radius: 10px; font-family: var(--font-display); font-weight: 500; color: var(--ink); font-size: 1.05rem; border-bottom: 1px solid var(--line); }
.mobile-nav a.m-link:hover { background: var(--surface-2); }
.mobile-nav .m-cta { margin-top: 22px; display: grid; gap: 12px; }
.mobile-nav .m-phone { text-align: center; margin-top: 18px; font-family: var(--font-display); font-weight: 600; color: var(--navy-800); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.hide-mobile { }
.only-mobile { display: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .nav, .header-phone, .header-cta > .btn { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { gap: 12px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 80px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split > * { min-width: 0; }
  .split-media { min-height: 320px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr); }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .grid-2, .grid-3, .grid-4, .pill-grid, .steps { grid-template-columns: 1fr; }
  .compare > div { padding: 12px 11px; font-size: .8rem; gap: 7px; overflow-wrap: anywhere; }
  .compare .ch { font-size: .82rem; }
  .compare svg { width: 15px; height: 15px; }
  .steps::before { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; }
  .trustbar-inner { justify-content: center; }
  .stat { flex: 1 1 40%; }
  .cta-band { padding: 40px 28px; }
  .cta-band .inner { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions .btn { width: 100%; }
  .only-mobile { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
