/* Silverhouse — Homepage (brand-aligned, dark-first)
   Palette: Charcoal #0D0D0D · Silver #C0C0C0 · Teal #00D5D1 · Deep Teal #007B7B
   Type: Oswald (display) · Raleway (subhead, wide tracking) · Inter (UI/body) */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&family=Inter:wght@400;500;600;700&family=Oswald:wght@500;600;700&display=swap');

:root {
  --charcoal: #0D0D0D;
  --charcoal-2: #141414;
  --charcoal-3: #1C1C1C;
  --charcoal-4: #262626;
  --silver: #C0C0C0;
  --silver-2: #9C9C9C;
  --silver-3: #6E6E6E;
  --silver-light: #E8E8E8;
  --teal: #00D5D1;
  --teal-deep: #007B7B;
  --teal-glow: rgba(0,213,209,0.18);
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --danger: #FF6B5C;
  --warn: #FFB547;
  --display: 'Oswald', 'Bahnschrift', 'Helvetica Neue Condensed', sans-serif;
  --sub: 'Raleway', 'Inter', sans-serif;
  --body: 'Inter', -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--charcoal);
  color: var(--silver-light);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,213,209,0.03), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,123,123,0.04), transparent 50%);
  z-index: 0;
}

.silver-grad {
  background: linear-gradient(180deg, #F8F8F8 0%, #C0C0C0 40%, #6E6E6E 70%, #C8C8C8 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Site header */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(13,13,13,0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; gap: 32px;
}
.logo-img { height: 36px; width: auto; display: block; }
.site-nav { display: flex; gap: 30px; }
.site-nav a {
  font-family: var(--sub);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--silver-2); text-decoration: none;
  transition: color .15s;
}
.site-nav a:hover { color: var(--teal); }
.site-header .right { margin-left: auto; display: flex; gap: 12px; align-items: center; white-space: nowrap; }
.phone-num {
  font-size: 12px; color: var(--silver-2); font-weight: 500;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  text-decoration: none;
}
.phone-num:hover { color: var(--teal); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  font-family: var(--sub);
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  border: 1px solid transparent;
  transition: all .18s ease;
  white-space: nowrap;
  border-radius: 2px;
  position: relative;
}
.btn-primary {
  background: var(--teal);
  color: var(--charcoal);
  box-shadow: 0 0 0 0 var(--teal-glow), 0 8px 24px rgba(0,213,209,0.2);
}
.btn-primary:hover {
  background: #1FE5E1;
  box-shadow: 0 0 0 4px var(--teal-glow), 0 12px 32px rgba(0,213,209,0.35);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--silver-light);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-lg { padding: 16px 28px; font-size: 12px; }
.btn-sm { padding: 8px 14px; font-size: 10px; }

/* Layout */
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

section { padding: 120px 0; position: relative; }
section.tight { padding: 64px 0; }
section.darker { background: var(--charcoal-2); }

/* HERO */
.hero {
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, var(--teal-glow), transparent 60%),
    radial-gradient(40% 60% at 100% 100%, rgba(0,123,123,0.15), transparent 70%);
  pointer-events: none;
}
.hero-head {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sub);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--teal);
  opacity: 0.5;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
}
.hero h1 .ln { display: block; }
.hero h1 .teal-line { color: var(--teal); }
.hero h1 .silver-line {
  background: linear-gradient(180deg, #F8F8F8 0%, #C0C0C0 40%, #6E6E6E 80%, #B8B8B8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  margin: 32px auto 0;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--silver-2);
  font-weight: 400;
}
.hero-ctas {
  margin-top: 40px;
  display: inline-flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* DOORS — three audience cards */
.doors-strip {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.door {
  position: relative;
  padding: 40px 36px 36px;
  border-right: 1px solid var(--line);
  cursor: pointer;
  transition: background .25s ease;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.door:last-child { border-right: none; }
.door::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.door:hover { background: var(--charcoal-2); }
.door:hover::before { transform: scaleX(1); }
.door-num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--silver-3);
}
.door-eyebrow {
  font-family: var(--sub);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 4px;
}
.door h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1;
  margin-top: 18px;
  color: var(--silver-light);
}
.door p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--silver-2);
  line-height: 1.55;
}
.door .cta {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-light);
}
.door .cta .arr { transition: transform .2s, color .2s; }
.door:hover .cta { color: var(--teal); }
.door:hover .cta .arr { transform: translateX(6px); }

