:root {
  --navy: #01102b;
  --navy-deep: #000814;
  --navy-mid: #0a1c45;
  --navy-soft: #13284f;
  --sky: #e7edf6;
  --white: #ffffff;
  --off: #f3f6fb;
  --ink: #0b1220;
  --muted: #4a566b;
  --line: #d4dce8;
  --success: #0d7a4f;
  --shadow: 0 16px 40px rgba(1, 16, 43, 0.16);
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--navy-deep);
  color: var(--white);
  font-size: 0.9rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar a:hover { text-decoration: underline; }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  width: 42px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-text strong {
  display: block;
  color: var(--navy);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
.brand-text span {
  display: block;
  color: var(--navy-soft);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

nav.primary { display: flex; align-items: center; gap: 4px; }
nav.primary a {
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
}
nav.primary a:hover,
nav.primary a.active {
  color: var(--navy);
  background: var(--sky);
}

.nav-cta { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-deep); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
  margin: 0 auto;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.08), transparent 26%),
    linear-gradient(135deg, #00060f 0%, #01102b 48%, #0a1c45 100%);
  color: var(--white);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border: 28px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero p.lead {
  font-size: 1.15rem;
  max-width: 560px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
}
.trust-row strong { display: block; color: var(--white); font-size: 1rem; }

.hero-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-card h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero-card p { color: var(--muted); margin-bottom: 16px; font-size: 0.95rem; }

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin: 12px 0 6px;
  color: var(--navy);
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--off);
  border-radius: 10px;
  padding: 11px 12px;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--navy-soft);
  background: var(--white);
}
textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 10px; }

section { padding: 72px 0; }
.section-head { max-width: 680px; margin-bottom: 36px; }
.kicker {
  color: var(--navy-mid);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 8px;
}
h2 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.05;
}
.muted { color: var(--muted); }
.band { background: var(--off); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(1, 16, 43, 0.04);
}
.card:hover { border-color: #b7c3d6; transform: translateY(-2px); transition: 0.18s ease; }
.icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sky);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.card h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 8px; }

.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.checklist { list-style: none; display: grid; gap: 12px; margin-top: 20px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }
.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.75rem;
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat {
  background: var(--navy);
  color: white;
  border-radius: 16px;
  padding: 22px;
}
.stat:nth-child(2), .stat:nth-child(3) { background: var(--navy-deep); }
.stat b { display: block; font-size: 1.8rem; line-height: 1; margin-bottom: 6px; }

.towns { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote {
  background: var(--white);
  border-left: 4px solid var(--navy);
  padding: 22px;
  border-radius: 0 16px 16px 0;
  box-shadow: var(--shadow);
}
.quote p { margin-bottom: 14px; }
.quote cite { font-style: normal; font-weight: 700; color: var(--navy); display: block; }
.quote small { color: var(--muted); }

.cta-band {
  background: linear-gradient(135deg, #00060f, #01102b);
  color: white;
  text-align: center;
}
.cta-band h2, .cta-band .kicker { color: white; }
.cta-band p { color: rgba(255,255,255,0.88); max-width: 640px; margin: 12px auto 24px; }

.page-hero {
  background: linear-gradient(135deg, #00060f, #01102b 60%, #0a1c45);
  color: white;
  padding: 56px 0;
}
.page-hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  text-transform: uppercase;
}
.page-hero p { color: rgba(255,255,255,0.88); max-width: 640px; margin-top: 10px; }

.service-list { display: grid; gap: 18px; }
.service-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.map-card {
  background: var(--navy);
  color: white;
  border-radius: 20px;
  padding: 28px;
  min-height: 280px;
}

footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.86);
  padding: 48px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
footer h3 { color: white; margin-bottom: 12px; font-size: 1rem; }
footer ul { list-style: none; display: grid; gap: 8px; }
footer a:hover { color: white; text-decoration: underline; }
.legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.alert {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #e8f7ef;
  color: var(--success);
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-grid, .why-grid, .cards, .quotes, .two-col, .footer-grid {
    grid-template-columns: 1fr;
  }
  .menu-toggle { display: grid; place-items: center; }
  nav.primary, .nav-cta .btn-ghost { display: none; }
  header.site-header.open nav.primary {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: white;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    align-items: stretch;
  }
}
@media (max-width: 640px) {
  .service-row { grid-template-columns: 1fr; }
  .hero { padding: 48px 0; }
}
