/* ============================================
   CONNECT WITH AGENTS .AI — v3
   Professional · Trustworthy · Lead-First
   ============================================ */

:root {
  --green:        #16a34a;
  --green-dark:   #15803d;
  --green-light:  #dcfce7;
  --green-soft:   #f0fdf4;
  --black:        #0a0a0a;
  --gray-900:     #111827;
  --gray-800:     #1f2937;
  --gray-700:     #374151;
  --gray-500:     #6b7280;
  --gray-400:     #9ca3af;
  --gray-300:     #d1d5db;
  --gray-200:     #e5e7eb;
  --gray-100:     #f3f4f6;
  --gray-50:      #f9fafb;
  --white:        #ffffff;
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    22px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:    0 20px 48px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-xl:    0 32px 80px rgba(0,0,0,0.14);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── SHARED COMPONENTS ──────────────────────── */

.section-header { text-align: center; margin-bottom: 60px; }

.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--gray-900);
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-sub {
  font-size: 0.975rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: var(--green);
  color: white;
  font-weight: 700;
  font-size: 0.925rem;
  padding: 14px 34px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(22,163,74,0.28);
  letter-spacing: -0.01em;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(22,163,74,0.36); }

.btn-primary-white {
  display: inline-block;
  background: white;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.925rem;
  padding: 14px 34px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-primary-white:hover { background: var(--gray-50); transform: translateY(-2px); }

/* ── MODALS ──────────────────────────────────── */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.52);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; animation: fadeIn 0.2s ease; }

.modal {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px 38px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.25s ease;
}

@keyframes slideUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }

.modal-close { position: absolute; top: 15px; right: 17px; background: none; border: none; font-size: 1.5rem; color: var(--gray-400); cursor: pointer; line-height: 1; transition: color 0.15s; }
.modal-close:hover { color: var(--gray-700); }

.modal-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.modal-title { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; color: var(--gray-900); margin-bottom: 4px; }
.modal-sub { font-size: 0.83rem; color: var(--gray-500); margin-bottom: 22px; }
.modal-form { display: flex; flex-direction: column; gap: 11px; }

.modal-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.modal-input:focus { border-color: var(--green); background: white; box-shadow: 0 0 0 3px rgba(22,163,74,0.1); }

.modal-btn { width: 100%; background: var(--green); color: white; font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700; padding: 13px; border: none; border-radius: var(--radius); cursor: pointer; transition: background 0.2s; }
.modal-btn:hover { background: var(--green-dark); }

.modal-links { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 0.76rem; color: var(--gray-500); }
.modal-links a { color: var(--green); text-decoration: none; font-weight: 500; }
.modal-links a:hover { text-decoration: underline; }

.agent-perks { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--gray-100); }
.perks-label { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); margin-bottom: 10px; }
.perks-list { display: flex; flex-wrap: wrap; gap: 7px; }
.perks-list span { font-size: 0.74rem; font-weight: 600; color: var(--green-dark); background: var(--green-soft); padding: 4px 10px; border-radius: 100px; border: 1px solid var(--green-light); }

/* ── NAVBAR ──────────────────────────────────── */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  padding: 13px 0;
  transition: box-shadow 0.2s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; text-decoration: none; }
.logo-mark { width: 31px; height: 31px; background: var(--green); color: white; font-weight: 800; font-size: 0.9rem; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
img.logo-mark { background: none; border-radius: 0; object-fit: contain; }
.logo-text { font-weight: 700; font-size: 0.98rem; color: var(--gray-900); letter-spacing: -0.01em; }
.logo-ai { color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; flex: 1; justify-content: center; }
.nav-links a { font-size: 0.83rem; font-weight: 500; color: var(--gray-700); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--green); }

