/* ============================================================
   HAWK WRAPS — design tokens & base
   ============================================================ */

:root {
  /* Color tokens (from brief) */
  --navy: #0F172A;
  --navy-deep: #0B1120;
  --blue: #0369A1;
  --blue-hover: #075985;
  --blue-light: #0EA5E9;
  --blue-bright: #3B82F6;
  --bg: #F8FAFC;
  --bg-alt: #F9FAFB;
  --white: #FFFFFF;
  --text: #020617;
  --text-2: #1E293B;
  --text-muted: #475569;
  --border: #E2E8F0;
  --border-soft: #EEF2F6;
  --gold: #FBBF24;

  /* Spacing */
  --max: 1200px;
  --section-y: clamp(4rem, 6vw, 6rem);
  --radius: 14px;
  --radius-lg: 16px;
  --radius-sm: 8px;

  /* Type */
  --h-display: clamp(2.2rem, 5vw, 3.4rem);
  --h2: clamp(1.8rem, 3.5vw, 2.6rem);
  --h3: clamp(1.25rem, 2vw, 1.5rem);

  --ease: 250ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Rubik', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', system-ui, sans-serif;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0;
  line-height: 1.1;
  text-wrap: balance;
}

h1 { font-size: var(--h-display); font-weight: 600; letter-spacing: -0.04em; }
h2 { font-size: var(--h2); font-weight: 500; }
h3 { font-size: var(--h3); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0; color: var(--text-2); text-wrap: pretty; line-height: 1.6; }

a { color: var(--blue); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--blue-hover); }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: var(--section-y) 0; }

.eyebrow {
  display: inline-block;
  white-space: nowrap;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

@media (max-width: 560px) {
  .eyebrow {
    white-space: normal;
    line-height: 1.45;
  }
}

.breadcrumb { font-weight: 100; }

.eyebrow.on-dark { color: var(--blue-light); }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head p { margin-top: 1rem; font-size: 1.08rem; color: var(--text-2); line-height: 1.55; }
.roi .section-head p,
.area .section-head p { color: #CBD5E1; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  white-space: nowrap;
  max-width: 100%;
}
.btn-primary {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); color: white; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); color: white; border-color: white; }
.btn-outline {
  background: white;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-block { width: 100%; justify-content: center; }
.btn .arr { transition: transform var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.logo-mark {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.logo-mark::before, .logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 45%, var(--blue-light) 45% 55%, transparent 55%),
    linear-gradient(135deg, transparent 0 60%, var(--blue) 60% 75%, transparent 75%);
}

/* --- SVG logo lockups ---------------------------------------------------
   Two candidate lockups with very different proportions (horizontal ~7.9:1,
   stacked ~3.6:1), so both a max-height and a max-width are set and the
   browser honours whichever binds first. That keeps the wide lockup from
   crowding the nav while still letting the compact one reach a usable size.
   The artwork is used as supplied — sizing only, never recoloured. */
.logo { flex-shrink: 0; }        /* the nav menu must never squeeze the logo */
.logo-img {
  display: block;
  width: auto;
  flex-shrink: 0;
}
/* Height is what the eye reads as "logo size", so it is set explicitly and the
   width follows the artwork's own ratio. The two lockups differ enormously, so
   each is sized on its own terms rather than sharing one value.
   Header: horizontal lockup, 7.9:1  -> 25px tall = ~197px wide.
   Footer: reversed stacked lockup (white wordmark + circular badge), 3.5:1
           -> 52px tall = ~183px wide, so both read at a similar visual weight. */
.logo-img--long   { height: 25px; }
.logo-img--footer { height: 52px; }

@media (max-width: 640px) {
  .logo-img--long   { height: 21px; }
  .logo-img--footer { height: 44px; }
}

/* --- Materials / vendor brand strip --------------------------------------
   Third-party marks (3M, Avery Dennison, ORAFOL) are shown as supplied, in
   their own colours — never recoloured or grayscaled without checking each
   vendor's brand guidelines. Heights are set PER LOGO, not shared: 3M is a
   compact 1.9:1 monogram while the other two are wide wordmarks, so a single
   height would make 3M tower over them. Tune these three values to taste.
   NOTE: display rights must be confirmed before launch (CLAUDE.md §8). */
.materials-strip {
  padding: 2.75rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.materials-label {
  margin: 0 0 1.6rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.materials-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 4rem;
}
.materials-logos img { display: block; width: auto; }
.materials-logos .brand-3m     img { height: 32px; }
.materials-logos .brand-avery  img { height: 26px; }
.materials-logos .brand-orafol img { height: 28px; }

@media (max-width: 640px) {
  .materials-logos { gap: 1.5rem 2.5rem; }
  .materials-logos .brand-3m     img { height: 26px; }
  .materials-logos .brand-avery  img { height: 21px; }
  .materials-logos .brand-orafol img { height: 23px; }
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--text-2);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.93rem;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: flex; gap: 0.6rem; align-items: center; }
.nav-phone {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
}
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
}