/* TRUST RAIL */
.trust-rail {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.trust-rail-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-cell {
  padding: 28px 32px;
  border-right: 1px solid var(--line);
  display: flex; align-items: center; gap: 16px;
}
.trust-cell:last-child { border-right: none; }
.trust-cell .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  color: var(--teal);
  letter-spacing: 0.005em;
}
.trust-cell .num.silver {
  background: linear-gradient(180deg, #F8F8F8, #6E6E6E);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.trust-cell .lbl {
  font-family: var(--sub);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-2);
  line-height: 1.3;
}

/* Section heading */
.sec-head { margin-bottom: 64px; }
.sec-head .eyebrow {
  font-family: var(--sub);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.sec-head .eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--teal);
}
.sec-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  max-width: 900px;
  color: var(--silver-light);
  margin: 0;
}
.sec-head h2 .teal-line { color: var(--teal); }
.sec-head.center { text-align: center; }
.sec-head.center h2 { margin-left: auto; margin-right: auto; }
.sec-head.center .eyebrow::before { display: none; }

/* REPORT — full-bleed editorial */
.report-section {
  padding: 0;
  background: var(--charcoal);
  border-bottom: 1px solid var(--line);
}
.report-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
  min-height: 720px;
}
.report-text {
  padding: 100px 64px 100px 32px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--line);
}
.report-text .eyebrow {
  font-family: var(--sub);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 22px;
}
.report-text h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(44px, 5vw, 80px);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
  color: var(--silver-light);
}
.report-text h2 .teal-line { color: var(--teal); display: block; }
.report-text p {
  margin-top: 28px;
  font-size: 17px;
  color: var(--silver-2);
  line-height: 1.55;
  max-width: 460px;
}
.report-text .stat-row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 460px;
}
.report-text .stat .n {
  font-family: var(--display);
  font-weight: 600;
  font-size: 36px;
  color: var(--teal);
  line-height: 1;
}
.report-text .stat .l {
  margin-top: 6px;
  font-family: var(--sub);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-2);
}
.report-text .ctas { margin-top: 44px; display: flex; gap: 12px; flex-wrap: wrap; }

.report-canvas {
  background: var(--charcoal-2);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 64px;
  overflow: hidden;
}
.report-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, var(--teal-glow), transparent 60%);
}

/* Report mockup */
.report-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  background: var(--charcoal);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,213,209,0.1),
    0 32px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(0,213,209,0.12);
}
.report-toolbar {
  background: var(--charcoal-3);
  border-bottom: 1px solid var(--line);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--silver-3);
}
.report-toolbar .dots { display: flex; gap: 6px; }
.report-toolbar .dot { width: 9px; height: 9px; border-radius: 50%; }
.report-toolbar .url {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 4px 12px;
  flex: 1;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
  font-size: 11px;
  font-family: var(--body);
  color: var(--silver-2);
  font-variant-numeric: tabular-nums;
}
.report-body { display: grid; grid-template-columns: 180px 1fr; }
.report-side {
  border-right: 1px solid var(--line);
  padding: 18px 14px;
  background: var(--charcoal-2);
}
.report-side .sh {
  font-family: var(--sub);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-3);
  margin: 0 0 10px 4px;
}
.severity {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--silver-2);
  cursor: pointer;
  margin-bottom: 2px;
}
.severity:hover { background: var(--charcoal-3); }
.severity.active {
  background: var(--teal);
  color: var(--charcoal);
  font-weight: 600;
}
.severity .sd { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.sd.red { background: var(--danger); box-shadow: 0 0 8px rgba(255,107,92,0.6); }
.sd.amber { background: var(--warn); }
.sd.teal { background: var(--teal); }
.sd.gray { background: var(--silver-3); }
.severity .ct {
  margin-left: auto; font-family: var(--body);
  font-size: 11px; color: var(--silver-3);
  font-variant-numeric: tabular-nums;
}
.severity.active .ct { color: var(--charcoal); opacity: 0.7; }
.report-side .sh + .sh { margin-top: 16px; }

.report-main { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.finding-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; color: var(--silver-3);
  font-family: var(--sub);
  letter-spacing: 0.06em;
}
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  font-family: var(--sub);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 3px;
  background: rgba(255,107,92,0.1);
  color: var(--danger);
  border: 1px solid rgba(255,107,92,0.3);
}
.tag .sd { width: 6px; height: 6px; }
.report-photo {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1f24 0%, #2a3038 60%, #1a1f24 100%);
  border-radius: 6px;
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.report-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(0,213,209,0.15) 0%, transparent 40%),
    repeating-linear-gradient(45deg, transparent 0, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 61px);
}
.report-photo .marker {
  position: absolute;
  width: 64px; height: 64px;
  border: 2px solid var(--danger);
  border-radius: 50%;
  top: 38%; left: 32%;
  box-shadow: 0 0 0 2px rgba(13,13,13,0.8), 0 0 30px rgba(255,107,92,0.5);
  animation: pulse-ring 2.4s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}