.nav-auth { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.btn-agent-portal { display: inline-block; background: none; border: 1.5px solid var(--gray-200); color: var(--gray-700); font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; padding: 8px 15px; border-radius: 8px; cursor: pointer; transition: all 0.15s; white-space: nowrap; text-decoration: none; min-width: 110px; text-align: center; }
.btn-agent-portal:hover { border-color: var(--green); color: var(--green); }

.btn-nav { display: inline-block; background: var(--green); color: white; font-size: 0.8rem; font-weight: 700; padding: 9px 19px; border-radius: 8px; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.btn-nav:hover { background: var(--green-dark); }

.nav-mobile-btn { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--gray-700); }

/* ── HERO ────────────────────────────────────── */

.hero {
  padding: 112px 0 88px;
  background: var(--white) url('hero-bg.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 22% -5%, rgba(237,253,244,0.9) 0%, transparent 60%),
    linear-gradient(to right, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.78) 55%, rgba(255,255,255,0.60) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 100px; padding: 6px 15px; font-size: 0.77rem; font-weight: 500; color: var(--gray-700); margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; animation: pulse 2.4s infinite; }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-headline { font-size: clamp(2.1rem, 3.6vw, 3.3rem); font-weight: 900; letter-spacing: -0.035em; line-height: 1.07; color: var(--gray-900); margin-bottom: 18px; }
.headline-accent { color: var(--green); }

.hero-sub { font-size: 1rem; color: var(--gray-500); line-height: 1.72; margin-bottom: 30px; max-width: 420px; }

.hero-trust { display: flex; flex-direction: column; gap: 11px; }
.ht-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--gray-700); font-weight: 500; }
.ht-icon { width: 21px; height: 21px; background: var(--green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.hero-right { display: flex; justify-content: flex-start; }

/* ── WIZARD CARD ─────────────────────────────── */

.wizard-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px 30px 26px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.055), 0 24px 60px rgba(0,0,0,0.11);
}

.progress-bar-wrap { height: 3px; background: var(--gray-100); border-radius: 100px; margin-bottom: 8px; overflow: hidden; }
.progress-bar { height: 100%; background: var(--green); border-radius: 100px; width: calc(100% / 7); transition: width 0.4s ease; }

.wiz-counter-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }

.step-counter { font-size: 0.68rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; }

.wiz-secure { display: flex; align-items: center; gap: 5px; font-size: 0.68rem; font-weight: 600; color: var(--gray-400); }
.wiz-secure svg { flex-shrink: 0; }

.wizard-step { display: none; }
.wizard-step.active { display: block; animation: fadeSlide 0.26s ease; }

@keyframes fadeSlide { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: translateX(0); } }

.step-question { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.015em; color: var(--gray-900); margin-bottom: 5px; line-height: 1.3; }
.step-hint { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 16px; line-height: 1.55; }

/* ── CHOICE BUTTONS ──────────────────────────── */

.choice-grid { display: grid; gap: 9px; margin-bottom: 6px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }

.choice-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 8px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-50);
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Inter', sans-serif;
  text-align: center;
}
.choice-btn:hover { border-color: var(--green); background: var(--green-soft); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.choice-btn.selected { border-color: var(--green); background: var(--green-light); box-shadow: 0 0 0 3px rgba(22,163,74,0.1); }

.choice-icon { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: var(--green-soft); border: 1.5px solid var(--green-light); border-radius: 50%; flex-shrink: 0; }
.choice-icon svg { color: var(--green); stroke: var(--green); }
.choice-btn.selected .choice-icon { background: var(--green-light); border-color: var(--green); }
.choice-label { font-size: 0.78rem; font-weight: 600; color: var(--gray-700); line-height: 1.3; }
.choice-sub { font-size: 0.68rem; color: var(--gray-500); line-height: 1.3; margin-top: 1px; }

/* Credit score buttons */
.credit-btn { align-items: flex-start; padding: 14px 14px; gap: 3px; }
.credit-range { font-size: 1rem; font-weight: 800; color: var(--gray-900); letter-spacing: -0.02em; }
.credit-label { font-size: 0.8rem; font-weight: 700; color: var(--green-dark); }
.credit-note { font-size: 0.7rem; color: var(--gray-500); line-height: 1.35; margin-top: 2px; }

.btn-skip { width: 100%; background: none; border: none; font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 500; color: var(--gray-400); cursor: pointer; margin-top: 10px; text-align: center; text-decoration: underline; padding: 4px; transition: color 0.15s; }
.btn-skip:hover { color: var(--gray-600, #4b5563); }

/* ── LOCATION INPUT ──────────────────────────── */

.location-input-wrap {
  position: relative;
  margin-bottom: 14px;
}

.loc-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
  z-index: 1;
}

.loc-input { padding-left: 40px !important; }

/* ── AUTOCOMPLETE ────────────────────────────── */

.autocomplete-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  list-style: none;
  z-index: 200;
  max-height: 220px;
  overflow-y: auto;
  display: none;
}
.autocomplete-list.open { display: block; animation: fadeSlide 0.18s ease; }
.autocomplete-list li { padding: 10px 14px; font-size: 0.86rem; color: var(--gray-700); cursor: pointer; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 10px; transition: background 0.1s; }
.autocomplete-list li:last-child { border-bottom: none; }
.autocomplete-list li:hover { background: var(--green-soft); color: var(--green-dark); }
.autocomplete-list li::before { content: '📍'; font-size: 0.75rem; flex-shrink: 0; }

/* ── ADDRESS ESTIMATE ────────────────────────── */

.address-estimate { background: var(--green-soft); border: 1.5px solid var(--green-light); border-radius: var(--radius); padding: 13px 15px; margin-top: 8px; margin-bottom: 4px; animation: fadeSlide 0.3s ease; }
.ae-header { display: flex; align-items: center; gap: 7px; margin-bottom: 5px; }
.ae-check { width: 17px; height: 17px; background: var(--green); color: white; border-radius: 50%; font-size: 0.58rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ae-confirmed { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-dark); }
.ae-address-display { font-size: 0.84rem; font-weight: 600; color: var(--gray-900); margin-bottom: 9px; line-height: 1.4; }
.ae-estimate-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 7px; }
.ae-est-label { font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green-dark); margin-bottom: 2px; }
.ae-est-value { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.02em; color: var(--gray-900); transition: all 0.3s; }
.ae-est-value.researching { color: var(--gray-400); animation: pulse 1.2s infinite; }
.ae-zillow-btn { display: inline-block; background: white; border: 1.5px solid var(--green-light); color: var(--green-dark); font-size: 0.7rem; font-weight: 700; padding: 6px 11px; border-radius: 6px; text-decoration: none; white-space: nowrap; transition: background 0.15s; flex-shrink: 0; }
.ae-zillow-btn:hover { background: var(--green-light); }
.ae-note { font-size: 0.71rem; color: var(--green-dark); line-height: 1.5; opacity: 0.8; }