/* ============================================================
   PLACEHOLDER IMAGERY
   ============================================================ */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, #1E293B 0%, #0F172A 60%, #0B1120 100%);
  color: rgba(255,255,255,.55);
  overflow: hidden;
  border-radius: inherit;
  object-fit: cover;
}
img.ph.media-img {
  display: block;
  object-fit: cover;
  object-position: center;
  background: none;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  top: 12px; left: 12px;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  background: rgba(0,0,0,.35);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.08);
}
.ph-blue {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, #1E40AF 0%, #0369A1 50%, #0B1120 100%);
}
.ph-light {
  background:
    repeating-linear-gradient(135deg, rgba(15,23,42,.05) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
  color: var(--navy);
}
.ph-light::after {
  color: var(--text-muted);
  background: rgba(255,255,255,.7);
  border-color: var(--border);
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(14,165,233,.25) 0%, transparent 55%),
    linear-gradient(90deg, rgba(11,17,32,.96) 0%, rgba(15,23,42,.82) 35%, rgba(15,23,42,.45) 70%, rgba(15,23,42,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-text {
  max-width: 580px;
  color: white;
}
.hero-text .eyebrow { color: var(--blue-light); }
.hero-text h1 { color: white; font-size: clamp(2.4rem, 5vw, 3.6rem); }
.hero-text h1 .accent { color: var(--blue-light); }
.hero-text p {
  color: rgba(255,255,255,.92);
  font-size: 1.12rem;
  line-height: 1.55;
  font-weight: 400;
  margin: 1.25rem 0 2rem;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ============================================================
   SECTION 2 — USP STRIP
   ============================================================ */
.usp {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.usp-item {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--border);
}
.usp-item:last-child { border-right: none; }
.usp-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.usp-num .unit { color: var(--blue); }
.usp-label {
  margin-top: 0.55rem;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 760px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; }
  .usp-item { border-right: none; }
}

/* ============================================================
   SECTION 3 — ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
}
.about-grid > * { min-width: 0; }
.about-text p + p { margin-top: 1rem; }
.about-text .btn { margin-top: 2rem; }
.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { aspect-ratio: 4 / 3; }
}

/* ============================================================
   SECTION 4 — SERVICES (TALL CARDS)
   ============================================================ */
.bg-alt { background: var(--bg-alt); }
.bg-white { background: white; }
.bg-navy { background: var(--navy); color: white; }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: white; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: white;
  cursor: pointer;
  isolation: isolate;
  text-decoration: none;
}
.service-card .ph {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(15,23,42,.4) 55%, rgba(11,17,32,.95) 100%);
  transition: background var(--ease);
}
.service-card:hover .ph { transform: scale(1.05); }
.service-card:hover::after {
  background: linear-gradient(180deg, transparent 25%, rgba(3,105,161,.45) 55%, rgba(8,47,73,.95) 100%);
}
.service-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.5rem;
}
.service-body h3 { color: white; margin-bottom: 0.4rem; font-size: 1.25rem; }
.service-body p { color: rgba(255,255,255,.92); font-size: 0.95rem; line-height: 1.55; font-weight: 400; }
.tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  background: rgba(14,165,233,.22);
  color: var(--blue-light);
  border: 1px solid rgba(14,165,233,.45);
  margin-bottom: 0.75rem;
}
.tag.exclusive { background: rgba(251,191,36,.18); color: #FCD34D; border-color: rgba(251,191,36,.4); }

@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SECTION 5 — SOCIAL PROOF STRIP
   ============================================================ */
.proof {
  background: var(--navy);
  padding: 1.25rem 0;
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: white;
  font-size: 0.95rem;
}
.proof-rating { display: flex; align-items: center; gap: 0.75rem; font-family: 'Outfit', sans-serif; font-weight: 600; }
.proof-rating .stars { color: var(--gold); letter-spacing: 1px; font-size: 1rem; }
.proof-rating .reviews { color: rgba(255,255,255,.78); font-weight: 500; }
.proof-div { width: 1px; height: 32px; background: rgba(255,255,255,.12); }
.proof-quote { color: rgba(255,255,255,.95); font-style: italic; max-width: 560px; line-height: 1.5; }
.proof-quote .name { font-style: normal; color: rgba(255,255,255,.75); margin-left: 0.5rem; font-size: 0.88rem; font-weight: 500; }
@media (max-width: 860px) {
  .proof-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .proof-div { display: none; }
}

/* ============================================================
   SECTION 6 — VEHICLE THUMBNAILS
   ============================================================ */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.vehicle-card {
  position: relative;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transition: transform var(--ease), box-shadow var(--ease);
}
.vehicle-card .ph {
  position: absolute; inset: 0; z-index: 0;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.vehicle-card::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(15,23,42,.55) 70%, rgba(15,23,42,.95) 100%);
  transition: background var(--ease);
}
.vehicle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px rgba(15,23,42,.25);
}
.vehicle-card:hover .ph { transform: scale(1.05); }
.vehicle-card:hover::after {
  background: linear-gradient(180deg, transparent 30%, rgba(3,105,161,.5) 70%, rgba(8,47,73,.95) 100%);
}
.vehicle-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.1rem 1.25rem;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.75rem;
}
.vehicle-body > div:first-child { min-width: 0; flex: 1; }
.vehicle-body h3 { color: white; font-size: 1.1rem; font-weight: 500; margin: 0; }
.vehicle-body .sub {
  color: rgba(255,255,255,.82);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.vehicle-body .arr {
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--ease);
  color: white;
  font-size: 1.2rem;
}
.vehicle-card:hover .vehicle-body .arr { opacity: 1; transform: translateX(0); }
@media (max-width: 860px) { .vehicle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .vehicle-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SECTION 7 — WRAP EXPLORER (TABS)
   ============================================================ */
.tabs {
  display: inline-flex;
  background: var(--border-soft);
  padding: 5px;
  border-radius: 999px;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
}
.tab {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-2);
  transition: all var(--ease);
  border: none;
  background: transparent;
}
.tab.active {
  background: white;
  color: var(--navy);
  box-shadow: 0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.04);
}
.tab:hover:not(.active) { color: var(--navy); }

