:root {
  --navy: #071b33;
  --navy-2: #0e2b4d;
  --gold: #f2b63d;
  --gold-2: #ffd67a;
  --ink: #102033;
  --muted: #627084;
  --surface: #f7f8fb;
  --line: #e6e9ef;
  --white: #ffffff;
  --success: #12815b;
  --shadow: 0 22px 70px rgba(7, 27, 51, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 999;
  background: var(--gold); color: var(--navy); padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(230,233,239,.85);
}
.nav {
  min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; color: var(--navy); }
.brand img { width: 42px; height: 42px; }
.brand-name { font-size: 1.22rem; letter-spacing: -.03em; }
.brand-name span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { text-decoration: none; font-size: .95rem; font-weight: 650; color: #304056; }
.nav-links a:hover { color: var(--navy); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  border: 1px solid var(--line); background: var(--white); color: var(--navy); border-radius: 999px;
  padding: 9px 13px; font-weight: 700; cursor: pointer;
}
.menu-toggle { display: none; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 20px; border-radius: 14px; font-weight: 800;
  text-decoration: none; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 12px 28px rgba(242,182,61,.25); }
.btn-primary:hover { background: var(--gold-2); }
.btn-secondary { border-color: rgba(255,255,255,.22); color: var(--white); background: rgba(255,255,255,.06); }
.btn-light { background: var(--white); color: var(--navy); border-color: var(--line); }

.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(242,182,61,.22), transparent 25%),
    linear-gradient(135deg, #06192f 0%, #0b2a4d 62%, #0f365f 100%);
  color: var(--white); padding: 88px 0 78px;
}
.hero::after {
  content: ""; position: absolute; width: 520px; height: 520px; right: -210px; bottom: -280px;
  border: 1px solid rgba(242,182,61,.25); border-radius: 50%; box-shadow: 0 0 0 70px rgba(242,182,61,.04), 0 0 0 140px rgba(242,182,61,.025);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .94fr; gap: 64px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--gold-2); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--gold); }
