:root {
  --navy: #083552;
  --navy-dark: #04243a;
  --blue: #0e6cb4;
  --blue-bright: #1784d4;
  --sand: #eef5fb;
  --ink: #152533;
  --muted: #526575;
  --white: #ffffff;
  --border: #c9d8e6;
  --ok: #0f7a4c;
  --accent: #f0a202;
  --shadow: 0 12px 32px rgba(4, 36, 58, 0.1);
  --radius: 14px;
  --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 0;
}
.brand {
  display: flex; flex-direction: row; align-items: center; gap: 0;
  color: var(--navy); font-weight: 800; text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-text span { font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.nav { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.nav a { color: var(--ink); font-weight: 600; font-size: 0.95rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; border-radius: 999px; padding: 0.85rem 1.25rem;
  font-weight: 700; border: 0; cursor: pointer; text-decoration: none;
}
.btn:hover { text-decoration: none; filter: brightness(1.05); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-secondary {
  background: var(--white); color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-lg { padding: 1rem 1.4rem; font-size: 1.05rem; }
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(23,132,212,0.28), transparent 42%),
    radial-gradient(circle at 8% 90%, rgba(8,53,82,0.08), transparent 45%),
    linear-gradient(165deg, #dcecf8 0%, #f5f9fc 48%, #ffffff 100%);
  padding: 3.5rem 0 2.5rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -35% 45%;
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(14,108,180,0.14), transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.icon {
  width: 2.6rem; height: 2.6rem; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 0.75rem;
  background: linear-gradient(145deg, #0e6cb4, #083552); color: #fff;
}
.icon svg { width: 1.35rem; height: 1.35rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card { transition: transform 0.15s ease, box-shadow 0.15s ease; }
.service-card:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(4, 36, 58, 0.12); }
.brand-mark {
  width: 2rem; height: 2rem; border-radius: 8px;
  background: linear-gradient(145deg, var(--blue), var(--navy-dark));
  display: inline-grid; place-items: center; margin-right: 0.55rem;
  color: #fff; font-size: 0.85rem; font-weight: 800;
}
.brand { flex-direction: row; align-items: center; }
.brand-text { display: flex; flex-direction: column; gap: 0.1rem; }
.btn-primary { box-shadow: 0 8px 18px rgba(14, 108, 180, 0.28); }
.btn-primary:hover { filter: brightness(1.06); }
.accent-bar {
  height: 4px; width: 3rem; border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  margin: 0 0 0.9rem;
}
.hero-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1.3fr 0.9fr; align-items: start;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .nav .hide-sm { display: none; }
}
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--blue); background: #e7f3fc; padding: 0.35rem 0.7rem;
  border-radius: 999px; margin-bottom: 0.9rem;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin: 0 0 0.8rem; color: var(--navy-dark); }
h2 { font-size: 1.7rem; color: var(--navy-dark); margin: 0 0 0.8rem; }
h3 { margin: 0 0 0.45rem; color: var(--navy); }
.lead { font-size: 1.12rem; color: var(--muted); margin: 0 0 1.3rem; max-width: 38rem; }
.trust {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0 1.4rem;
}
.trust li {
  list-style: none; background: var(--white); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.4rem 0.75rem; font-size: 0.88rem; color: var(--muted);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.25rem;
}
.form-card h2 { font-size: 1.25rem; }
label { display: block; font-weight: 650; font-size: 0.9rem; margin: 0.7rem 0 0.3rem; }
input, select, textarea {
  width: 100%; padding: 0.75rem 0.85rem; border-radius: 10px;
  border: 1px solid var(--border); font: inherit; background: #fff;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(26,111,181,0.25); border-color: var(--blue);
}
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.75rem; }
.section { padding: 3rem 0; }
.section.alt { background: var(--sand); }
.steps, .cards, .faqs { display: grid; gap: 1rem; }
.steps { grid-template-columns: repeat(3, 1fr); }
.cards { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 800px) {
  .steps, .cards { grid-template-columns: 1fr; }
}
.step-num {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  font-weight: 800; margin-bottom: 0.7rem;
}
.service-card a.more { font-weight: 700; }
.list-check { padding-left: 1.1rem; }
.list-check li { margin: 0.4rem 0; }
.neighborhoods {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem;
}
.neighborhoods span {
  background: #eaf2f8; color: var(--navy); border-radius: 999px;
  padding: 0.4rem 0.75rem; font-size: 0.9rem; font-weight: 600;
}
.faq details {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 0.9rem 1rem;
}
.faq summary { font-weight: 700; cursor: pointer; color: var(--navy); }
.site-footer {
  background: var(--navy-dark); color: #d7e6f2; padding: 2.5rem 0 5.5rem;
}
.site-footer a { color: #fff; }
.footer-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1.4fr 1fr 1fr;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.disclaimer {
  margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem; color: #a9c0d2;
}
.mobile-call {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 0.75rem 1rem; background: var(--navy-dark);
  display: none; box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}
.mobile-call .btn { width: 100%; }
@media (max-width: 800px) { .mobile-call { display: block; } }
.ok { color: var(--ok); font-weight: 700; }
