/*
Theme Name: San Diego Home Hub
Theme URI: https://sandiegohomehub.com
Author: Elite Digital Marketing
Description: Apex lead-generation WordPress theme for San Diego Home Hub. Built for maximum conversions, local SEO dominance, and coastal luxury branding.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sd-home-hub
Tags: real-estate, lead-generation, san-diego, coastal, luxury, local-seo
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --navy:        #1B3660;
  --navy-mid:    #243F72;
  --navy-light:  #2D4E85;
  --teal:        #2B7BA8;
  --teal-mid:    #3590C0;
  --teal-light:  #5EB5D8;
  --teal-pale:   #D4EDF7;
  --gold:        #C8963C;
  --gold-light:  #E0B050;
  --gold-pale:   #F5E8CC;
  --sand:        #F5F0E8;
  --white:       #FFFFFF;
  --gray-100:    #F8F9FA;
  --gray-200:    #E9ECEF;
  --gray-500:    #6C757D;
  --gray-700:    #495057;
  --gray-900:    #1A2332;
  --green:       #27AE60;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', 'Helvetica Neue', sans-serif;

  --shadow-sm:   0 2px 8px rgba(27,54,96,.10);
  --shadow-md:   0 8px 32px rgba(27,54,96,.16);
  --shadow-lg:   0 20px 60px rgba(27,54,96,.22);
  --shadow-teal: 0 8px 40px rgba(43,123,168,.3);
  --shadow-gold: 0 8px 40px rgba(200,150,60,.3);

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   28px;

  --transition:      all .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .6s cubic-bezier(.4,0,.2,1);
  --container:   1240px;
  --section-pad: 100px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: var(--section-pad) 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 20px; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.section-header { text-align: center; }
em { font-style: italic; color: var(--teal-mid); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.5; flex-shrink: 0; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  transform: translateX(-110%);
  transition: transform .4s ease;
}
.btn:hover::after { transform: translateX(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 50px rgba(43,123,168,.45); color: var(--white); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); color: var(--white); box-shadow: var(--shadow-lg); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
  border-color: transparent;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 50px rgba(200,150,60,.45); color: var(--navy); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white); }

.btn-outline-teal {
  background: transparent;
  color: var(--teal-light);
  border-color: var(--teal-light);
}
.btn-outline-teal:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

.btn-lg { padding: 20px 48px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  padding: 10px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,.75); }
.top-bar a:hover { color: var(--teal-light); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item .tb-icon { color: var(--teal-light); display: flex; }
.top-bar-item .tb-icon svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }
.top-bar-badge {
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: .7rem;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.top-bar-badge-outline {
  color: var(--teal-light);
  border: 1px solid rgba(94,181,216,.4);
  font-weight: 700;
  font-size: .7rem;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--white); stroke-width: 1.5; }
.logo-text .logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  display: block;
}
.logo-text .logo-name em { color: var(--teal); font-style: italic; }
.logo-text .logo-tagline {
  font-size: .62rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  font-size: .84rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: .02em;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--teal); background: rgba(43,123,168,.08); }
.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; }
.header-phone .hp-label { font-size: .62rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.header-phone a { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--navy); text-decoration: none; }
.header-phone a:hover { color: var(--teal); }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
  border-radius: var(--radius-sm);
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); width: 100%; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    rgba(27,54,96,.95) 0%,
    rgba(27,54,96,.82) 45%,
    rgba(43,123,168,.35) 100%
  );
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--white);
  opacity: .08;
  z-index: 1;
}
.hero-wave svg { width: 100%; height: 60px; }
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: center;
}
.hero-content { max-width: 640px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(94,181,216,.15);
  border: 1px solid rgba(94,181,216,.35);
  border-radius: 30px;
  padding: 8px 22px;
  color: var(--teal-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeSlideDown .8s ease forwards;
  opacity: 0;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeSlideUp .9s .2s ease forwards;
  opacity: 0;
}
.hero h1 em { color: var(--teal-light); font-style: italic; }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  max-width: 560px;
  animation: fadeSlideUp .9s .4s ease forwards;
  opacity: 0;
  line-height: 1.75;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeSlideUp .9s .6s ease forwards;
  opacity: 0;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeSlideUp .9s .8s ease forwards;
  opacity: 0;
}
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item .ht-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-trust-item .ht-num .ht-plus { font-size: 1.2rem; color: var(--teal-light); }
.hero-trust-item .ht-label { font-size: .68rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.hero-trust-divider { width: 1px; height: 38px; background: rgba(255,255,255,.2); }

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: fadeSlideUp .9s .3s ease forwards;
  opacity: 0;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%);
  border-radius: 0 0 4px 4px;
}
.hfc-header { text-align: center; margin-bottom: 28px; }
.hfc-eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal);
  display: block; margin-bottom: 10px;
}
.hfc-header h3 { font-size: 1.6rem; color: var(--navy); line-height: 1.2; margin-bottom: 8px; }
.hfc-header p { font-size: .85rem; color: var(--gray-500); }

/* Forms */
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--gray-900);
  background: var(--gray-100);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(43,123,168,.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit-btn { margin-top: 6px; }
.form-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .73rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 12px;
  justify-content: center;
}
.form-privacy svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.45);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll-arrow {
  width: 28px; height: 28px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-scroll-arrow svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy);
  padding: 28px 0;
  border-top: 1px solid rgba(94,181,216,.2);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.85);
}
.trust-bar-icon {
  width: 44px; height: 44px;
  background: rgba(94,181,216,.12);
  border: 1px solid rgba(94,181,216,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  flex-shrink: 0;
}
.trust-bar-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.trust-bar-text .tb-label { font-size: .68rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; display: block; }
.trust-bar-text .tb-value { font-weight: 700; font-size: .9rem; color: var(--white); display: block; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--sand); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 0;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%);
  transform: scaleX(0);
  transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-img { height: 220px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-body { padding: 28px; }
.service-icon {
  width: 50px; height: 50px;
  background: var(--teal-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 16px;
}
.service-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }
.service-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--gray-500); margin-bottom: 20px; line-height: 1.65; }
.service-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-feature { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--gray-700); }
.service-feature .check { width: 18px; height: 18px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white); }
.service-feature .check svg { width: 8px; height: 8px; fill: none; stroke: currentColor; stroke-width: 3; }

