body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1f2937;
  background: #fff;
}

.bg-soft-gray {
  background: #f4f6f8;
}

.site-header {
  backdrop-filter: blur(10px);
}

.brand-logo,
.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.nav-ghost,
.top-link,
.footer-links a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
}

.nav-ghost {
  padding: .25rem .5rem;
  border-radius: 999px;
}

.nav-ghost:hover,
.top-link:hover,
.footer-links a:hover {
  color: #0a58ca;
}

.top-band-image {
  max-height: 320px;
  object-fit: contain;
}

.eyebrow {
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  color: #0a58ca;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  min-height: 420px;
  display: none;
  background: linear-gradient(135deg, rgba(13,110,253,.06), rgba(255,255,255,.9));
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.hero-slide.is-active {
  display: block;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  filter: saturate(1.05);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.82) 50%, rgba(255,255,255,.35) 100%);
}

.hero-slide-content {
  min-height: 420px;
  padding: 2rem;
}

.hero-text-card {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-dots {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 1rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #c9d2dd;
}

.hero-dot.active {
  width: 28px;
  background: #0a58ca;
}

.stat-card,
.review-card,
.cta-panel,
.city-hero-panel,
.benefit-box {
  background: #fff;
  border-radius: 1.5rem;
}

.stat-card {
  padding: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.stat-value {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  margin-top: .6rem;
  color: #6b7280;
  font-weight: 600;
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - .9rem);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  position: relative;
}

.review-avatar-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
}

.review-avatar-wrap::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50% 42% 58% 42% / 44% 52% 48% 56%;
  background: radial-gradient(circle at 30% 30%, rgba(10,88,202,.18), rgba(10,88,202,.04));
  filter: blur(.2px);
}

.review-avatar {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.review-text {
  color: #374151;
}

.cta-panel,
.city-hero-panel {
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
}

.location-chip {
  display: inline-flex;
  align-items: center;
  padding: .5rem .85rem;
  border-radius: 999px;
  background: #edf4ff;
  color: #0a58ca;
  font-weight: 600;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-box {
  padding: 1.25rem;
  font-weight: 700;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.city-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.footer-section {
  background: #111827;
}

.footer-links a {
  color: rgba(255,255,255,.72);
}

@media (max-width: 991.98px) {
  .hero-slide,
  .hero-slide-content {
    min-height: auto;
  }

  .hero-slide-overlay,
  .hero-slide-bg {
    display: none;
  }

  .hero-slide {
    padding: 0;
    display: none;
  }

  .hero-slide.is-active {
    display: block;
  }

  .hero-slide-content {
    padding: 0;
    min-height: auto;
  }

  .review-track {
    grid-auto-columns: calc(100% - .4rem);
  }

  .review-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .review-avatar-wrap {
    margin: 0 auto;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .hero-slide-content {
    padding: 0;
  }

  .hero-text-card {
    padding: 1.25rem 0 0;
  }

  .top-band-image {
    max-height: 240px;
  }
}