.wrap-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  animation: fadeUp 350ms cubic-bezier(.2,.7,.2,1);
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.wrap-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.75rem 0 1.25rem;
}
.wrap-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--blue);
  letter-spacing: -0.03em;
}
.wrap-price-sub { color: var(--text-muted); font-size: 0.95rem; }
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-2);
  font-size: 0.96rem;
}
.feature-list svg { flex-shrink: 0; margin-top: 4px; }

.wrap-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  position: relative;
  overflow: hidden;
}
.wrap-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(14,165,233,.18), transparent 60%);
  pointer-events: none;
}
.wrap-visual-top { position: relative; z-index: 1; }
.wrap-visual-top .label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  font-weight: 600;
}
.wrap-visual-top .name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  margin-top: 0.5rem;
  letter-spacing: -0.03em;
}
.coverage {
  position: relative; z-index: 1;
}
.coverage-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 0.75rem;
}
.coverage-label .pct { color: var(--blue-light); font-weight: 600; }
.coverage-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.coverage-bars span {
  height: 10px;
  border-radius: 3px;
  background: rgba(255,255,255,.08);
  transition: background 400ms;
}
.coverage-bars span.fill { background: var(--blue-light); }

@media (max-width: 860px) {
  .wrap-panel { grid-template-columns: 1fr; gap: 2rem; }
  .tabs { display: flex; flex-wrap: wrap; }
}