/* ============================================================
   WHY SAN DIEGO
   ============================================================ */
.why-sd { background: var(--white); }
.why-sd-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-sd-image { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.why-sd-image img {
  width: 100%; height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}
.why-sd-badge {
  position: absolute;
  bottom: 32px; right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 190px;
}
.why-sd-badge .badge-icon { font-size: 2rem; flex-shrink: 0; }
.why-sd-badge .badge-title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.why-sd-badge .badge-sub { font-size: .72rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.why-sd-lead { font-size: 1.05rem; color: var(--gray-500); margin-bottom: 32px; line-height: 1.8; }
.why-stats-row { display: flex; gap: 32px; margin-bottom: 36px; flex-wrap: wrap; }
.why-stat { display: flex; flex-direction: column; }
.ws-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--teal); line-height: 1; }
.ws-pct { font-size: 1.5rem; }
.ws-label { font-size: .72rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-top: 4px; }
.why-benefits { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.why-benefit { display: flex; gap: 14px; align-items: flex-start; }
.wb-icon { width: 22px; height: 22px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; color: var(--white); }
.wb-icon svg { width: 10px; height: 10px; fill: none; stroke: currentColor; stroke-width: 3; }
.wb-text strong { display: block; font-size: .95rem; color: var(--navy); margin-bottom: 3px; font-weight: 600; }
.wb-text span { font-size: .85rem; color: var(--gray-500); line-height: 1.5; }

/* ============================================================
   NEIGHBORHOODS
   ============================================================ */
.neighborhoods { padding: var(--section-pad) 0; }
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.nbhd-card {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.nbhd-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.nbhd-card-img { position: absolute; inset: 0; }
.nbhd-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.nbhd-card:hover .nbhd-card-img img { transform: scale(1.08); }
.nbhd-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,54,96,.92) 0%, rgba(27,54,96,.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
}
.nbhd-type { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 6px; }
.nbhd-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.nbhd-med { font-size: .78rem; color: rgba(255,255,255,.65); font-weight: 600; }

/* ============================================================
   REPORT / LEAD MAGNET SECTION
   ============================================================ */
.report-section {
  position: relative;
  padding: var(--section-pad) 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.report-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(27,54,96,.95) 0%, rgba(27,54,96,.88) 55%, rgba(43,123,168,.6) 100%);
}
.report-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.report-includes { display: flex; flex-direction: column; gap: 12px; margin-top: 0; }
.report-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}
.ri-check {
  width: 20px; height: 20px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.ri-check svg { width: 10px; height: 10px; fill: none; stroke: currentColor; stroke-width: 3; }
.report-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.report-form-card::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%);
  margin: -40px -36px 32px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.rfc-header { text-align: center; margin-bottom: 28px; }