.report-photo .marker-label {
  position: absolute;
  font-family: var(--sub);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--danger);
  color: #fff;
  padding: 4px 10px;
  border-radius: 3px;
  top: 30%;
  left: 49%;
}
.report-photo .crosshair {
  position: absolute;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(0,213,209,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,213,209,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.finding-title {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--silver-light);
  margin-top: 4px;
}
.finding-body { font-size: 13px; color: var(--silver-2); line-height: 1.55; }
.finding-meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: var(--sub);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-3);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.finding-meta .k { color: var(--silver-3); margin-right: 6px; opacity: 0.7; }
.finding-meta .v { color: var(--silver-light); font-weight: 500; }

/* PROCESS */
.process-section .sec-head h2 {
  margin: 60px auto;
  font-size: clamp(40px, 6vw, 72px);
  white-space: normal;
  max-width: 100%;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-step {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.process-step:last-child { border-right: none; }
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width .4s ease;
}
.process-step:hover::before { width: 100%; }
.process-step .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 96px;
  line-height: 1;
  background: linear-gradient(180deg, #C0C0C0, #4a4a4a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0;
}
.process-step h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--silver-light);
  margin: 16px 0 0;
}
.process-step p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--silver-2);
  line-height: 1.55;
}
.process-step .meta {
  margin-top: 22px;
  font-family: var(--sub);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc {
  background: var(--charcoal);
  grid-column: span 2;
  padding: 32px 28px;
  cursor: pointer;
  transition: background .2s;
  position: relative;
}
.svc:hover { background: var(--charcoal-2); }
.svc-feature {
  grid-column: span 6;
  background: linear-gradient(135deg, var(--teal-deep) 0%, #004a4a 100%);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.svc.svc-feature:hover {
  background: linear-gradient(135deg, #00908d 0%, #00605f 100%);
}
.svc-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(0,213,209,0.4), transparent 50%);
  transition: opacity .2s;
}
.svc.svc-feature:hover::before { opacity: 1.25; }
.svc-feature > * { position: relative; z-index: 1; }
.svc-feature .badge {
  font-family: var(--sub);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
}
.svc-feature h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 56px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-top: 16px;
  color: #fff;
  letter-spacing: 0.005em;
}
.svc-feature p {
  margin-top: 18px;
  font-size: 16px;
  color: rgba(218,218,218,1);
  line-height: 1.55;
  max-width: 440px;
}
.svc-feature .price-row {
  margin-top: 28px;
  display: flex; align-items: baseline; gap: 12px;
}
.svc-feature .price {
  font-family: var(--display);
  font-weight: 600;
  font-size: 56px;
  line-height: 1;
  color: #fff;
}
.svc-feature .price-sub {
  font-family: var(--sub);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.svc-feature .ctas { margin-top: 32px; display: flex; gap: 10px; flex-wrap: wrap; }
.svc-feature .btn-primary {
  background: var(--teal);
  color: var(--charcoal);
  border-color: var(--teal);
}
.svc-feature .btn-primary:hover {
  background: #5af0ed;
  border-color: #5af0ed;
  color: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(0,213,209,0.5);
}
.svc-feature .btn-ghost {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.svc-feature .feature-illus {
  height: 280px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.1)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 8px);
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.svc-feature .feature-illus::after {
  content: 'INSPECTOR · ON-SITE';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sub);
  font-size: 10px; letter-spacing: 0.32em;
  color: rgba(255,255,255,0.35);
}

