/* ═══════════════════════════════════════════
   LEASEORSELL.CA — STYLESHEET
   Colour scheme: Dark Navy + Gold + White
   ═══════════════════════════════════════════ */

:root {
  --navy:        #0d1526;
  --navy-mid:    #152236;
  --navy-light:  #1e2e4a;
  --navy-border: #2a3650;
  --gold:        #c9a84c;
  --gold-light:  #e8c86a;
  --gold-dark:   #a07830;
  --white:       #ffffff;
  --off-white:   #f8f9fb;
  --light-bg:    #f0f2f7;
  --text-dark:   #0d1117;
  --text-mid:    #3d4a5c;
  --text-muted:  #7a8a9e;
  --text-light:  #b0bdd0;
  --success:     #22c55e;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.16);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --transition:   0.25s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font-family: var(--font-body); }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.9rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; font-weight: 700; }
h5 { font-size: 1rem; font-weight: 700; }
em { color: var(--gold); font-style: normal; }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); }
.section-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.section-label.light { color: var(--gold-light); }
.section-sub { color: var(--text-mid); max-width: 620px; margin-top: 0.75rem; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  border: 1.5px solid var(--navy-border);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost-light {
  display: inline-block;
  background: transparent;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost-light:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ─── FORMS ─── */
input[type="text"], input[type="email"], input[type="tel"],
select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #d1d9e6;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  margin-bottom: 0.75rem;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }

/* ─── POPUP ─── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,15,28,0.75);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.popup-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.2rem;
  cursor: pointer; color: var(--text-muted);
}
.popup-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.popup-box h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.popup-box p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 1.25rem; }
.popup-trust { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; }
.form-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 0.5rem; }

/* ─── NAV ─── */
#main-nav {
  background: var(--navy);
  position: sticky; top: 0; z-index: 500;
  border-bottom: 1px solid var(--navy-border);
}
.nav-container {
  max-width: 1300px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center;
  height: 64px;
  gap: 0.5rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  flex: 1;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-phone { color: var(--gold) !important; font-weight: 500; }
.nav-hamburger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; margin-left: auto; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: 3rem;
  padding: 5rem 4rem;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,15,28,0.93) 0%, rgba(10,15,28,0.80) 60%, rgba(10,15,28,0.70) 100%);
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero-sub { color: var(--text-light); font-size: 1rem; max-width: 560px; margin-bottom: 0.5rem; line-height: 1.7; }
.hero-sub strong { color: var(--gold-light); }
.hero-disclaimer { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.hero-disclaimer a { color: var(--gold); text-decoration: underline; }
.hero-regions {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2rem;
}
.hero-regions span {
  font-size: 0.75rem;
  color: var(--text-light);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label { display: block; font-size: 0.8rem; color: var(--white); font-weight: 500; margin: 0.2rem 0 0.1rem; }
.stat-sub { display: block; font-size: 0.7rem; color: var(--text-muted); }
.hero-form-wrap { position: relative; z-index: 1; }
.hero-form-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.hero-form-card h3 { font-size: 1.25rem; margin-bottom: 0.25rem; color: var(--navy); }
.hero-form-card > p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.hero-form textarea { min-height: 80px; resize: vertical; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.trust-item { font-size: 0.75rem; color: var(--text-light); white-space: nowrap; }
.trust-check { color: var(--gold); margin-right: 0.3rem; }

/* ─── STEPS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.step-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(201,168,76,0.18);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-card h4 { margin-bottom: 0.5rem; }
.step-card p { color: var(--text-mid); font-size: 0.9rem; }

/* ─── SERVICES GRID (homepage) ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  display: block;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--gold); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 1.25rem; }
.service-arrow { font-size: 0.85rem; color: var(--gold); font-weight: 500; }

/* ─── CALCULATOR ─── */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}
.calc-slider-label { font-size: 0.8rem; font-weight: 500; color: var(--text-mid); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }
.calc-price-display {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  background: #dde3ed;
  border-radius: 2px;
  margin-bottom: 0.4rem;
  border: none;
  padding: 0;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.calc-range-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.calc-coop-label { font-size: 0.8rem; color: var(--text-mid); margin-bottom: 0.25rem; font-weight: 500; }
.calc-coop-val { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 1.25rem; }
.calc-breakdown { border: 1px solid #e2e8f0; border-radius: var(--radius); overflow: hidden; margin-bottom: 1.25rem; }
.calc-row { display: flex; justify-content: space-between; padding: 0.7rem 1rem; font-size: 0.85rem; border-bottom: 1px solid #e2e8f0; }
.calc-row:last-child { border-bottom: none; }
.calc-row.trad span:last-child { color: var(--text-mid); }
.calc-row.ours { background: rgba(201,168,76,0.06); }
.calc-row.ours span:last-child { color: var(--gold-dark); font-weight: 600; }
.calc-row.hst span:last-child { color: var(--success); }
.calc-savings-highlight { animation: savingsPulse 2s ease-in-out infinite; }
@keyframes savingsPulse { 0%,100%{box-shadow:0 0 0 0 rgba(201,168,76,0.4)} 50%{box-shadow:0 0 0 10px rgba(201,168,76,0)} }
.calc-savings-box { border: 2px solid var(--gold) !important; background: linear-gradient(135deg, var(--navy) 0%, #1a2a4a 100%) !important;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.calc-savings-box span:first-child { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }
.calc-savings-num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--gold); }
.calc-disclaimer { font-size: 0.72rem; color: var(--text-muted); }
.compare-table { background: var(--white); border: 1px solid #e2e8f0; border-radius: var(--radius-lg); overflow: hidden; }
.compare-header { background: var(--navy); color: var(--gold-light); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.75rem 1.25rem; font-weight: 500; }
.compare-cols { display: grid; grid-template-columns: 1fr 40px 1fr; }
.compare-col { padding: 1.25rem; }
.compare-vs { display: flex; align-items: center; justify-content: center; background: var(--off-white); font-size: 0.7rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.06em; }
.col-label { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.3rem; }
.col-badge { display: inline-block; font-size: 0.72rem; padding: 0.2rem 0.6rem; border-radius: 20px; background: #e2e8f0; color: var(--text-mid); margin-bottom: 0.5rem; }
.col-badge.gold { background: rgba(201,168,76,0.15); color: var(--gold-dark); }
.col-rate { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.col-rate.gold { color: var(--gold); }
.compare-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid #f0f4f9; font-size: 0.8rem; }
.compare-row span:first-child { color: var(--text-mid); }
.compare-row span:last-child { font-weight: 500; }
.our-col .compare-row span:last-child { color: var(--gold-dark); }
.feature-row span:last-child { font-size: 0.75rem; }
.pos { color: var(--success) !important; }
.neg { color: #ef4444 !important; }
.compare-total { padding: 0.75rem 0 0; font-size: 0.82rem; font-weight: 500; color: var(--text-mid); }
.total-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--navy); }
.total-num.gold { color: var(--gold); }
.total-sub { font-size: 0.7rem; color: var(--text-muted); }
.compare-savings-bar { background: var(--gold); padding: 0.9rem 1.25rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.compare-savings-bar span:first-child { font-size: 0.8rem; font-weight: 500; color: var(--navy); }
.compare-save-num { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--navy); }
.calc-cta-row { display: flex; gap: 1rem; margin-top: 1.25rem; flex-wrap: wrap; }

/* ─── LEASING TEASER ─── */
.lease-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.lease-teaser h2.light, .section-label.light { color: var(--gold-light); }
.light-sub { color: var(--text-light); margin: 0.75rem 0 1.5rem; }
.lease-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.lease-cards { display: grid; gap: 1.25rem; }
.lease-mini-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: background var(--transition);
}
.lease-mini-card:hover { background: rgba(255,255,255,0.1); }
.lmc-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.lease-mini-card h4 { color: var(--white); margin-bottom: 0.4rem; }
.lease-mini-card p { font-size: 0.85rem; color: var(--text-light); }

/* ─── SPLIT SECTIONS ─── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.split-img img { border-radius: var(--radius-lg); width: 100%; height: 420px; object-fit: cover; }
.split-badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: var(--navy);
  border: 3px solid var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  text-align: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: var(--shadow);
}
.split-badge.gold { color: var(--gold); }
.split-badge span { display: block; font-family: var(--font-body); font-size: 0.7rem; font-weight: 400; color: var(--text-light); margin-top: 0.2rem; }
.split-badge-2 {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--navy);
  border: 3px solid var(--white);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: var(--shadow);
}
.split-badge-2.gold { color: var(--gold); }
.split-badge-2 span { display: block; font-family: var(--font-body); font-size: 0.68rem; font-weight: 400; color: var(--text-light); margin-top: 0.2rem; }
.split-content h2 { margin-bottom: 1rem; }
.split-content p { color: var(--text-mid); margin-bottom: 1.25rem; }
.sell-steps { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 1.25rem; }
.sell-step { display: flex; gap: 1rem; align-items: flex-start; }
.sell-step-num {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.sell-step h5 { margin-bottom: 0.25rem; }
.sell-step p { color: var(--text-mid); font-size: 0.85rem; }
.buy-features { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 1.25rem; }
.buy-feat { display: flex; gap: 1rem; align-items: flex-start; }
.bf-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.buy-feat h5 { margin-bottom: 0.2rem; }
.buy-feat p { color: var(--text-mid); font-size: 0.85rem; }
.disclosure-box {
  background: rgba(201,168,76,0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

/* ─── REGIONS ─── */
.regions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-top: 2rem; }
.region-pill {
  display: block;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 40px;
  padding: 0.7rem 1rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.region-pill:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); color: var(--gold-light); }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.blog-card {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-cat {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}
.blog-body { padding: 1.25rem; }
.blog-body h4 { font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-body p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 0.75rem; }
.blog-meta { font-size: 0.78rem; color: var(--text-muted); display: flex; justify-content: space-between; }
.blog-meta span { color: var(--gold); font-weight: 500; }

/* ─── REVIEWS ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.review-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.review-card p { font-size: 0.88rem; color: var(--text-mid); font-style: italic; flex: 1; }
.review-author { font-size: 0.85rem; font-weight: 600; }
.review-author span { display: block; font-weight: 400; font-size: 0.75rem; color: var(--text-muted); }
.reviews-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.reviews-footer > span { font-size: 0.85rem; color: var(--text-mid); }

/* ─── CTA BAND ─── */
.cta-band { background: var(--navy); padding: 4rem 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: var(--text-light); margin-bottom: 2rem; }
.cta-band-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-item > span { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-info-item strong { display: block; font-size: 0.85rem; margin-bottom: 0.2rem; }
.contact-info-item a { color: var(--gold); font-weight: 500; }
.contact-info-item span.val, .contact-info-item span { font-size: 0.85rem; color: var(--text-mid); }
.agent-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 0.5rem;
}
.agent-avatar {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.agent-info strong { display: block; color: var(--white); margin-bottom: 0.2rem; }
.agent-info > span { display: block; font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.75rem; }
.agent-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.agent-tags span { font-size: 0.68rem; background: rgba(201,168,76,0.15); color: var(--gold-light); padding: 0.2rem 0.6rem; border-radius: 20px; }
.contact-form-wrap { background: var(--white); border: 1px solid #e2e8f0; border-radius: var(--radius-lg); padding: 2rem; }
.contact-form-wrap h3 { margin-bottom: 1.25rem; }
.contact-form textarea { min-height: 100px; resize: vertical; }

/* ─── FOOTER ─── */
footer { background: var(--navy); color: var(--text-light); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 1rem; }
.footer-logo span { color: var(--gold); }
.footer-brand-col p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.brokerage-logo { max-height: 48px; opacity: 0.7; }
.footer-col h5 { color: var(--white); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.85rem; color: var(--text-muted); padding: 0.25rem 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-disclosures {
  border-top: 1px solid var(--navy-border);
  padding-top: 2rem;
  margin-bottom: 1.5rem;
}
.footer-disclosures p { font-size: 0.72rem; color: #4a5568; line-height: 1.65; margin-bottom: 0.75rem; }
.footer-disclosures strong { color: #6b7280; }
.footer-bottom { border-top: 1px solid var(--navy-border); padding-top: 1.5rem; font-size: 0.75rem; color: #4a5568; }

/* ─── PAGE HEADERS (for inner pages) ─── */
.page-hero {
  background: var(--navy);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
  pointer-events: none;
}
.page-hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.page-hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); display: block; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: var(--text-light); font-size: 1rem; max-width: 580px; line-height: 1.7; }
.page-hero .btn-row { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ─── INNER PAGE SECTIONS ─── */
.feature-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3rem; }
.feature-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow var(--transition);
}
.feature-item:hover { box-shadow: var(--shadow); }
.fi-icon-wrap {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.fi-text h5 { margin-bottom: 0.3rem; }
.fi-text p { font-size: 0.85rem; color: var(--text-mid); }

/* ─── LEASE TABS ─── */
.lease-tab-nav { display: flex; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid #e2e8f0; margin-top: 3rem; }
.lt-btn { flex: 1; padding: 1rem; border: none; background: var(--white); font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--text-mid); cursor: pointer; border-right: 1px solid #e2e8f0; transition: background var(--transition), color var(--transition); }
.lt-btn:last-child { border-right: none; }
.lt-btn.active { background: var(--navy); color: var(--gold-light); }
.lease-tab-content { margin-top: 2rem; display: none; }
.lease-tab-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.lease-list { list-style: none; }
.lease-list li { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.85rem 0; border-bottom: 1px solid #f0f4f9; font-size: 0.9rem; color: var(--text-mid); }
.lease-list li:last-child { border-bottom: none; }
.ll-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; margin-top: 0.45rem; flex-shrink: 0; }
.lease-cta-panel { background: var(--navy); border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.lease-cta-panel h3 { color: var(--white); margin-bottom: 0.5rem; }
.lease-cta-panel p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.5rem; }
.lease-cta-panel .phone { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); display: block; margin-top: 1.25rem; }

/* ─── AREAS ─── */
.areas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.area-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: block;
}
.area-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.area-card-img {
  font-size: 0;
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.area-card-body { padding: 1.25rem; }
.area-card-body h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.area-card-body p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 0.75rem; }
.area-card-link { font-size: 0.82rem; color: var(--gold); font-weight: 500; }

/* ─── BLOG PAGE ─── */
.blog-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 2rem 0; }
.bf-tag { background: var(--white); border: 1px solid #e2e8f0; border-radius: 20px; padding: 0.5rem 1rem; font-size: 0.8rem; color: var(--text-mid); cursor: pointer; transition: all var(--transition); }
.bf-tag:hover, .bf-tag.active { background: var(--navy); color: var(--gold-light); border-color: var(--navy); }
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--white); border: 1px solid #e2e8f0; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.bf-img { min-height: 280px; background-size: cover; background-position: center; }
.bf-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.bf-cat { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.75rem; }
.bf-body h3 { font-size: 1.5rem; margin-bottom: 0.75rem; line-height: 1.3; }
.bf-body p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1.25rem; }
.btn-outline { display: inline-block; border: 1.5px solid var(--navy); color: var(--navy); padding: 0.75rem 1.5rem; border-radius: 40px; font-size: 0.85rem; font-weight: 500; transition: all var(--transition); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ─── CONTACT PAGE ─── */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.contact-panel { background: var(--navy); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-panel h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 1.5rem; }
.cp-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--navy-border); }
.cp-row:last-child { border-bottom: none; }
.cp-row-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.cp-row-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); margin-bottom: 0.2rem; font-weight: 500; }
.cp-row-val { font-size: 0.95rem; color: var(--white); font-weight: 500; }
.cp-row-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.15rem; line-height: 1.5; }
.service-select-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.6rem; margin-bottom: 0.75rem; }
.ss-option { border: 1px solid #e2e8f0; border-radius: var(--radius); padding: 0.65rem; text-align: center; font-size: 0.8rem; color: var(--text-mid); cursor: pointer; transition: all var(--transition); background: var(--white); }
.ss-option:hover, .ss-option.selected { background: var(--navy); color: var(--gold-light); border-color: var(--navy); }
.form-label { font-size: 0.8rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.3rem; display: block; }

/* ─── FAQ ─── */
.faq-list { margin-top: 3rem; }
.faq-item { border-bottom: 1px solid #e2e8f0; }
.faq-q { width: 100%; text-align: left; padding: 1.25rem 0; background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; color: var(--text-dark); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q:hover { color: var(--gold-dark); }
.faq-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 1.25rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 2rem; min-height: auto; }
  .hero-form-wrap { display: none; }
  .hero-stats { justify-content: flex-start; }
  .calc-wrap, .lease-teaser, .split-section, .split-section.reverse { grid-template-columns: 1fr; }
  .split-section.reverse { direction: ltr; }
  .compare-table { margin-top: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid, .contact-page-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 1rem; border-top: 1px solid var(--navy-border); z-index: 400; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }
  .steps-grid, .services-grid, .reviews-grid, .blog-grid, .areas-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: repeat(2,1fr); }
  .feature-grid-2 { grid-template-columns: 1fr; }
  .lease-tab-content.active { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .hero { padding: 2.5rem 1.5rem; }
  .cta-band { padding: 3rem 0; }
  .compare-cols { grid-template-columns: 1fr; }
  .compare-vs { display: none; }
  .service-select-grid { grid-template-columns: 1fr; }
}

/* ─── HERO CTA ROW ─── */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.30);
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 40px;
  transition: background var(--transition), border-color var(--transition);
  letter-spacing: 0.01em;
}
.hero-call-btn:hover {
  background: rgba(201,168,76,0.25);
  border-color: var(--gold);
  color: var(--gold-light);
}
.hero-call-icon { font-size: 1rem; }