.rfc-badge {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.rfc-header h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 6px; }
.rfc-header p { font-size: .85rem; color: var(--gray-500); }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232B7BA8' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.stat-card { text-align: center; color: var(--white); padding: 20px; }
.stat-icon { font-size: 2.4rem; margin-bottom: 16px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-number .suffix { color: var(--teal-light); }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  position: relative;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal-pale); }
.testimonial-stars { color: #F5A623; font-size: .9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote { font-size: 4rem; font-family: var(--font-display); color: var(--teal-light); line-height: .8; margin-bottom: 16px; }
.testimonial-text { font-size: .92rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info .ai-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.author-info .ai-location { font-size: .78rem; color: var(--gray-500); margin-top: 2px; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas { background: var(--navy); padding: 80px 0; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: rgba(255,255,255,.8);
  font-size: .84rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}
.area-chip svg { width: 14px; height: 14px; fill: none; stroke: var(--teal-light); stroke-width: 2; flex-shrink: 0; }
.area-chip:hover { background: rgba(43,123,168,.18); border-color: rgba(94,181,216,.4); color: var(--white); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--sand); }
.faq-list { max-width: 800px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-200); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--teal-pale); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.faq-question:hover { color: var(--teal); }
.faq-toggle {
  width: 28px; height: 28px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--navy);
}
.faq-toggle svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.faq-item.open .faq-toggle { background: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 26px 22px; font-size: .88rem; color: var(--gray-700); line-height: 1.8; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='200' cy='200' r='150' fill='none' stroke='%235EB5D8' stroke-width='1' opacity='.08'/%3E%3Ccircle cx='200' cy='200' r='250' fill='none' stroke='%235EB5D8' stroke-width='1' opacity='.05'/%3E%3C/svg%3E");
  background-position: right center;
  background-repeat: no-repeat;
}
.final-cta-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.fci-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 30px;
  padding: 8px 22px;
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.fci-badge svg { width: 14px; height: 14px; fill: var(--gold-light); stroke: none; }
.final-cta-inner h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.5rem); color: var(--white); margin-bottom: 20px; }
.final-cta-inner p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.7; }
.final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.final-cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
}
.final-cta-note svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--navy);
  border-top: 2px solid var(--teal);
  padding: 14px 0;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.floating-cta.visible { transform: translateY(0); }
