/* ==========================================================================
   Eternal Home Buyers — Design System
   Brand: deep navy + cyan. Built for speed, accessibility, and conversion.
   ========================================================================== */

:root {
  /* Brand */
  --navy-950: #060e1c;
  --navy-900: #0a1628;
  --navy-800: #0f2138;
  --navy-700: #16304f;
  --accent:   #22cdd9;
  --accent-2: #14b8c4;
  --accent-soft: rgba(34, 205, 217, 0.12);

  /* Neutrals */
  --ink:      #0c1726;
  --body:     #45556a;
  --muted:    #6b7a90;
  --line:     #e4e9f0;
  --surface:  #ffffff;
  --surface-2:#f6f9fc;
  --surface-3:#eef3f8;

  /* Feedback */
  --good: #16a34a;
  --bad:  #ef5a6f;
  --star: #f5b32b;

  /* System */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(12,23,38,.06), 0 1px 3px rgba(12,23,38,.05);
  --shadow:    0 10px 30px -12px rgba(12,23,38,.18);
  --shadow-lg: 0 30px 60px -22px rgba(12,23,38,.28);
  --maxw: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2rem);
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, 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%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--surface);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.85rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); font-weight: 700; }
p { text-wrap: pretty; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
section[id], [id].section { scroll-margin-top: 88px; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--navy { background: var(--navy-900); color: #cdd7e4; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--alt { background: var(--surface-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 1rem;
}
.section--navy .eyebrow { color: var(--accent); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; font-size: 1.12rem; color: var(--muted); }
.section--navy .section-head p { color: #9fb0c4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 1rem 1.6rem; border-radius: 999px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, color .18s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--navy-950); box-shadow: 0 12px 26px -10px rgba(34,205,217,.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(34,205,217,.7); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn--dark { background: var(--navy-900); color: #fff; }
.btn--dark:hover { background: var(--navy-800); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent-2); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.15rem 2rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.site-header.is-stuck {
  background: rgba(10,22,40,.92); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 8px 30px -18px rgba(0,0,0,.8);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: .65rem; font-weight: 800; color: #fff; font-size: 1.18rem; letter-spacing: -.02em; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--navy-950);
  box-shadow: 0 8px 20px -8px rgba(34,205,217,.7); flex-shrink: 0;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand small { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .04em; color: var(--accent); margin-top: 1px; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { color: rgba(255,255,255,.82); font-weight: 600; font-size: .96rem; transition: color .15s; }
.nav__links a:hover { color: #fff; }
.nav__cta { display: flex; align-items: center; gap: 1rem; }
.nav__phone { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 700; font-size: .95rem; }
.nav__phone svg { width: 18px; height: 18px; color: var(--accent); }

.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 10px; color: #fff; }
.nav__toggle svg { width: 26px; height: 26px; margin-inline: auto; }

@media (max-width: 920px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; align-items: flex-start; gap: .25rem;
    position: absolute; left: var(--gutter); right: var(--gutter); top: 72px;
    background: var(--navy-800); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow-lg);
  }
  .nav.is-open .nav__links a { width: 100%; padding: .7rem .5rem; border-radius: 8px; }
  .nav.is-open .nav__links a:hover { background: rgba(255,255,255,.06); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; padding-top: 110px; padding-bottom: 3rem; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,14,28,.72) 0%, rgba(6,14,28,.82) 55%, rgba(6,14,28,.96) 100%),
    radial-gradient(120% 80% at 15% 20%, rgba(34,205,217,.18), transparent 60%);
}
.hero__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; width: 100%; }
@media (max-width: 960px) { .hero__grid { grid-template-columns: 1fr; } .hero__card { display: none; } }
.hero__inner { max-width: 640px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1.5rem;
  padding: .5rem 1rem; border-radius: 999px; font-size: .85rem; font-weight: 600;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(6px);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #36e07b; box-shadow: 0 0 0 4px rgba(54,224,123,.25); }
.hero h1 {
  color: #fff; font-size: clamp(2.4rem, 6.4vw, 4.5rem); line-height: 1.04; letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--accent); }
.hero__sub { font-size: clamp(1.08rem, 2.2vw, 1.35rem); color: rgba(255,255,255,.85); max-width: 600px; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.75rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; }
.hero__trust li { display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .98rem; color: rgba(255,255,255,.9); }
.hero__trust svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }

/* Hero social proof */
.hero__proof { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.hero__proof .stars { display: inline-flex; gap: 2px; color: var(--star); }
.hero__proof .stars svg { width: 18px; height: 18px; }
.hero__proof span:last-child { color: rgba(255,255,255,.82); font-size: .92rem; font-weight: 600; }

/* Hero offer card */
.hero__card {
  background: rgba(8, 18, 33, .58); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.16); border-radius: 22px; padding: 1.75rem;
  box-shadow: 0 34px 70px -28px rgba(0,0,0,.75); color: #fff;
}
.hero__card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.hero__card-pill { background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(34,205,217,.4); padding: .4rem .85rem; border-radius: 999px; font-size: .78rem; font-weight: 700; letter-spacing: .02em; }
.hero__card-time { color: rgba(255,255,255,.6); font-size: .85rem; font-weight: 600; }
.hero__card h2 { color: #fff; font-size: 1.4rem; margin-bottom: 1.1rem; letter-spacing: -.01em; }
.hero__card-list { display: grid; gap: .8rem; margin-bottom: 1.5rem; }
.hero__card-list li { display: flex; align-items: flex-start; gap: .65rem; color: rgba(255,255,255,.92); font-weight: 600; font-size: .98rem; }
.hero__card-list svg { width: 21px; height: 21px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.hero__card-note { text-align: center; color: rgba(255,255,255,.55); font-size: .82rem; margin-top: .9rem; }
.hero__scroll { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.5); animation: bob 2s var(--ease) infinite; }
.hero__scroll svg { width: 26px; height: 26px; }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- Stat strip ---------- */
.stats { background: var(--navy-950); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: 2.5rem; text-align: center; }
.stats__num { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--accent); letter-spacing: -.02em; }
.stats__label { font-size: .92rem; color: #9fb0c4; margin-top: .25rem; }
@media (max-width: 720px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1rem; } }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: -1; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split__media .badge-float {
  position: absolute; bottom: -22px; left: -22px; background: #fff; color: var(--ink);
  border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .85rem; max-width: 260px;
}
.split__media .badge-float .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-2); display: grid; place-items: center; flex-shrink: 0; }
.split__media .badge-float strong { display: block; font-size: 1.05rem; color: var(--ink); }
.split__media .badge-float span { font-size: .85rem; color: var(--muted); }
@media (max-width: 520px) { .split__media .badge-float { left: 8px; bottom: -16px; } }

.checklist { display: grid; gap: .9rem; margin-top: 1.5rem; }
.checklist li { display: flex; align-items: flex-start; gap: .75rem; font-weight: 600; color: var(--ink); }
.checklist svg { width: 24px; height: 24px; color: var(--good); flex-shrink: 0; margin-top: 1px; }
.section--navy .checklist li { color: #e3ebf4; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2.25rem 1.75rem 2rem; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(34,205,217,.45); }
.step__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.step__num {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center; font-size: 1.35rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  box-shadow: 0 10px 22px -12px rgba(15,33,56,.7);
}
.step__ico {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-2);
}
.step__ico svg { width: 26px; height: 26px; }
.step h3 { margin-bottom: .6rem; }
.step p { color: var(--muted); font-size: .98rem; }
.step__line { width: 36px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); margin-bottom: 1.1rem; }