/* ─── MOBILE STICKY CALL BAR ─── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
}
.mobile-call-btn {
  flex: 1;
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  border-radius: 40px;
}
.mobile-eval-btn {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.75rem 1.25rem;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 72px; }
}


@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }

/* ─── SOCIAL BUTTONS ─── */
.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  color: var(--text-light);
  background: rgba(255,255,255,0.06);
  margin-left: 4px;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.nav-social:hover { background: rgba(201,168,76,0.2); color: var(--gold); }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition);
}
.social-btn.facebook { background: rgba(24,119,242,0.15); color: #4a9cf7; border: 1px solid rgba(24,119,242,0.3); }
.social-btn.facebook:hover { background: rgba(24,119,242,0.28); color: #74b4f9; }
.social-btn.instagram { background: rgba(225,48,108,0.12); color: #e0607e; border: 1px solid rgba(225,48,108,0.25); }
.social-btn.instagram:hover { background: rgba(225,48,108,0.25); color: #f0809e; }

/* ─── MARKET STATS ─── */
.stats-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: background var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.09); }
.stat-card.highlight-card { border-color: rgba(201,168,76,0.35); background: rgba(201,168,76,0.07); }
.sc-region { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.4rem; font-weight: 500; }
.sc-val { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--gold); line-height: 1.1; margin-bottom: 0.4rem; }
.sc-change { font-size: 0.75rem; font-weight: 500; margin-bottom: 0.5rem; }
.sc-change.down { color: #f87171; }
.sc-change.up { color: #4ade80; }
.sc-change.neutral { color: var(--text-muted); }
.sc-src { font-size: 0.68rem; color: var(--text-muted); }

/* ─── CHARTS ─── */
.charts-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.chart-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.chart-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; gap: 1rem; flex-wrap: wrap; }
.chart-header h4 { font-size: 0.9rem; font-weight: 500; color: var(--text-light); margin: 0; line-height: 1.4; }
.chart-src { font-size: 0.68rem; color: var(--text-muted); white-space: nowrap; }
.chart-wrap { height: 220px; position: relative; }

/* ─── MARKET INSIGHTS ─── */
.market-insights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem; }
.mi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: background var(--transition);
}
.mi-card:hover { background: rgba(255,255,255,0.08); }
.mi-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.mi-card h5 { color: var(--white); font-size: 0.85rem; margin-bottom: 0.5rem; }
.mi-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.75rem; }
.mi-card cite { color: var(--gold-light); font-style: normal; font-weight: 500; }
.mi-link { font-size: 0.75rem; color: var(--gold); font-weight: 500; }
.mi-link:hover { color: var(--gold-light); }