/* ============================================================
   SECTION 8 — WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.why-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--ease);
}
.why-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -12px rgba(3,105,161,.2);
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(3,105,161,.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.why-card h3 { margin-bottom: 0.5rem; }
.why-card p { font-size: 0.96rem; line-height: 1.55; }
@media (max-width: 860px) {
  .why-grid,
  .why-grid-two { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================
   SECTION 9 — ROI (DARK)
   ============================================================ */
.roi {
  background: var(--navy-deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.roi::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,.18), transparent 60%);
  pointer-events: none;
}
.roi .container { position: relative; z-index: 1; }
.roi h2 { color: white; }
.roi-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.roi-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
}
.roi-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--blue-light);
  letter-spacing: -0.03em;
  line-height: 1;
}
.roi-label {
  margin-top: 0.7rem;
  color: rgba(255,255,255,.82);
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (max-width: 860px) {
  .roi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

/* ============================================================
   SECTION 10 — PROCESS
   ============================================================ */
.process {
  margin-top: 3rem;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  opacity: 0.25;
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}
.process-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 0 0 6px rgba(3,105,161,.1), 0 0 0 12px rgba(3,105,161,.05);
}
.process-step h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.process-step p { font-size: 0.92rem; line-height: 1.55; }
@media (max-width: 860px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process::before { display: none; }
}

/* ============================================================
   SECTION 11 — INDUSTRIES (BENTO LAYOUT)
   ============================================================ */
.ind-featured {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.ind-feature-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  color: white;
  isolation: isolate;
  text-decoration: none;
}
.ind-feature-card .ph {
  position: absolute; inset: 0; z-index: 0;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.ind-feature-card::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,23,42,.1) 0%, rgba(15,23,42,.45) 50%, rgba(11,17,32,.95) 100%);
  transition: background var(--ease);
}
.ind-feature-card:hover .ph { transform: scale(1.05); }
.ind-feature-card:hover::after {
  background: linear-gradient(180deg, rgba(15,23,42,.1) 0%, rgba(3,105,161,.5) 50%, rgba(8,47,73,.95) 100%);
}
.ind-feature-stat {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 2;
  background: rgba(11,17,32,.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--blue-light);
  letter-spacing: 0.03em;
}
.ind-feature-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.25rem 1.25rem 1.35rem;
}
.ind-feature-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
  color: white;
}
.ind-feature-body h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.ind-feature-body p {
  color: rgba(255,255,255,.88);
  font-size: 0.88rem;
  line-height: 1.5;
}

.ind-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ind-compact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  cursor: pointer;
  transition: all var(--ease);
}
.ind-compact-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -10px rgba(3,105,161,.18);
}
.ind-compact-card:hover .ind-compact-arr { color: var(--blue); transform: translateX(3px); }
.ind-compact-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(3,105,161,.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ind-compact-body { flex: 1; min-width: 0; }
.ind-compact-body h4 { font-size: 0.98rem; margin: 0; color: var(--text); }
.ind-compact-body p { font-size: 0.84rem; color: var(--text-muted); margin-top: 0.2rem; }
.ind-compact-arr {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--ease);
}