/* ---------- Feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1.75rem 1.5rem; transition: transform .25s var(--ease), background .25s, border-color .25s;
}
.card:hover { transform: translateY(-5px); background: rgba(255,255,255,.07); border-color: rgba(34,205,217,.4); }
.card__ico { width: 50px; height: 50px; border-radius: 13px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 1.1rem; }
.card__ico svg { width: 26px; height: 26px; }
.card h3 { color: #fff; font-size: 1.18rem; margin-bottom: .5rem; }
.card p { color: #9fb0c4; font-size: .95rem; }

/* light variant */
.cards--light .card { background: var(--surface); border-color: var(--line); box-shadow: var(--shadow-sm); }
.cards--light .card:hover { background: var(--surface); border-color: var(--accent); box-shadow: var(--shadow); }
.cards--light .card h3 { color: var(--ink); }
.cards--light .card p { color: var(--muted); }

/* ---------- Situations (chips grid) ---------- */
.situations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 820px) { .situations { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .situations { grid-template-columns: 1fr; } }
.situation {
  display: flex; align-items: center; gap: .9rem; padding: 1.1rem 1.25rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  font-weight: 700; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), border-color .2s;
}
.situation:hover { transform: translateY(-3px); border-color: var(--accent); }
.situation .ico { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-2); display: grid; place-items: center; flex-shrink: 0; }
.situation .ico svg { width: 22px; height: 22px; }