@media (max-width: 1024px) {
  .stats-cards-row { grid-template-columns: repeat(2, 1fr); }
  .charts-row { grid-template-columns: 1fr; }
  .market-insights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .stats-cards-row { grid-template-columns: 1fr 1fr; }
  .market-insights-grid { grid-template-columns: 1fr; }
  .chart-wrap { height: 180px; }
}

/* ─── FLOATING CALL BUTTON ─── */
.float-call-btn {
  position: fixed;
  bottom: 90px;
  right: 22px;
  z-index: 999;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.45);
  transition: all 0.2s ease;
  font-family: var(--font-body);
}
.float-call-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(201,168,76,0.55); }
.float-call-btn svg { width:18px; height:18px; flex-shrink:0; }

/* ─── AREA CONTACT POPUP ─── */
.area-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.area-popup-overlay.open { display: flex; }
.area-popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: popIn 0.25s ease;
}
@keyframes popIn { from{transform:scale(0.9);opacity:0} to{transform:scale(1);opacity:1} }
.area-popup-box h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 0.4rem; }
.area-popup-box .area-popup-region { font-size: 0.8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.area-popup-box p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 1.25rem; line-height: 1.6; }
.area-popup-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--text-muted); }
.area-popup-btns { display: flex; flex-direction: column; gap: 10px; }
.area-popup-btns a { text-align: center; padding: 12px; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.area-popup-call { background: var(--gold); color: var(--navy); }
.area-popup-form { background: var(--navy); color: var(--white); }
.area-popup-call:hover { background: var(--gold-light); }
.area-popup-form:hover { background: var(--navy-light); }

/* ─── FAVICON SVG LOGO ─── */
.nav-logo { font-size: 1.15rem; font-weight: 800; letter-spacing: 0.05em; }

/* ─── BETTER COMPARE HIGHLIGHT ─── */
.our-col .compare-total { background: linear-gradient(135deg, var(--navy) 0%, #1c2e50 100%); border-radius: 0 0 8px 8px; padding: 1rem 1.25rem; }
.our-col .total-num.gold { font-size: 2.2rem; color: var(--gold); text-shadow: 0 2px 8px rgba(201,168,76,0.3); }
.compare-savings-bar { background: linear-gradient(90deg, var(--navy) 0%, #1c3060 100%); padding: 1rem 1.5rem; display:flex; justify-content:space-between; align-items:center; border-top: 2px solid var(--gold); }
.compare-save-num { color: var(--gold); font-weight: 700; font-size: 1.05rem; }

/* ─── FOOTER LIGHTER ─── */
footer { background: #1a2a45; }
.footer-bottom { background: #152238; border-top: 1px solid rgba(201,168,76,0.25); }
.footer-bottom span { color: #b0bdd0; font-size: 0.75rem; }
.footer-disclosures { border-top: 1px solid rgba(255,255,255,0.12); padding: 1.5rem 0; }
.footer-disclosures p { color: #9aabbc; font-size: 0.78rem; line-height: 1.65; margin-bottom: 0.5rem; }
.footer-disclosures strong { color: #b8c8d8; }

/* ─── NAV LIGHTER ─── */
#main-nav { background: rgba(13,21,38,0.97); }

/* ─── AREA CARDS WITH REAL PHOTOS ─── */
.area-card { cursor: pointer; }
.area-card-img {
  height: 160px;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.area-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,21,38,0.25) 0%, rgba(13,21,38,0.6) 100%);
}
.area-card-label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-display);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.logo-link img {
  height: 58px !important;
  width: auto !important;
  display: block !important;
  padding: 4px 0 !important;
}

.nav {
  height: 74px !important;
}
/* LOGO FIX */
.logo-top { display: none !important; }
.logo-link img { height: 62px !important; width: auto !important; padding: 4px 0 !important; }
.nav { height: 76px !important; }

/* CALL BUTTON FIX - move left of Tawk */
.los-fab { bottom: 24px !important; left: 24px !important; right: auto !important; z-index: 99999 !important; }