.svc .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--silver-3);
}
.svc h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--silver-light);
  margin: 28px 0 0;
}
.svc p {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--silver-2);
  line-height: 1.55;
}
.svc .more {
  margin-top: 18px;
  font-family: var(--sub);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  display: flex; flex-direction: column;
  padding: 0;
}
.why-illus {
  height: 240px;
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}
.why-illus.ai {
  background:
    radial-gradient(circle at 30% 30%, rgba(0,213,209,0.2), transparent 50%),
    var(--charcoal-2);
}
.why-illus.ai .photo-thumb {
  position: absolute;
  width: 60%; aspect-ratio: 16/10;
  background: linear-gradient(135deg, #2A3038, #4a5360);
  top: 24%; left: 20%;
  border-radius: 4px;
  border: 1px solid var(--line-2);
  overflow: hidden;
}
.why-illus.ai .photo-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 60%, rgba(0,213,209,0.25), transparent 50%);
}
.why-illus.ai .ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 2px solid var(--danger);
  border-radius: 50%;
  top: 40%; left: 50%;
  box-shadow: 0 0 20px rgba(255,107,92,0.5);
}
.why-illus.ai .scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0.7;
  animation: scan 2.5s ease-in-out infinite;
}
@keyframes scan {
  0%, 100% { top: 25%; }
  50% { top: 75%; }
}
.why-illus.ai .ai-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--sub);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,213,209,0.1);
  border: 1px solid rgba(0,213,209,0.3);
  padding: 4px 10px;
  border-radius: 3px;
  display: inline-flex; align-items: center; gap: 6px;
  z-index: 2;
}
.why-illus.ai .ai-tag::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--teal);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.why-illus.time {
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(0deg, var(--charcoal-2) 0, var(--charcoal-2) 31px, var(--line) 31px, var(--line) 32px);
}
.why-illus.time .big-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 144px;
  line-height: 1;
  background: linear-gradient(180deg, #F0F0F0, #6E6E6E);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0;
  text-shadow: 0 0 40px rgba(192,192,192,0.2);
}
.why-illus.time .lt {
  position: absolute;
  font-family: var(--display);
  font-size: 48px;
  font-weight: 600;
  color: var(--teal);
  bottom: 28%;
  left: 16%;
}
.why-illus.time .h-mark {
  position: absolute;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  color: var(--teal);
  bottom: 28%;
  right: 16%;
}

.why-illus.people {
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 50%, var(--charcoal-3), var(--charcoal-2));
}
.why-illus.people .roster { display: flex; align-items: center; }
.why-illus.people .av {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 3px solid var(--charcoal-2);
  margin: 0 -10px;
  background: linear-gradient(135deg, var(--silver-3), var(--silver));
  position: relative;
  overflow: hidden;
}
.why-illus.people .av::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px;
  background: var(--charcoal-3);
  border-radius: 50% 50% 0 0;
}
.why-illus.people .av::after {
  content: '';
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 18px;
  background: var(--charcoal-3);
  border-radius: 50%;
}
.why-illus.people .av:nth-child(2) { background: linear-gradient(135deg, #c9a878, #f0dcb8); transform: scale(1.05); z-index: 2; }
.why-illus.people .av:nth-child(3) { background: linear-gradient(135deg, #8b9a8e, #c8d4cb); transform: scale(1.15); z-index: 3; }
.why-illus.people .av:nth-child(4) { background: linear-gradient(135deg, #b88a7a, #e8c8b4); transform: scale(1.05); z-index: 2; }
.why-illus.people .av:nth-child(5) { background: linear-gradient(135deg, var(--teal-deep), var(--teal)); }
.why-illus.people .badge {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--sub);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,213,209,0.08);
  border: 1px solid rgba(0,213,209,0.3);
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.why-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--silver-light);
  line-height: 1.05;
}
.why-card h3 .teal { color: var(--teal); }
.why-card p {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--silver-2);
  line-height: 1.55;
}

/* PILLARS — the 4 brand values */
.pillars {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--charcoal-2);
}
.pillar {
  padding: 56px 32px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.pillar:last-child { border-right: none; }
.pillar .icon {
  width: 48px; height: 48px;
  margin: 0 auto 20px;
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.pillar .icon svg { width: 100%; height: 100%; }
.pillar h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--silver-light);
  margin: 0;
}
.pillar p {
  margin-top: 12px;
  font-size: 13px;
  color: var(--silver-3);
  line-height: 1.5;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

/* REVIEWS */
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.reviews-head .eyebrow {
  font-family: var(--sub);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 22px;
  display: inline-block;
}
.reviews-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--silver-light);
  max-width: 600px;
  margin: 0;
}
.reviews-head h2 .teal { color: var(--teal); }
.reviews-aggregate { text-align: right; }
.reviews-aggregate .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 80px;
  line-height: 1;
  background: linear-gradient(180deg, #F0F0F0, #6E6E6E);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reviews-aggregate .stars {
  color: var(--teal);
  font-size: 22px;
  letter-spacing: 0.05em;
}
.reviews-aggregate .meta {
  font-family: var(--sub);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-3);
  margin-top: 6px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.review {
  background: var(--charcoal-2);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
}
.review .qm {
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.6;
  color: var(--teal);
  margin-bottom: 14px;
}
.review p {
  font-size: 16px;
  color: var(--silver-light);
  line-height: 1.5;
  flex: 1;
  font-weight: 400;
  margin: 0;
}
.review .who {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.review .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--silver-3), var(--silver));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--charcoal);
}
.review .name {
  font-family: var(--sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-light);
}
.review .when {
  font-family: var(--sub);
  font-size: 10px;
  color: var(--silver-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* AREAS */
.areas-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.map-wrap {
  padding: 28px;
  display: flex; align-items: stretch;
}
.state-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}
.state-cell {
  background: var(--charcoal);
  padding: 22px 20px 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 130px;
  transition: background 160ms ease;
}
.state-cell:hover { background: var(--charcoal-2); }
.state-cell .abbr {
  font-family: var(--display);
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--teal);
}
.state-cell .name {
  font-family: var(--sub);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-top: 4px;
}
.state-cell .count {
  font-family: var(--sub);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-3);
  margin-top: 14px;
}
.state-cell.soon { background: rgba(255,255,255,0.02); }
.state-cell.soon:hover { background: rgba(255,255,255,0.04); }
.state-cell.soon .abbr { color: var(--silver-3); font-size: 22px; line-height: 1.1; letter-spacing: 0.02em; }
.state-cell.soon .name { color: var(--silver-3); }