.ind-footer {
  margin-top: 2.5rem;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.ind-footer h4 { color: white; font-size: 1.1rem; margin-bottom: 0.35rem; }
.ind-footer p { color: rgba(255,255,255,.65); font-size: 0.92rem; }
.ind-footer .seo-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--blue-light);
  margin-top: 0.5rem;
}

@media (max-width: 960px) {
  .ind-featured { grid-template-columns: repeat(2, 1fr); }
  .ind-compact  { grid-template-columns: repeat(2, 1fr); }
  .ind-footer { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}
@media (max-width: 560px) {
  .ind-featured { grid-template-columns: 1fr; }
  .ind-compact  { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION 12 — TRAINING
   ============================================================ */
.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.training-text .arrow-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.65rem;
}
.training-text .arrow-list li {
  display: flex; gap: 0.7rem; align-items: flex-start;
  color: var(--text-2);
}
.training-text .arrow-list li::before {
  content: '→';
  color: var(--blue);
  font-weight: 600;
}
.training-card {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.training-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(14,165,233,.2), transparent 60%);
}
.training-card > * { position: relative; z-index: 1; }
.training-card h3 { color: white; font-size: 1.4rem; margin-bottom: 0.75rem; }
.training-card p { color: rgba(255,255,255,.88); font-size: 0.97rem; line-height: 1.6; }
.training-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.training-stat .n {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--blue-light);
  letter-spacing: -0.03em;
}
.training-stat .l { color: rgba(255,255,255,.82); font-size: 0.88rem; margin-top: 0.35rem; font-weight: 500; }
@media (max-width: 860px) { .training-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================================
   SECTION 13 — SERVICE AREA (GOOGLE MAPS + OVERLAY)
   ============================================================ */
.area-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: var(--navy-deep);
  height: 600px;
}
.area-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  /* Dark-mode filter for embedded Google Maps */
  filter: invert(0.92) hue-rotate(175deg) brightness(0.95) contrast(0.92) saturate(0.65);
}
.area-map-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 38% 50%, transparent 0%, rgba(11,17,32,.35) 70%, rgba(11,17,32,.7) 100%),
    linear-gradient(180deg, rgba(11,17,32,.25), rgba(11,17,32,.1) 40%, rgba(11,17,32,.4));
  z-index: 1;
}
.area-map-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(56,189,248,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(56,189,248,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 1;
}

/* HQ pin floating over the map */
.hq-pin {
  position: absolute;
  /* Positioned to approximately overlap Linden, NJ in the map view */
  top: 51%;
  left: 38%;
  transform: translate(-50%, -100%);
  z-index: 3;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hq-pin-pulse {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow:
    0 0 0 4px rgba(14,165,233,.25),
    0 0 0 10px rgba(14,165,233,.12),
    0 0 0 20px rgba(14,165,233,.05);
  animation: hqPulse 2.5s ease-out infinite;
}
@keyframes hqPulse {
  0%   { box-shadow: 0 0 0 4px rgba(14,165,233,.4), 0 0 0 10px rgba(14,165,233,.2), 0 0 0 20px rgba(14,165,233,.08); }
  70%  { box-shadow: 0 0 0 12px rgba(14,165,233,.0), 0 0 0 28px rgba(14,165,233,.0), 0 0 0 44px rgba(14,165,233,.0); }
  100% { box-shadow: 0 0 0 4px rgba(14,165,233,.4), 0 0 0 10px rgba(14,165,233,.2), 0 0 0 20px rgba(14,165,233,.08); }
}
.hq-pin-card {
  background: var(--navy-deep);
  border: 1px solid rgba(56,189,248,.4);
  color: white;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 14px;
  white-space: nowrap;
}
.hq-pin-card::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: var(--navy-deep);
  border-right: 1px solid rgba(56,189,248,.4);
  border-bottom: 1px solid rgba(56,189,248,.4);
}
.hq-pin-card .hq-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hq-pin-card .hq-text { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.85rem; }
.hq-pin-card .hq-text small {
  display: block;
  color: var(--blue-light);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  margin-top: 1px;
}

/* Floating overlay panels */
.area-overlay {
  position: absolute;
  z-index: 2;
  background: rgba(11,17,32,0.78);
  backdrop-filter: saturate(140%) blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: white;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.area-overlay-stats {
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  gap: 1.5rem;
}
.area-overlay-stats .stat {
  display: flex;
  flex-direction: column;
}
.area-overlay-stats .stat .n {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--blue-light);
  letter-spacing: -0.03em;
  line-height: 1;
}
.area-overlay-stats .stat .n small { font-size: 0.55em; font-weight: 700; color: rgba(255,255,255,.6); margin-left: 2px; }
.area-overlay-stats .stat .l {
  font-size: 0.76rem;
  color: rgba(255,255,255,.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.45rem;
  font-weight: 600;
}

.area-overlay-cities {
  top: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 320px;
  overflow-y: auto;
  padding: 1.25rem;
}
.area-overlay-cities h3 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  margin-bottom: 1rem;
}
.area-state-block { margin-bottom: 1.1rem; }
.area-state-block:last-child { margin-bottom: 0; }
.area-state-block .h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.55rem;
}
.area-state-block .h .name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: white;
  text-decoration: none;
  min-height: 28px;
}
.area-state-block .h .name:hover { color: #7DD3FC; }
.area-state-block .h .name .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
}
.area-state-block.ny .dot { background: #7DD3FC; }
.area-state-block.ct .dot { background: #BAE6FD; }
.area-state-block.pa .dot { background: #818CF8; }
.area-state-block .h .tag {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  border-radius: 3px;
  background: rgba(56,189,248,.12);
  color: var(--blue-light);
  border: 1px solid rgba(56,189,248,.2);
}
.area-state-block .h .tag.ext {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.65);
  border-color: rgba(255,255,255,.1);
}
.area-state-block .cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.area-state-block .city {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.26rem 0.6rem;
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.area-state-block .city:hover { background: rgba(56,189,248,.18); border-color: rgba(125,211,252,.45); color: white; }

.area-overlay-cta {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,.92);
  font-weight: 500;
  background: rgba(11,17,32,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1.1rem;
}
.area-overlay-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--blue);
  color: white;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  transition: background var(--ease);
}
.area-overlay-cta a:hover { background: var(--blue-hover); color: white; }

@media (max-width: 960px) {
  .area-map-wrap { height: auto; min-height: 480px; }
  .area-overlay-stats { position: static; margin: 0 0 1rem; flex-wrap: wrap; gap: 1rem; }
  .area-overlay-cities {
    position: static;
    width: auto;
    max-height: 360px;
    margin: 1rem;
  }
  .area-overlay-cta { position: static; margin: 0 1rem 1rem; display: inline-flex; }
  .hq-pin { display: none; }
}

/* hide old radial map artifacts (kept in case other refs) */
.area {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.area::before {
  content: '';
  position: absolute;
  top: -250px; left: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(14,165,233,.12), transparent 60%);
  pointer-events: none;
}
.area .container { position: relative; z-index: 1; }
.area h2 { color: white; }

.area-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}
.area-header .section-head { margin: 0; }
.area-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255,255,255,.08);
}
.area-stat {
  padding: 0.5rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.area-stat:last-child { border-right: none; }
.area-stat .n {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--blue-light);
  letter-spacing: -0.03em;
  line-height: 1;
}
.area-stat .n small { font-size: 0.55em; font-weight: 700; color: rgba(255,255,255,.6); margin-left: 2px; }
.area-stat .l {
  margin-top: 0.45rem;
  color: rgba(255,255,255,.55);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.area-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* --- Map panel --- */
.area-map {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(14,165,233,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  overflow: hidden;
}
.area-map::before {
  /* faint grid */
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.area-filters {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.area-filter {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.1);
  cursor: pointer;
  transition: all var(--ease);
}
.area-filter:hover { color: white; border-color: rgba(255,255,255,.25); }
.area-filter.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.map-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  display: block;
}

.map-ring { fill: none; stroke: rgba(255,255,255,.07); stroke-width: 1; stroke-dasharray: 3 5; }
.map-ring-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  fill: rgba(255,255,255,.35);
  letter-spacing: 0.05em;
}
.map-compass {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 10px;
  fill: rgba(255,255,255,.3);
  letter-spacing: 0.1em;
  text-anchor: middle;
}
.map-axis { stroke: rgba(255,255,255,.04); stroke-width: 1; }

.map-hq {
  fill: var(--blue);
  filter: drop-shadow(0 0 6px rgba(14,165,233,.7));
}
.map-hq-pulse {
  fill: none;
  stroke: var(--blue-light);
  stroke-width: 1.5;
  transform-origin: 250px 250px;
  animation: hqPulse 2.4s ease-out infinite;
}
@keyframes hqPulse {
  0%   { r: 8;  opacity: 0.8; }
  100% { r: 32; opacity: 0; }
}
.map-hq-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 11px;
  fill: white;
  letter-spacing: 0.04em;
}
.map-hq-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  fill: var(--blue-light);
  letter-spacing: 0.04em;
}

