:root {
  --ink: #1b2430;
  --navy: #0c2233;
  --blue: #1565c0;
  --blue-deep: #0d47a1;
  --teal: #0f766e;
  --green: #2e7d32;
  --lime: #7cb342;
  --lime-bright: #9ccc65;
  --cream: #f4f7f2;
  --mist: #e8eee6;
  --paper: #ffffff;
  --muted: #5c6b73;
  --line: #d5ddd2;
  --shadow: 0 18px 50px rgba(12, 34, 51, 0.12);
  --radius: 18px;
  --max: 1180px;
  --header-h: 84px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 88px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--lime));
  border-radius: 2px;
}
h1, h2, h3 { font-family: "Oswald", sans-serif; line-height: 1.12; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.3rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.8rem); font-weight: 650; }
h3 { font-size: 1.35rem; font-weight: 600; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 58ch; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(90deg, #1565c0 0%, #1b8a4a 55%, #7cb342 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(21, 101, 192, 0.28);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(21, 101, 192, 0.36); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}
.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(213,221,210,0.7);
}
.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
  background: transparent;
}
.form-error {
  display: none;
  margin-top: 10px;
  color: #b42318;
  font-size: 0.88rem;
  text-align: center;
}
.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-weight: 550; font-size: 0.95rem; color: var(--ink); }
.nav a:hover { color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.phone-link { font-weight: 650; color: var(--navy); font-size: 0.95rem; }
.menu-toggle {
  display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 7px 8px; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid; align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}
.hero-media {
  position: absolute; inset: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05);
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,20,30,0.78) 0%, rgba(8,20,30,0.55) 48%, rgba(8,20,30,0.28) 100%),
    linear-gradient(180deg, rgba(8,20,30,0.15) 0%, rgba(8,20,30,0.45) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 72px 0 80px; }
.hero-kicker {
  display: inline-block;
  background: rgba(124,179,66,0.18);
  border: 1px solid rgba(124,179,66,0.4);
  color: #d8f0b8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 { max-width: 16ch; margin-bottom: 16px; }
.hero p {
  max-width: 46ch;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.86);
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 22px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
}
.hero-meta strong { color: #fff; display: block; font-size: 1.05rem; }
.price-chip {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 14px;
  border-radius: 12px;
}
.price-chip b { font-size: 1.35rem; font-family: "Oswald", sans-serif; }

/* Trust bar */
.trust {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-item strong { display: block; font-family: "Oswald", sans-serif; font-size: 1.15rem; }
.trust-item span { font-size: 0.86rem; color: var(--muted); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(12,34,51,0.04);
}
.card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 22px; }
.card-body p { color: var(--muted); margin: 8px 0 14px; }
.card-tag {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.checklist { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}
.checklist li::before {
  content: "";
  width: 18px; height: 18px; margin-top: 3px;
  border-radius: 50%;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg, var(--blue), var(--lime)) border-box;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 9px var(--lime);
}

/* Pricing */
.pricing {
  background: linear-gradient(180deg, #0c2233 0%, #12364d 100%);
  color: #fff;
}
.pricing .eyebrow { color: var(--lime-bright); }
.pricing .lead { color: rgba(255,255,255,0.75); }
.price-panel {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.price-box, .calc-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px;
}
.big-price {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1;
}
.big-price span { font-size: 0.38em; opacity: 0.8; font-weight: 500; }
.fine { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-top: 10px; }
.calc-box label { display: block; font-size: 0.86rem; margin-bottom: 6px; color: rgba(255,255,255,0.8); }
.calc-box input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.2);
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.estimate {
  font-size: 1.7rem;
  font-family: "Oswald", sans-serif;
  margin-top: 6px;
}

/* Areas */
.areas { background: var(--cream); }
.city-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.city-chip {
  background: #fff;
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 550;
  font-size: 0.92rem;
}
.city-chip.home { border-color: var(--lime); background: #f1f8e9; }

/* Process */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.step {
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}
.step-num {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  background: linear-gradient(90deg, var(--blue), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Quote */
.quote {
  background: var(--navy);
  color: #fff;
}
.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.form {
  background: #fff;
  color: var(--ink);
  padding: 28px;
  border-radius: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form label { display: block; font-size: 0.82rem; font-weight: 650; margin: 10px 0 6px; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  background: #fbfcfb;
}
.form textarea { min-height: 110px; resize: vertical; }
.form .btn { width: 100%; margin-top: 16px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 10px; text-align: center; }
.form-success {
  display: none;
  padding: 28px 10px;
  text-align: center;
}
.form-success h3 { margin-bottom: 8px; }

/* FAQ */
.faq-list { display: grid; gap: 10px; margin-top: 28px; }
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
}
summary { cursor: pointer; font-weight: 650; list-style: none; }
summary::-webkit-details-marker { display: none; }
details p { margin-top: 10px; color: var(--muted); }

/* Footer */
.site-footer {
  background: #08151f;
  color: rgba(255,255,255,0.78);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.site-footer img { height: 70px; margin-bottom: 12px; filter: brightness(1.05); }
.site-footer h4 { color: #fff; margin-bottom: 10px; font-family: "Oswald", sans-serif; }
.site-footer a:hover { color: var(--lime-bright); }
.legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
  .nav, .phone-link { display: none; }
  .nav.open {
    display: flex;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 18px 20px 22px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
  }
  .menu-toggle { display: block; }
  .trust-row, .services-grid, .steps, .price-panel, .split, .quote-grid, .footer-grid, .form-row {
    grid-template-columns: 1fr;
  }
  .split img { height: 280px; }
  .hero { min-height: 86vh; }
}