/* ── WIZARD INPUTS ───────────────────────────── */

.input-group { display: flex; flex-direction: column; gap: 11px; margin-bottom: 14px; }

.wizard-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.wizard-input:focus { border-color: var(--green); background: white; box-shadow: 0 0 0 3px rgba(22,163,74,0.09); }
.wizard-input::placeholder { color: var(--gray-400); }

.btn-next, .btn-submit-wizard {
  width: 100%;
  background: var(--green);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
  letter-spacing: -0.01em;
  margin-top: 6px;
  box-shadow: 0 3px 12px rgba(22,163,74,0.22);
}
.btn-next:hover, .btn-submit-wizard:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 5px 16px rgba(22,163,74,0.3); }

.contact-form { display: flex; flex-direction: column; gap: 9px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.wizard-disclaimer { display: flex; align-items: center; justify-content: center; gap: 5px; text-align: center; font-size: 0.68rem; color: var(--gray-400); margin-top: 5px; }
.wizard-disclaimer svg { flex-shrink: 0; }

.btn-back { background: none; border: none; font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 500; color: var(--gray-400); cursor: pointer; margin-top: 12px; display: block; transition: color 0.15s; }
.btn-back:hover { color: var(--gray-700); }

.success-wrap { text-align: center; padding: 12px 0; }
.success-circle { width: 64px; height: 64px; background: var(--green); color: white; font-size: 1.7rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 8px 24px rgba(22,163,74,0.28); }
.success-wrap h3 { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; color: var(--gray-900); margin-bottom: 10px; }
.success-wrap p { color: var(--gray-500); font-size: 0.88rem; line-height: 1.65; margin-bottom: 20px; }
.success-next { background: var(--green-soft); border: 1px solid var(--green-light); border-radius: var(--radius); padding: 12px 16px; font-size: 0.82rem; font-weight: 500; color: var(--green-dark); display: flex; align-items: center; justify-content: center; gap: 10px; }
.success-next svg { stroke: var(--green-dark); flex-shrink: 0; }
.agent-location svg { flex-shrink: 0; }

/* ── BROKERAGE TRUST BAR ─────────────────────── */

.brokerage-bar {
  padding: 32px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.brokerage-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.brokerage-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.brokerage-logo {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 8px 16px;
  border-radius: 6px;
  background: white;
  border: 1px solid var(--gray-200);
  line-height: 1.35;
  white-space: nowrap;
  transition: border-color 0.15s;
}
.brokerage-logo:hover { border-color: var(--gray-400); }

.brokerage-logo.kw       { color: #B40000; }
.brokerage-logo.remax    { color: #D9232D; font-size: 0.9rem; letter-spacing: -0.01em; }
.brokerage-logo.compass  { color: #0a0a0a; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }
.brokerage-logo.cb       { color: #003DA5; }
.brokerage-logo.c21      { color: #8B6914; text-transform: uppercase; letter-spacing: 0.04em; }
.brokerage-logo.sothebys { color: #002B5C; font-style: italic; }
.brokerage-logo.exp      { color: #0078A0; }
.brokerage-logo.bhhs     { color: #3B3B3B; }

/* ── AGENT GRID ──────────────────────────────── */

.agents-section {
  padding: 100px 0 84px;
  background: white;
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

.agent-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 26px 22px 20px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  cursor: default;
}
.agent-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gray-200); }

.agent-photo-wrap { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }

.agent-photo {
  width: 68px; height: 68px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: white;
  overflow: hidden;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--gray-200);
}
.agent-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.av-1 { background: linear-gradient(135deg, #1a3a6c, #2d6aaf); }
.av-2 { background: linear-gradient(135deg, #16a34a, #15803d); }
.av-3 { background: linear-gradient(135deg, #0d9488, #0f766e); }
.av-4 { background: linear-gradient(135deg, #6d28d9, #5b21b6); }
.av-5 { background: linear-gradient(135deg, #c2750a, #a36009); }
.av-6 { background: linear-gradient(135deg, #374151, #1f2937); }

.agent-meta { flex: 1; min-width: 0; }
.agent-name { font-size: 0.97rem; font-weight: 700; color: var(--gray-900); letter-spacing: -0.01em; margin-bottom: 2px; }
.agent-brokerage { font-size: 0.76rem; color: var(--gray-500); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.agent-location { font-size: 0.76rem; color: var(--gray-500); }

/* Google Reviews Badge */
.agent-google {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  padding: 8px 11px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
}

.google-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.google-logo svg { width: 16px; height: 16px; }

.google-stars { font-size: 0.7rem; color: #f59e0b; letter-spacing: 0.5px; }
.google-rating { font-size: 0.82rem; font-weight: 700; color: var(--gray-900); }
.google-count { font-size: 0.74rem; color: var(--gray-500); }

.agent-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.agent-tag { font-size: 0.68rem; font-weight: 600; color: var(--gray-600, #4b5563); background: var(--gray-100); padding: 3px 8px; border-radius: 100px; border: 1px solid var(--gray-200); }

.agents-cta { text-align: center; }
.agents-cta-note { font-size: 0.78rem; color: var(--gray-400); margin-top: 12px; }

/* ── HOW IT WORKS ────────────────────────────── */

.how-it-works { padding: 100px 0; background: var(--gray-50); border-top: 1px solid var(--gray-100); }

.steps { display: flex; align-items: flex-start; }

.step { flex: 1; text-align: center; padding: 36px 26px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--gray-100); transition: transform 0.25s, box-shadow 0.25s; }
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.step-num { font-size: 0.67rem; font-weight: 800; letter-spacing: 0.1em; color: var(--green); text-transform: uppercase; margin-bottom: 13px; }
.step-icon-wrap { width: 56px; height: 56px; background: var(--green-soft); border: 1.5px solid var(--green-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-icon-wrap svg { color: var(--green); stroke: var(--green); }
.step h3 { font-size: 0.975rem; font-weight: 700; color: var(--gray-900); margin-bottom: 9px; letter-spacing: -0.01em; }
.step p { font-size: 0.84rem; color: var(--gray-500); line-height: 1.65; }

.step-connector { width: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; position: relative; top: 54px; }
.step-connector::after { content: '→'; font-size: 1.1rem; color: var(--gray-300); }

/* ── WHY US / PROMISE ────────────────────────── */

.promise-section { padding: 100px 0; background: var(--gray-900); }

.promise-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.promise-left .eyebrow { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.09); }

.promise-title { font-size: clamp(1.6rem, 2.6vw, 2.15rem); font-weight: 800; letter-spacing: -0.025em; color: white; line-height: 1.15; margin-bottom: 18px; }

.promise-body { font-size: 0.9rem; color: rgba(255,255,255,0.58); line-height: 1.82; }

.promise-right { display: flex; flex-direction: column; gap: 14px; padding-top: 6px; }

.promise-card { display: flex; align-items: flex-start; gap: 15px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 17px 18px; transition: background 0.2s; }
.promise-card:hover { background: rgba(255,255,255,0.07); }

.pc-icon { width: 38px; height: 38px; background: rgba(22,163,74,0.15); border: 1px solid rgba(22,163,74,0.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pc-icon svg { color: #4ade80; stroke: #4ade80; }
.pc-title { font-size: 0.88rem; font-weight: 700; color: white; margin-bottom: 4px; letter-spacing: -0.01em; }
.promise-card p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── CONTACT ─────────────────────────────────── */

.contact-section { padding: 100px 0; background: var(--white); }

.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.contact-title { font-size: clamp(1.6rem, 2.6vw, 2.15rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 16px; margin-top: 10px; }

.contact-body { font-size: 0.9rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 28px; }

.contact-links { display: flex; flex-direction: column; gap: 14px; }

.contact-link { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1px solid var(--gray-200); border-radius: var(--radius); text-decoration: none; color: var(--gray-900); transition: border-color 0.15s, box-shadow 0.15s; }
.contact-link:hover { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,0.08); }

.cl-icon { width: 42px; height: 42px; background: var(--green-soft); border: 1.5px solid var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green); }

.cl-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); margin-bottom: 3px; }
.cl-value { font-size: 0.88rem; font-weight: 600; color: var(--green); }

.contact-form-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 16px; padding: 32px; }

.cf2-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf2-group { margin-bottom: 16px; }
.cf2-group label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-600); margin-bottom: 6px; }
.cf2-group input, .cf2-group textarea { width: 100%; padding: 11px 13px; border: 1.5px solid var(--gray-200); border-radius: 9px; font-size: 0.88rem; font-family: inherit; color: var(--gray-900); background: white; outline: none; transition: border-color 0.15s; }
.cf2-group input:focus, .cf2-group textarea:focus { border-color: var(--green); }
.cf2-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.cf2-btn { width: 100%; padding: 13px; background: var(--green); color: white; border: none; border-radius: 9px; font-size: 0.9rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: background 0.15s; }
.cf2-btn:hover { background: var(--green-dark); }
.cf2-success { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 0.85rem; font-weight: 500; color: var(--green); }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .cf2-row { grid-template-columns: 1fr; }
}

/* ── FINAL CTA ───────────────────────────────── */

.final-cta { padding: 100px 0; background: var(--green); text-align: center; }

.final-cta h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; letter-spacing: -0.025em; color: white; margin-bottom: 14px; margin-top: 10px; }
.final-cta p { font-size: 0.975rem; color: rgba(255,255,255,0.78); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.final-note { font-size: 0.76rem; color: rgba(255,255,255,0.55); margin-top: 14px; }

/* ── FOOTER ──────────────────────────────────── */

.footer { background: #090909; padding: 64px 0 28px; }

.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 26px; }

.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.32); margin-top: 12px; max-width: 270px; line-height: 1.68; }

.footer-links-group { display: flex; flex-direction: column; gap: 11px; }
.footer-links-group h4 { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 2px; }
.footer-links-group a { font-size: 0.82rem; color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.15s; cursor: pointer; }
.footer-links-group a:hover { color: white; }

.footer-bottom p { font-size: 0.74rem; color: rgba(255,255,255,0.18); text-align: center; }

/* ── RESPONSIVE ──────────────────────────────── */

@media (max-width: 1040px) {
  .hero-inner { gap: 44px; }
  .promise-inner { gap: 52px; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 57px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 8px 28px 16px;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .nav-links.open li { width: 100%; border-bottom: 1px solid var(--gray-100); }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a { display: block; padding: 13px 0; font-size: 0.9rem; }
  .btn-agent-portal { display: none; }
  .nav-mobile-btn { display: block; }

  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-right { justify-content: stretch; }
  .wizard-card { max-width: 100%; }
  .hero-headline { font-size: clamp(2rem, 6.5vw, 3rem); }

  .agent-grid { grid-template-columns: repeat(2, 1fr); }

  .steps { flex-direction: column; align-items: center; gap: 12px; }
  .step-connector { top: 0; width: auto; height: 26px; }
  .step-connector::after { content: '↓'; }

  .promise-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .hero { padding: 100px 0 56px; }
  .agent-grid { grid-template-columns: 1fr; }
  .wizard-card { padding: 26px 18px 22px; }
  .cf-row { grid-template-columns: 1fr; }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .cols-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .brokerage-logos { gap: 6px; }
  .brokerage-logo { font-size: 0.66rem; padding: 6px 10px; }
}