.areas-intro {
  font-size: 17px;
  color: var(--silver-2);
  line-height: 1.55;
  max-width: 440px;
  margin: 0;
}
.areas-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.areas-list a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--silver-light);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .15s, padding-left .15s;
}
.areas-list a:hover { color: var(--teal); padding-left: 6px; }
.areas-list a:nth-child(odd) { padding-right: 18px; }
.areas-list a:nth-child(even) { padding-left: 18px; }
.areas-list a .arr { color: var(--silver-3); font-family: var(--body); }
.areas-list a:hover .arr { color: var(--teal); }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-head .eyebrow {
  font-family: var(--sub);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 22px;
  display: inline-block;
}
.faq-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--silver-light);
  margin: 0;
}
.faq-head h2 .teal { color: var(--teal); }
.faq-head p {
  margin-top: 20px;
  font-size: 16px;
  color: var(--silver-2);
  line-height: 1.55;
}
.faq-head .btn { margin-top: 24px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:first-child { padding-top: 0; }
.faq-item .q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--silver-light);
}
.faq-item .q .plus {
  color: var(--silver-3);
  font-size: 20px;
  font-weight: 300;
  transition: transform .25s, color .15s;
  font-family: var(--body);
}
.faq-item.open .q { color: var(--teal); }
.faq-item.open .q .plus { transform: rotate(45deg); color: var(--teal); }
.faq-item .a {
  display: none;
  margin-top: 14px;
  color: var(--silver-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
}
.faq-item.open .a { display: block; }

/* FINAL CTA */
.final-cta {
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  background: var(--charcoal-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 50% 100%, rgba(0,213,209,0.18), transparent 70%),
    radial-gradient(40% 40% at 50% 0%, rgba(0,123,123,0.12), transparent 70%);
}
.final-cta-inner { position: relative; max-width: 900px; margin: 0 auto; padding: 0 32px; }
.final-cta h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--silver-light);
  margin: 0;
}
.final-cta h2 .teal { color: var(--teal); }
.final-cta p {
  font-size: 18px;
  color: rgb(198, 198, 198);
  margin-top: 24px;
}
.final-cta .ctas {
  margin-top: 44px;
  display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}

