/* ============================================================
   Service Area page — page-specific styles
   ============================================================ */

/* ---------- Hero (navy, no photo, double-chevron accent) ---------- */
.sa-hero {
  position: relative;
  background: var(--primary);
  overflow: hidden;
}
.sa-hero__x {
  position: absolute;
  right: 121px; bottom: 0;
  width: 711.789px;
  max-width: none;
  height: 572px;
  z-index: 0;
  pointer-events: none;
}
.sa-hero .hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 32px; max-width: 784px; }
.sa-hero .hero__copy > * { margin: 0; }
.sa-hero .com-hero__inner { min-height: 572px; }

/* ---------- Where We Work ---------- */
.coverage { background: var(--soft-bg); padding: clamp(64px,10vw,160px) 0; }
.coverage__inner { display: flex; flex-direction: column; align-items: center; gap: 72px; }
.coverage__head { text-align: center; max-width: 1100px; }
.coverage__head .eyebrow { margin-bottom: 12px; }
.coverage__head .h2 { margin-bottom: 12px; }
.coverage__pins {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 1082px;
}
.coverage__pins .item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 150px;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--body-text);
  transition: transform .25s ease;
}
.coverage__pins .item:hover { transform: translateY(-2px); }
.coverage__pins .item svg { width: 24px; height: 24px; color: var(--secondary); flex: 0 0 24px; }

.coverage__stats { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.stat-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(31,41,55,.12);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 220px;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(31,41,55,.16); }
.stat-card__num { margin: 0; font-weight: 900; font-size: 48px; line-height: 58px; letter-spacing: -0.4px; color: var(--secondary); }
.stat-card p.stat-card__label { margin: 0; font-weight: 700; font-size: 18px; line-height: 28px; color: var(--primary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sa-hero__x { display: none; }
}
@media (max-width: 768px) {
  .coverage__pins .item { width: 45%; }
  .coverage__stats { flex-direction: column; align-items: center; }
  .stat-card { width: 100%; max-width: 320px; }
  .sa-hero .com-hero__inner { min-height: 0; padding-top: 80px; padding-bottom: 48px; }
}