.hero h1 { margin: 14px 0 18px; font-size: clamp(2.7rem, 6vw, 5.5rem); line-height: .98; letter-spacing: -.055em; max-width: 760px; }
.hero h1 span { color: var(--gold); }
.hero-copy { color: #dbe5ef; max-width: 650px; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.release-pill { margin-top: 24px; display: inline-flex; align-items: center; gap: 10px; color: #dce7f2; font-size: .9rem; }
.release-pill i { width: 8px; height: 8px; border-radius: 50%; background: #41d895; box-shadow: 0 0 0 6px rgba(65,216,149,.12); }

.phone-shell {
  width: min(390px, 86%); margin: 0 auto; background: #0a1525; padding: 12px; border-radius: 42px;
  box-shadow: 0 35px 80px rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.18); transform: rotate(2deg);
}
.phone-screen { min-height: 610px; background: #f8f9fb; border-radius: 32px; overflow: hidden; color: var(--ink); }
.phone-top { background: var(--white); padding: 22px 20px 16px; border-bottom: 1px solid var(--line); }
.phone-top small { color: var(--muted); }
.phone-top strong { display: block; margin-top: 3px; color: var(--navy); font-size: 1.1rem; }
.search-mock { margin-top: 14px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 14px; color: #7c8795; font-size: .9rem; }
.phone-banner { margin: 16px; padding: 21px; background: linear-gradient(135deg, var(--navy), #123d69); border-radius: 20px; color: white; min-height: 150px; position: relative; overflow: hidden; }
.phone-banner::after { content: "⌂"; position: absolute; right: 14px; bottom: -28px; font-size: 8rem; color: rgba(242,182,61,.18); }
.phone-banner b { display: block; color: var(--gold); font-size: 1.5rem; }
.quick-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 0 16px 14px; }
.quick { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 12px 6px; text-align: center; font-size: .73rem; font-weight: 800; }
.mock-list { padding: 0 16px 16px; }
.mock-list h4 { margin: 8px 0 10px; color: var(--navy); }
.card-mock { display: grid; grid-template-columns: 90px 1fr; gap: 12px; background: white; border: 1px solid var(--line); border-radius: 16px; padding: 9px; margin-bottom: 10px; }
.card-img { border-radius: 12px; min-height: 78px; background: linear-gradient(135deg, #d8dee7, #f7d58d); }
.card-mock strong { display: block; color: var(--navy); font-size: .87rem; }
.card-mock span { color: var(--muted); font-size: .75rem; }
.card-mock em { display: block; color: var(--success); font-size: .73rem; font-style: normal; font-weight: 800; margin-top: 7px; }

.section { padding: 88px 0; }
.section.soft { background: var(--surface); }
.section.dark { background: var(--navy); color: white; }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head h2 { margin: 8px 0 10px; font-size: clamp(2rem,4vw,3.25rem); line-height: 1.08; letter-spacing: -.04em; color: var(--navy); }
.dark .section-head h2 { color: white; }
.section-head p { color: var(--muted); margin: 0; }
.dark .section-head p { color: #c6d3e0; }
.kicker { color: #a87513; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; font-size: .78rem; }

.three-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: var(--white); box-shadow: 0 16px 45px rgba(7,27,51,.05); }
.feature-card .icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: #fff6df; color: #9a6a0e; font-weight: 900; font-size: 1.25rem; }
.feature-card h3 { color: var(--navy); margin: 20px 0 8px; font-size: 1.35rem; }
.feature-card p { color: var(--muted); margin: 0; }

.process { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; counter-reset: step; }
.step { position: relative; border-top: 1px solid rgba(255,255,255,.17); padding-top: 26px; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: var(--navy); font-weight: 900; margin-bottom: 18px; }
.step h3 { margin: 0 0 7px; font-size: 1.05rem; }
.step p { margin: 0; color: #bdcada; font-size: .93rem; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.trust-panel { background: var(--white); border: 1px solid var(--line); border-radius: 30px; padding: 34px; box-shadow: var(--shadow); }
.trust-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.trust-row:last-child { border-bottom: 0; }
.trust-check { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: #e8f7f1; color: var(--success); font-weight: 900; }
.trust-row strong { display: block; color: var(--navy); }
.trust-row span { display: block; color: var(--muted); font-size: .9rem; margin-top: 3px; }

.cta { background: linear-gradient(135deg, #f7d681, var(--gold)); border-radius: 30px; padding: 42px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--navy); }
.cta h2 { margin: 0 0 8px; font-size: clamp(2rem,4vw,3.2rem); letter-spacing: -.045em; line-height: 1.04; }
.cta p { margin: 0; max-width: 680px; color: #4c3a14; }
.cta .btn { background: var(--navy); color: white; white-space: nowrap; }

.site-footer { background: #041326; color: #b9c5d2; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 48px; }
.footer-brand { max-width: 410px; }
.footer-brand .brand-name { color: white; }
.footer-brand p { color: #94a4b6; }
.footer-col h4 { color: white; margin: 5px 0 14px; }
.footer-col a { display: block; text-decoration: none; color: #aebdcc; margin: 8px 0; }
.footer-col a:hover { color: white; }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; font-size: .87rem; color: #7f90a4; }

.legal-hero { background: var(--navy); color: white; padding: 72px 0; }
.legal-hero h1 { font-size: clamp(2.4rem,5vw,4rem); margin: 8px 0 12px; letter-spacing: -.05em; }
.legal-wrap { width: min(860px, calc(100% - 40px)); margin: 0 auto; padding: 64px 0 88px; }
.legal-wrap h2 { color: var(--navy); margin-top: 36px; }
.legal-wrap h3 { color: var(--navy); margin-top: 26px; }
.legal-wrap p, .legal-wrap li { color: #46556a; }
.legal-wrap .notice { background: #fff8e7; border: 1px solid #f2d485; border-radius: 16px; padding: 18px 20px; color: #69531b; }


@media (max-width: 920px) {
  .nav-links { position: fixed; inset: 74px 20px auto; background: white; border: 1px solid var(--line); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; display: none; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .nav-actions .btn { display: none; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 66px; }
  .phone-shell { margin-top: 24px; }
  .three-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero { padding: 54px 0 58px; }
  .hero h1 { font-size: 3.25rem; }
  .section { padding: 66px 0; }
  .process { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .cta { padding: 30px 24px; }
}


/* v2 brand + coverage + image-rich listing updates */
.brand-full { gap: 0; }
.brand-full img {
  width: auto;
  height: 50px;
  max-width: 260px;
  object-fit: contain;
}
.hero-logo {
  width: min(430px, 84%);
  height: auto;
  background: rgba(255,255,255,.97);
  border-radius: 18px;
  padding: 9px 14px;
  margin-bottom: 24px;
  box-shadow: 0 14px 35px rgba(0,0,0,.16);
}
.phone-screen { min-height: 720px; }
.phone-banner {
  background:
    linear-gradient(90deg, rgba(7,27,51,.98) 0%, rgba(7,27,51,.82) 48%, rgba(7,27,51,.10) 100%),
    url('/assets/hero-house.jpg') center/cover no-repeat;
}
.phone-banner::after { display:none; }
.card-img {
  min-height: 78px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.card-img-rent { background-image: url('/assets/rent-home.jpg'); }
.card-img-sale { background-image: url('/assets/sale-home.jpg'); }
.card-img-land { background-image: url('/assets/land-sale.svg'); }

.image-card { padding: 0; overflow: hidden; }
.feature-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #eef2f5;
}
.feature-card-body { padding: 26px 28px 30px; }
.feature-card-body h3 { margin-top: 12px; }
.service-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: #e7f7f5;
  color: #087e7b;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.coverage-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(13,143,139,.11), transparent 22%),
    #f8fafc;
}
.coverage-head { max-width: 820px; }
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.coverage-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 14px 42px rgba(7,27,51,.06);
}
.coverage-top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}
.region-dot {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #0d8f8b);
  box-shadow: inset 0 0 0 7px rgba(255,255,255,.9);
}
.coverage-top small {
  display: block;
  color: #7a8797;
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.coverage-top h3 {
  margin: 1px 0 0;
  color: var(--navy);
  font-size: 1.3rem;
}
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.city-list span {
  padding: 7px 10px;
  border-radius: 10px;
  background: #f4f6f8;
  border: 1px solid #e8ebef;
  color: #405066;
  font-size: .84rem;
  font-weight: 700;
}
.mode-row { display:flex; gap:8px; }
.mode-chip {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 66px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #071b33;
  color:#fff;
  font-weight:800;
  font-size:.78rem;
}
.mode-chip.mode-buy { background:#0d8f8b; }
.coverage-note {
  margin: 18px 4px 0;
  color: #718095;
  font-size: .86rem;
}

.footer-logo-shell {
  display: inline-flex;
  background: #fff;
  border-radius: 14px;
  padding: 7px 10px;
  margin-bottom: 10px;
}
.footer-brand-logo img { height: 54px; max-width: 285px; }

@media (max-width: 920px) {
  .brand-full img { height: 46px; max-width: 220px; }
  .coverage-grid { grid-template-columns: 1fr; }
  .feature-image { height: 250px; }
}
@media (max-width: 600px) {
  .brand-full img { height: 40px; max-width: 195px; }
  .hero-logo { width: 88%; padding: 8px 10px; }
  .feature-image { height: 210px; }
  .coverage-card { padding: 22px; }
}