/* FOOTER */
.site-footer {
  background: #050505;
  padding: 80px 0 32px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 56px;
}
.site-footer .logo-img { height: 32px; margin-bottom: 22px; }
.footer-tagline {
  font-size: 14px;
  color: var(--silver-3);
  max-width: 280px;
  line-height: 1.55;
}
.footer-license {
  margin-top: 22px;
  font-family: var(--sub);
  font-size: 10px;
  color: var(--silver-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.8;
}
.site-footer h4 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--silver-light);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.site-footer a {
  display: block;
  color: var(--silver-3);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: color .15s;
}
.site-footer a:hover { color: var(--teal); }
.footer-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sub);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-3);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-certs { display: flex; gap: 24px; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 1080px) {
  .doors-strip, .why-grid, .reviews-grid, .process-grid, .pillars { grid-template-columns: 1fr 1fr; }
  .door, .process-step, .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .report-grid { grid-template-columns: 1fr; }
  .report-text { padding: 64px 32px; border-right: none; border-bottom: 1px solid var(--line); }
  .areas-grid, .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .svc-feature { grid-template-columns: 1fr; padding: 40px; }
  .svc { grid-column: span 3; }
  .state-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav { display: none; }
}

@media (max-width: 720px) {
  section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .doors-strip, .why-grid, .reviews-grid, .process-grid, .pillars,
  .services-grid, .trust-rail-inner, .footer-cols { grid-template-columns: 1fr; }
  .svc { grid-column: 1 / -1; }
  .door, .process-step, .pillar, .trust-cell, .review { border-right: none; }
  .door, .process-step, .pillar, .trust-cell { border-bottom: 1px solid var(--line); }
  .hero { padding-top: 56px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.22em; }
  .hero h1 { font-size: clamp(44px, 12vw, 72px); }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .reviews-aggregate { text-align: left; }
  .state-grid { grid-template-columns: repeat(2, 1fr); }
  .state-cell .abbr { font-size: 36px; }
  .report-text { padding: 48px 20px; }
  .report-canvas { padding: 32px 20px; }
  .report-body { grid-template-columns: 1fr; }
  .report-side { border-right: none; border-bottom: 1px solid var(--line); }
  .svc-feature { padding: 32px 20px; }
  .svc-feature h3 { font-size: 40px; }
  .svc-feature .price { font-size: 44px; }
  .footer-base { flex-direction: column; align-items: flex-start; }
}

/* ===================================================================
   Local-office additions — location banner + /locations city picker
   =================================================================== */

.loc-banner {
  background: var(--charcoal-2);
  border-bottom: 1px solid var(--line);
}
.loc-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--sub);
  font-size: 14px;
  color: var(--silver);
  flex-wrap: wrap;
}
.loc-banner-inner strong { color: var(--silver-light); font-weight: 600; }
.loc-banner-inner .pin { margin-right: 4px; }
.loc-banner-inner a {
  color: var(--teal);
  text-decoration: none;
  white-space: nowrap;
}
.loc-banner-inner a:hover { color: var(--silver-light); }

.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  padding: 8px 0 40px;
}
.loc-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--charcoal-2);
  text-decoration: none;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
}
.loc-card:hover {
  border-color: var(--teal-deep);
  background: var(--charcoal-3);
  transform: translateY(-2px);
}
.loc-card-city {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: .01em;
  color: var(--silver-light);
  text-transform: uppercase;
}
.loc-card-state {
  font-family: var(--sub);
  font-size: 13px;
  color: var(--silver-2);
  margin-top: 4px;
}
.loc-card-meta {
  font-family: var(--body);
  font-size: 13px;
  color: var(--silver-3);
  margin-top: 14px;
}
.loc-card-go {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--sub);
  font-size: 14px;
  color: var(--teal);
}

@media (max-width: 700px) {
  .loc-banner-inner { padding: 10px 20px; }
}

/* ===================================================================
   Contact form (in the #book / final-CTA section)
   =================================================================== */

.contact-form {
  max-width: 640px;
  margin: 32px auto 0;
  text-align: left;
}
.contact-form .cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--sub);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-2);
  margin-bottom: 16px;
}
.contact-form .cf-full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--body);
  font-size: 15px;
  text-transform: none;
  letter-spacing: normal;
  color: var(--silver-light);
  background: var(--charcoal-2);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 12px 14px;
  width: 100%;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal-deep);
  box-shadow: 0 0 0 3px var(--teal-glow);
}
.contact-form button[type="submit"] {
  width: 100%;
  margin-top: 4px;
  border: none;
  cursor: pointer;
}
.contact-form .cf-note {
  margin-top: 14px;
  font-family: var(--sub);
  font-size: 12px;
  color: var(--silver-3);
  text-align: center;
}

@media (max-width: 560px) {
  .contact-form .cf-grid { grid-template-columns: 1fr; }
}