.map-dot {
  cursor: pointer;
  transition: transform 200ms cubic-bezier(.2,.7,.2,1);
  transform-box: fill-box;
  transform-origin: center;
}
.map-dot circle.halo {
  fill: currentColor;
  opacity: 0;
  transition: opacity 200ms;
}
.map-dot circle.core {
  stroke: rgba(15,23,42,.6);
  stroke-width: 1;
}
.map-dot.dim { opacity: 0.18; }
.map-dot:hover circle.halo,
.map-dot.hot circle.halo { opacity: 0.25; r: 14; }
.map-dot:hover circle.core,
.map-dot.hot circle.core { r: 6; }

/* state colors */
.s-nj { color: #38BDF8; }
.s-ny { color: #7DD3FC; }
.s-ct { color: #BAE6FD; }
.s-pa { color: #818CF8; }

.map-tooltip {
  position: absolute;
  pointer-events: none;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  transform: translate(-50%, -130%);
  opacity: 0;
  transition: opacity 150ms;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.map-tooltip.show { opacity: 1; }
.map-tooltip .tt-state {
  color: rgba(255,255,255,.5);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 0.4rem;
}

/* --- List panel --- */
.area-list {
  display: grid;
  gap: 1rem;
}
.area-state {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  transition: all var(--ease);
}
.area-state.dim { opacity: 0.35; }
.area-state-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}
.area-state-head h3 {
  color: white;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
}
.area-state-head h3::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.area-state.s-nj h3 { color: #38BDF8; }
.area-state.s-ny h3 { color: #7DD3FC; }
.area-state.s-ct h3 { color: #BAE6FD; }
.area-state.s-pa h3 { color: #818CF8; }
.area-state-head .badge-sm {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.08);
}
.area-state.s-nj .badge-sm { background: rgba(56,189,248,.12); color: #7DD3FC; border-color: rgba(56,189,248,.25); }
.area-state .cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.area-state .city {
  font-size: 0.78rem;
  padding: 0.28rem 0.6rem;
  border-radius: 4px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
  transition: all 150ms;
}
.area-state .city:hover,
.area-state .city.hot {
  background: rgba(14,165,233,.18);
  color: white;
  border-color: rgba(14,165,233,.4);
}

.area-footnote {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.area-footnote svg { color: var(--blue-light); }

@media (max-width: 960px) {
  .area-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .area-stats { border-left: none; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1rem; }
  .area-layout { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION 14 — FORM
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}
.form-grid > *,
.form-row > *,
.form-field { min-width: 0; }
.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.form-status {
  margin: .85rem 0 0;
  color: var(--text-muted);
  font-size: .86rem;
  line-height: 1.55;
}
.form-status a {
  color: var(--blue);
  font-weight: 700;
}
.form-status:focus { outline: 2px solid var(--blue); outline-offset: 4px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-field label,
.form-field > .form-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  color: var(--text);
  transition: border-color var(--ease), box-shadow var(--ease);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(3,105,161,.12);
}
.form-field textarea { min-height: 110px; resize: vertical; }

.info-card {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.info-card h3 { color: white; margin-bottom: 1.25rem; font-size: 1.15rem; }
.info-row {
  display: grid;
  grid-template-columns: minmax(0, 100px) minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 0.92rem;
}
.info-row:first-of-type { border-top: none; }
.info-row .k { color: rgba(255,255,255,.7); font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; padding-top: 2px; }
.info-row .v { color: white; font-weight: 500; }
.info-row .v a { display: inline-flex; align-items: center; min-height: 24px; }
.info-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.2);
  border-radius: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.92);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .form-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .btn {
    white-space: normal;
    justify-content: center;
    text-align: center;
  }
  .form-card { padding: 1.25rem; }
}

/* ============================================================
   SECTION 15 — FAQ
   ============================================================ */
.faq {
  max-width: 760px;
  margin: 2.5rem auto 0;
  display: grid;
  gap: 0.5rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item[open] { border-color: var(--blue); }
.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--blue);
  transition: transform var(--ease);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-2);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ============================================================
   SECTION 16 — BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: default;
  transition: all var(--ease);
}
.blog-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -12px rgba(15,23,42,.15);
}
.blog-thumb { height: 180px; position: relative; overflow: hidden; }
.blog-body { padding: 1.5rem; }
.blog-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.85rem;
}
.blog-cat {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(3,105,161,.08);
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
}
.blog-meta .time { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.blog-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.blog-card p { font-size: 0.93rem; color: var(--text-2); line-height: 1.55; }
.blog-cta { text-align: center; margin-top: 2.5rem; }
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 2.25rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { color: rgba(255,255,255,.78); font-size: 0.92rem; margin-top: 1rem; max-width: 320px; line-height: 1.55; }
.footer-brand .contact-line { color: rgba(255,255,255,.92); font-weight: 500; font-size: 0.95rem; margin-top: 1.25rem; }
.footer-brand .contact-line strong { color: white; }
.footer-brand .logo { color: white; }
.footer h4,
.footer-heading {
  color: white;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer ul a {
  color: rgba(255,255,255,.78);
  font-size: 0.92rem;
}
.footer ul a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom a {
  color: white;
  text-decoration: underline;
  text-underline-offset: .18em;
}
.footer-bottom a:hover { color: #bae6fd; }
.footer-badges { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
/* Vendor marks on the dark footer — no chip, placed straight on --navy, in
   their own colours (never recoloured). One shared height for all three. */
.footer-badge-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-badge-logo img {
  display: block;
  width: auto;
  height: 22px;
}
@media (max-width: 560px) {
  .footer-badge-logo img { height: 18px; }
}
.footer-badges .badge {
  border: 1px solid rgba(255,255,255,.15);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,.7);
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
  .footer-grid > div:nth-child(5) { grid-column: 2 / 5; }
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > div:nth-child(5) { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Service-page reviews (social proof) ===== */
.svc-reviews { background: var(--navy); color: #fff; }
.svc-reviews .section-head h2 { color: #fff; }
.svc-reviews .section-head .eyebrow { color: var(--blue-light); }
.svc-reviews .section-head p { color: rgba(255,255,255,.72); }
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
}
.rev-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.rev-stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; }
.rev-card blockquote {
  margin: 0;
  font-size: .96rem;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
}
.rev-meta { margin-top: auto; padding-top: .35rem; }
.rev-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: .98rem;
}
.rev-role {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: .82rem;
  margin-top: .15rem;
  font-weight: 400;
}
@media (max-width: 900px) { .rev-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .rev-grid { grid-template-columns: 1fr; } }