/* ---------- Comparison table ---------- */
.compare-wrap { max-width: 760px; margin-inline: auto; }
.compare {
  width: 100%; border-collapse: separate; border-spacing: 0; background: var(--surface);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.compare th, .compare td { padding: 1.1rem 1.25rem; text-align: center; border-bottom: 1px solid var(--line); }
.compare thead th { font-size: 1rem; font-weight: 800; }
.compare thead th:first-child { text-align: left; color: var(--muted); font-weight: 600; }
.compare thead .col-us { background: var(--navy-900); color: #fff; position: relative; }
.compare thead .col-us::after { content: "Most chosen"; position: absolute; top: 6px; left: 0; right: 0; font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.compare tbody td:first-child { text-align: left; font-weight: 700; color: var(--ink); }
.compare .col-us { background: rgba(34,205,217,.06); font-weight: 800; color: var(--accent-2); }
.compare .col-realtor { color: var(--muted); }
.compare tbody tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--good); font-weight: 800; }
.compare .no { color: var(--bad); font-weight: 700; }
.compare-inline-ico { display: inline-block; vertical-align: -3px; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 860px; margin-inline: auto; }
.team--single { grid-template-columns: 1fr; max-width: 620px; }
@media (max-width: 680px) { .team { grid-template-columns: 1fr; } }
.member {
  display: flex; gap: 1.25rem; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm);
}
.member__avatar {
  width: 76px; height: 76px; border-radius: 20px; flex-shrink: 0; display: grid; place-items: center;
  font-size: 1.6rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--navy-800), var(--accent-2));
}
.member h3 { margin-bottom: .1rem; }
.member .role { color: var(--accent-2); font-weight: 700; font-size: .9rem; margin-bottom: .6rem; }
.member p { font-size: .94rem; color: var(--muted); }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }
.quote {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 1.25rem;
}
.quote__stars { display: flex; gap: 3px; color: var(--star); }
.quote__stars svg { width: 19px; height: 19px; }
.quote p { color: #dbe4ee; font-size: 1.05rem; line-height: 1.6; flex: 1; }
.quote__by { display: flex; align-items: center; gap: .85rem; }
.quote__av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: var(--navy-950); background: linear-gradient(135deg, var(--accent), var(--accent-2)); font-size: .95rem; }
.quote__by strong { color: #fff; display: block; font-size: .98rem; }
.quote__by span { color: #8fa1b6; font-size: .85rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: .9rem; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.faq details[open] { border-color: var(--accent); box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.3rem 1.5rem; font-weight: 700; color: var(--ink);
  font-size: 1.08rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 24px; height: 24px; flex-shrink: 0; color: var(--accent-2); transition: transform .25s var(--ease); }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq .faq__body { padding: 0 1.5rem 1.4rem; color: var(--body); }
.faq .faq__body p + p { margin-top: .75rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info .lead { font-size: 1.12rem; color: var(--muted); margin: 1rem 0 2rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem; margin-bottom: 1rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), border-color .2s;
}
.contact-card:hover { transform: translateX(4px); border-color: var(--accent); }
.contact-card .ico { width: 48px; height: 48px; border-radius: 13px; background: var(--accent-soft); color: var(--accent-2); display: grid; place-items: center; flex-shrink: 0; }
.contact-card .ico svg { width: 24px; height: 24px; }
.contact-card span { display: block; font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.contact-card strong { font-size: 1.1rem; color: var(--ink); }
.form-shell {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: .75rem; overflow: hidden;
}
.form-shell h3 { padding: 1.25rem 1.25rem .25rem; }
.form-shell p.muted { padding: 0 1.25rem 1rem; color: var(--muted); font-size: .95rem; }
.form-sms-consent { padding: .75rem 0 0; color: var(--muted); font-size: .78rem; line-height: 1.5; margin: 0; }
.form-sms-consent a { color: var(--accent-2); text-decoration: underline; }
.form-sms-consent a:hover { color: var(--accent); }

/* ---------- Native contact form ---------- */
.contact-form { padding: .25rem 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.form-field .req { color: var(--accent-2); }
.form-field input,
.form-field select {
  width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-family: var(--font); font-size: .95rem;
  color: var(--ink); background: var(--surface); outline: none;
  transition: border-color .18s, box-shadow .18s;
  appearance: none; -webkit-appearance: none;
}
.form-field input::placeholder { color: var(--muted); }
.form-field input:focus,
.form-field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.form-field input.is-invalid,
.form-field select.is-invalid { border-color: var(--bad); box-shadow: 0 0 0 3px rgba(239,90,111,.12); }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7a90' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; padding-right: 2.5rem; cursor: pointer; }
.consent-label { display: flex; align-items: flex-start; gap: .65rem; font-size: .82rem; color: var(--body); line-height: 1.5; cursor: pointer; }
.consent-label input[type="checkbox"] { flex-shrink: 0; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--accent); cursor: pointer; }
.form-status { padding: .85rem 1rem; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500; }
.form-status--success { background: #edfaf5; color: #15803d; border: 1px solid #bbf7d0; }
.form-status--error   { background: #fff1f3; color: #be123c; border: 1px solid #fecdd3; }
#formSubmit:disabled { opacity: .65; cursor: not-allowed; }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: #fff; border-radius: clamp(20px, 4vw, 32px); padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(34,205,217,.25), transparent 65%); }
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p { color: #b6c4d6; font-size: 1.15rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-banner .hero__actions { justify-content: center; margin-bottom: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: #93a3b8; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer .brand { margin-bottom: 1rem; }
.footer__about { font-size: .95rem; line-height: 1.7; max-width: 320px; margin-bottom: 1.25rem; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer__links { display: grid; gap: .65rem; }
.footer__links a { color: #93a3b8; font-size: .95rem; transition: color .15s; }
.footer__links a:hover { color: var(--accent); }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; margin-bottom: .7rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; font-size: .88rem; }
.footer__bottom a:hover { color: var(--accent); }
.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__disclaimer { font-size: .8rem; color: #5e6f85; margin-top: 1.25rem; line-height: 1.6; }

/* ---------- Scroll reveal (only hides when JS is active) ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- Floating mobile call bar ---------- */
.call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none;
  padding: .65rem var(--gutter) calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(10,22,40,.96); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,.1);
  gap: .75rem;
}
.call-bar .btn { flex: 1; padding: .85rem 1rem; }
@media (max-width: 640px) { .call-bar { display: flex; } body { padding-bottom: 70px; } }

/* ---------- Landing page form trust signals ---------- */
.lp-response { display: flex; align-items: center; gap: .45rem; margin-bottom: 1rem; color: rgba(255,255,255,.72); font-size: .82rem; }
.lp-response svg { flex-shrink: 0; }
.lp-response strong { color: #36e07b; }
.lp-or-call { text-align: center; margin-top: .65rem; color: rgba(255,255,255,.45); font-size: .82rem; }
.lp-or-call a { color: rgba(255,255,255,.75); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.lp-or-call a:hover { color: #fff; }

/* ---------- Utilities ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-accent { color: var(--accent); }
.section--navy .text-accent { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   MOBILE FIXES — header, footer, overflow  (2026-06-28)
   ============================================================ */
html { overflow-x: hidden; }

/* Landing-page footer (.site-footer) was never given a background — its
   light-on-dark text + white headings rendered on white. Mirror .footer. */
.site-footer { background: var(--navy-950); color: #93a3b8; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
/* Process steps are an <ol>; the styled number badges replace list markers */
.steps { list-style: none; margin: 0; padding: 0; }
/* Testimonials section was built for a dark bg (white heading, frosted cards,
   #dbe4ee text) but had none → unreadable on white. Give it the navy bg. */
/* The .testimonials grid class is meant for the inner quote container, but it's
   also on the <section>, turning the section into a 3-col grid that squished the
   content into the left third on desktop. Force the section back to block. */
section.testimonials { background: var(--navy-900); display: block; }
section.testimonials .section-header h2 { color: #fff; }
/* iOS Safari renders <select> value text faint (it ignores `color` on form
   controls without -webkit-text-fill-color) — force it dark so it's readable. */
.form-field select,
.lp-form-panel select { color: var(--ink) !important; -webkit-text-fill-color: var(--ink) !important; opacity: 1; }
.form-field select option { color: #0c1726; background: #fff; }

@media (max-width: 640px) {
  /* --- Compact single-row header (no wrapping, no overlap) --- */
  .nav { height: 60px; }
  .brand { font-size: 1rem; gap: .5rem; min-width: 0; }
  .brand > span { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand small { display: none; }
  .brand__mark { width: 32px; height: 32px; flex-shrink: 0; }
  .brand__mark svg { width: 18px; height: 18px; }
  .nav__cta { gap: .5rem; flex-shrink: 0; }
  .site-header .btn--primary { padding: .6rem .95rem; font-size: .85rem; }
  /* Phone moves to the bottom sticky call bar on mobile — keep header clean.
     .nav.lp-nav specificity (3 classes) overrides the inline lp-nav !important. */
  .nav.lp-nav .nav__phone { display: none !important; }

  /* --- Landing-page footers: stack to one column (covers both 1.4fr & 1.6fr inline grids) --- */
  footer [style*="grid-template-columns:1.4fr"],
  footer [style*="grid-template-columns:1.6fr"] { grid-template-columns: 1fr !important; gap: 2rem !important; }
  footer a[href^="mailto:"] { overflow-wrap: anywhere; word-break: break-word; }

  /* --- Testimonial cards: never force-overflow on narrow phones --- */
  .quotes { grid-template-columns: 1fr !important; }

  /* --- Comparison table: force it to FIT the viewport (no clipped column).
     table.compare-table (0,1,1) beats the page's inline .compare-table (0,1,0). --- */
  table.compare-table { table-layout: fixed; width: 100%; font-size: .74rem; }
  table.compare-table th, table.compare-table td { padding: .5rem .45rem; overflow-wrap: break-word; vertical-align: top; }
  table.compare-table th { font-size: .72rem; }
  table.compare-table th:first-child, table.compare-table td:first-child { width: 32%; }

  /* Sticky mobile "Call" bar removed per preference (was a conversion CTA).
     body #mobileBar specificity beats the page's inline #mobileBar !important. */
  body #mobileBar { display: none !important; }
  .call-bar { display: none !important; }
  body { padding-bottom: 0 !important; }
}


/* ---------- Property-types grid (static, no carousel) ---------- */
.ptype-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ptype { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 26px -14px rgba(0,0,0,.2); }
.ptype img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.ptype figcaption { padding: .85rem 1rem; font-weight: 700; color: var(--ink); text-align: center; font-size: 1rem; }
@media (max-width: 700px) {
  .ptype-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .ptype figcaption { font-size: .85rem; padding: .6rem .5rem; }
}


/* ---------- Bottom-CTA left-column image (fills desktop empty space) ---------- */
.cta-media { margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-media img { width: 100%; display: block; aspect-ratio: 16 / 10; object-fit: cover; }
@media (max-width: 860px) { .cta-media { display: none; } }


/* ---------- Mobile inline call button (hero form) ----------
   Restores phone access on mobile (header phone hidden, sticky bar removed
   per preference). Inline — scrolls with the page, never sticky. */
.hero-call-btn { display: none; }
@media (max-width: 640px) {
  .hero-call-btn {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    flex-wrap: wrap; row-gap: .15rem; text-align: center;
    margin-top: .9rem; padding: .95rem .75rem; border-radius: 999px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25);
    color: #fff; font-weight: 700; font-size: .92rem;
  }
}

/* ==== Two-step lead form ==== */
.form-step-indicator {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .02em;
  opacity: .85;
  margin: 0 0 .4rem;
}
.form-address-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  background: rgba(54, 224, 123, .12);
  border: 1px solid rgba(54, 224, 123, .45);
  border-radius: 10px;
  padding: .55rem .8rem;
  font-size: .9rem;
  margin-bottom: .5rem;
  word-break: break-word;
}
.form-address-edit {
  background: none;
  border: none;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  font-size: .85rem;
  padding: 0;
  opacity: .8;
  flex-shrink: 0;
}
.form-address-edit:hover { opacity: 1; }

/* ==== Self-hosted Plus Jakarta Sans (variable, wght 200-800) ==== */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/assets/fonts/pjs-cyrillic-ext.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/assets/fonts/pjs-vietnamese.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/assets/fonts/pjs-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/assets/fonts/pjs-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ==== Mobile polish (Jul 5) ==== */
/* FL-generation stat strip used .stat__* (unstyled until now) — mirror .stats__* */
ul.stats__grid { list-style: none; margin: 0; padding-left: 0; }
.stat__num { display: block; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--accent); letter-spacing: -.02em; }
.stat__label { display: block; font-size: .92rem; color: #9fb0c4; margin-top: .25rem; }

/* ==== Activity ticker / urgency signal near CTA ==== */
.activity-ticker {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  background: rgba(54,224,123,.1);
  border: 1px solid rgba(54,224,123,.28);
  border-radius: 8px;
  padding: .45rem .75rem;
  margin-bottom: .9rem;
  min-height: 2rem;
}
/* Light background variant (ctaForm lives on a white card) */
.activity-ticker--light {
  color: var(--ink);
  background: rgba(34,205,217,.08);
  border-color: rgba(34,205,217,.3);
}
.activity-ticker__dot {
  width: 8px;
  height: 8px;
  background: #36e07b;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.activity-ticker--light .activity-ticker__dot {
  background: var(--accent);
}
.activity-ticker__text {
  transition: opacity .35s ease;
  line-height: 1.3;
}
.activity-ticker__text--fade { opacity: 0; }
