:root {
  --blue: #064891;
  --blue-dark: #052d59;
  --sky: #1ba9dc;
  --green: #4f9519;
  --yellow: #f2b917;
  --ink: #183044;
  --muted: #627385;
  --line: #dce8ee;
  --panel: #f5fafc;
  --white: #fff;
  --shadow: 0 20px 50px rgba(8, 50, 84, 0.14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1140px, calc(100% - 36px)); margin: 0 auto; }
.sr-only, .skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 20;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--blue-dark);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(220, 232, 238, 0.9);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand img { width: 190px; height: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: var(--blue-dark);
}
.site-nav a { text-decoration: none; }
.site-nav a:hover { color: var(--green); }
.nav-phone { white-space: nowrap; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(79, 149, 25, 0.22);
}
.button:hover { background: #3d7b12; }
.button-secondary {
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(6, 72, 145, 0.2);
}
.button-small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  min-height: 690px;
  padding: 80px 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
}
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; object-position: center right; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.20) 42%, rgba(255, 255, 255, 0.20) 76%, rgba(255, 255, 255, 0.00) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.12; margin: 0; color: var(--blue-dark); }
h1 { max-width: 780px; font-size: clamp(2.25rem, 5vw, 4.15rem); }
.hero h1 { margin: 0 auto; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.35rem; }
.hero-copy {
  max-width: 660px;
  margin: 22px auto 0;
  color: #31475b;
  font-size: 1.17rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.trust-list li {
  padding: 8px 12px;
  border: 1px solid rgba(6, 72, 145, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 0.92rem;
}

.proof-band { background: var(--blue-dark); color: var(--white); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.proof-grid div { padding: 25px 28px; background: rgba(255, 255, 255, 0.06); }
.proof-grid strong { display: block; font-size: 1.15rem; color: var(--yellow); }
.proof-grid span { display: block; color: #d8e8f1; }

.section { padding: 88px 0; }
.section-alt { background: var(--panel); }
.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.align-left { margin-left: 0; text-align: left; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card,
.checklist-panels article,
.reviews-grid figure,
.contact-card,
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(8, 50, 84, 0.07);
}
.service-card { padding: 26px; }
.service-card.featured { border-top: 5px solid var(--green); }
.service-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.service-card p,
.checklist-panels p,
.contact-card span,
.faq-grid p { color: var(--muted); }
ul { padding-left: 20px; }
li::marker { color: var(--green); }

.split {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 42px;
  align-items: start;
}
.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 900;
}
.checklist-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.checklist-panels article { padding: 26px; }

.areas-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.city-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.city-list li {
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 900;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}
.steps li {
  position: relative;
  min-height: 190px;
  padding: 58px 22px 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 18px;
  left: 22px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue-dark);
  font-weight: 900;
}
.steps span { display: block; margin-top: 8px; color: var(--muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.reviews-grid figure { margin: 0; padding: 26px; }
.stars { color: var(--yellow); font-weight: 900; }
blockquote { margin: 14px 0; color: #344d63; }
figcaption { color: var(--blue-dark); font-weight: 900; }

.quote-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
}
.quote-section h2, .quote-section .eyebrow { color: var(--white); }
.quote-section p { color: #d8e8f1; }
.quote-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}
.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}
.contact-card span { color: #d8e8f1; }
.quote-form {
  display: grid;
  gap: 15px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.quote-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
  color: var(--blue-dark);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #cbdbe5;
  border-radius: var(--radius);
  font: inherit;
}
.quote-form textarea { resize: vertical; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(27, 169, 220, 0.25);
  border-color: var(--sky);
}
.hp-field { display: none; }
.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 0.9rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq-grid details { padding: 20px 22px; }
.faq-grid summary {
  color: var(--blue-dark);
  font-weight: 900;
  cursor: pointer;
}

.site-footer {
  padding: 48px 0 24px;
  background: #09243f;
  color: #d8e8f1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 36px;
}
.footer-grid img { width: 210px; height: auto; background: var(--white); border-radius: var(--radius); padding: 8px; }
.footer-grid h2 { margin-bottom: 12px; color: var(--white); font-size: 1rem; }
.footer-grid a { display: block; margin: 8px 0; color: #d8e8f1; text-decoration: none; }
.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #bad0dd;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: grid; gap: 14px; }
  .hero { min-height: 640px; padding: 80px 0; }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.2));
  }
  .service-grid, .proof-grid, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
  .split, .areas-layout, .process-grid, .quote-layout { grid-template-columns: 1fr; }
  .checklist-panels, .faq-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1140px); }
  .header-inner { min-height: 70px; }
  .brand img { width: 154px; }
  .site-nav { top: 70px; }
  .hero { min-height: 700px; align-items: center; padding: 80px 0; }
  .hero-image { object-position: 62% center; }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.25));
  }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; }
  .section { padding: 64px 0; }
  .city-list { grid-template-columns: 1fr 1fr; }
  .service-card, .checklist-panels article, .quote-form, .reviews-grid figure { padding: 22px; }
}