.floating-cta .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.floating-cta-text .fct-bold { font-weight: 700; font-size: .92rem; color: var(--white); }
.floating-cta-text .fct-small { font-size: .76rem; color: rgba(255,255,255,.55); }
.floating-cta-actions { display: flex; align-items: center; gap: 12px; }
.floating-cta-close {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  flex-shrink: 0;
  cursor: pointer;
  border: none;
}
.floating-cta-close svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.floating-cta-close:hover { color: var(--white); background: rgba(255,255,255,.2); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.65); padding: 80px 0 0; position: relative; }
.footer-wave { position: absolute; top: 0; left: 0; right: 0; color: rgba(43,123,168,.12); line-height: 0; }
.footer-wave svg { width: 100%; height: 48px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 20px; }
.footer-logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg,var(--navy),var(--teal)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-logo-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--white); stroke-width: 1.5; }
.footer-desc { font-size: .86rem; line-height: 1.8; color: rgba(255,255,255,.5); margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); transition: var(--transition); text-decoration: none; }
.social-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.social-btn:hover { background: var(--teal); color: var(--white); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .86rem; color: rgba(255,255,255,.5); transition: var(--transition); text-decoration: none; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.fci-icon { width: 32px; height: 32px; background: rgba(43,123,168,.15); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--teal-light); flex-shrink: 0; margin-top: 2px; }
.fci-icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.fci-info .fci-label { font-size: .66rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; display: block; }
.fci-info a, .fci-info span { font-size: .86rem; color: rgba(255,255,255,.75); transition: var(--transition); text-decoration: none; display: block; }
.fci-info a:hover { color: var(--teal-light); }
.footer-lic-box { margin-top: 14px; padding: 12px; background: rgba(43,123,168,.1); border-radius: 8px; border: 1px solid rgba(43,123,168,.2); }
.footer-lic-box .lic-title { font-size: .68rem; color: var(--teal-light); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-bottom: 5px; display: block; }
.footer-lic-box .lic-text { font-size: .8rem; color: rgba(255,255,255,.65); }
.footer-bottom { padding: 24px 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-bottom p { font-size: .76rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: var(--teal-light); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .76rem; color: rgba(255,255,255,.3); transition: var(--transition); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--teal-light); }

/* ============================================================
   BREADCRUMBS / BLOG / INTERIOR
   ============================================================ */
.breadcrumbs { background: var(--gray-100); padding: 12px 0; font-size: .8rem; color: var(--gray-500); }
.breadcrumbs a { color: var(--gray-500); text-decoration: none; }
.breadcrumbs a:hover { color: var(--teal); }
.breadcrumbs span { margin: 0 6px; }
.entry-content h2, .entry-content h3, .entry-content h4 { margin: 28px 0 12px; }
.entry-content p { margin-bottom: 18px; line-height: 1.8; }
.entry-content ul, .entry-content ol { margin: 12px 0 18px 24px; }
.entry-content li { margin-bottom: 6px; line-height: 1.7; }
.entry-content a { color: var(--teal); }
.entry-content a:hover { text-decoration: underline; }
.entry-content img { border-radius: var(--radius-md); margin: 20px 0; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideUp   { from { opacity: 0; transform: translateY(30px);  } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.8); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1100px) {
  :root { --section-pad: 76px; }
  .hero-inner { grid-template-columns: 1fr 420px; gap: 56px; }
  .why-sd-inner { gap: 56px; }
  .why-sd-image img { height: 460px; }
  .report-inner { grid-template-columns: 1fr 380px; gap: 56px; }
  .neighborhoods-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-bar .container { justify-content: flex-start; gap: 28px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-form-card { max-width: 520px; }
  .hero h1 { font-size: 3.4rem; }
  .why-sd-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-sd-badge { right: 16px; }
  .report-inner { grid-template-columns: 1fr; gap: 48px; }
  .report-form-card { max-width: 520px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .top-bar-right { display: none; }
  .main-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1.4rem; font-family: var(--font-display); }
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .hero { min-height: 100svh; }
  .hero-bg { background-attachment: scroll; }
  .hero h1 { font-size: 2.8rem; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 20px; }
  .hero-trust-divider { height: 28px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .neighborhoods-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-cta .container { flex-wrap: wrap; }
  .report-section { background-attachment: scroll; }
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .trust-bar .container { justify-content: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-form-card { padding: 28px 20px; }
  .report-form-card { padding: 28px 20px; }
  .report-form-card::before { margin: -28px -20px 24px; }
  .neighborhoods-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .why-sd-badge { display: none; }
}
