:root {
  --navy: #0f2544;
  --blue: #1266d6;
  --blue-dark: #0b55bc;
  --sky: #eaf4ff;
  --orange: #ff8a00;
  --gold: #ffb703;
  --text: #1c2838;
  --muted: #667085;
  --border: #d8e3f2;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(15, 37, 68, .13);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f7fbff;
  line-height: 1.6;
  padding-bottom: 74px;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 99;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(216, 227, 242, .85);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 800;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #344054;
  font-weight: 700;
}
.desktop-nav a {
  text-decoration: none;
}
.desktop-nav a:hover { color: var(--blue); }
.header-call {
  background: var(--orange);
  color: #111827;
  font-weight: 900;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(255, 138, 0, .23);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 38px;
  align-items: center;
  padding: clamp(46px, 6vw, 86px) clamp(18px, 5vw, 74px);
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 183, 3, .25), transparent 28%),
    linear-gradient(135deg, #eef7ff 0%, #ffffff 52%, #e8f3ff 100%);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--navy); line-height: 1.08; }
h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.55rem, 6.5vw, 5.5rem);
  letter-spacing: -.06em;
}
.hero-subtitle {
  max-width: 720px;
  margin: 20px 0 22px;
  color: #475467;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}
.offer-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}
.offer-strip span {
  background: #fff5e6;
  color: #703900;
  border: 1px solid #ffd59a;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: .93rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 0 0 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary {
  background: var(--orange);
  color: #111827;
  box-shadow: 0 14px 36px rgba(255, 138, 0, .26);
}
.btn.secondary {
  background: var(--navy);
  color: white;
}
.btn.large {
  font-size: 1.18rem;
  padding: 16px 28px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #344054;
  font-weight: 800;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.trust-row span:before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #dff7e8;
  color: #087443;
  font-size: .78rem;
}

.hero-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.service-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 2px;
  background: rgba(15, 37, 68, .96);
  color: white;
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 12px 30px rgba(15, 37, 68, .25);
}
.service-badge strong { font-size: 1.2rem; }
.service-badge span { color: #d8e3f2; }
.service-badge a { color: var(--gold); font-weight: 900; text-decoration: none; }

.quick-call {
  margin: -30px auto 0;
  width: min(1080px, calc(100% - 36px));
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 22px;
  background: var(--navy);
  color: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.quick-call a {
  color: var(--gold);
  font-size: 1.38rem;
  font-weight: 900;
  text-decoration: none;
}
.quick-call span { color: #d8e3f2; }

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 7vw, 96px) 0;
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -.04em;
}
.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid, .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card, .review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 36px rgba(15, 37, 68, .06);
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.32rem;
}
.service-card p, .review-card p { color: #475467; margin: 0; }

.problem-strip {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 44px);
  background: linear-gradient(135deg, var(--navy), #183e70);
  border-radius: 30px;
  color: white;
  box-shadow: var(--shadow);
}
.problem-strip h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}
.problem-strip ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.problem-strip li {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 800;
}
.problem-strip li:before {
  content: "✓ ";
  color: var(--gold);
}

.reviews-section {
  width: 100%;
  background: white;
  padding-left: clamp(18px, 5vw, 74px);
  padding-right: clamp(18px, 5vw, 74px);
}
.reviews-section .reviews-grid {
  max-width: 1160px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
}
.stars {
  color: var(--orange);
  letter-spacing: 1px;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.review-card strong {
  display: block;
  margin-top: 16px;
  color: var(--navy);
}
.review-card small { color: var(--muted); }
.center {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.areas-section { padding-top: 80px; }
.city-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.city-grid span {
  display: grid;
  place-items: center;
  min-height: 58px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 37, 68, .05);
}

.why-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: start;
  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
}
.why-card h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.why-card p { color: var(--muted); }
.why-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.why-card li {
  background: var(--sky);
  border: 1px solid #cae3ff;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 800;
}
.why-card li:before {
  content: "✓";
  color: #087443;
  margin-right: 9px;
}

.final-cta {
  margin: 0 auto clamp(44px, 6vw, 80px);
  width: min(1120px, calc(100% - 36px));
  padding: clamp(42px, 6vw, 70px);
  text-align: center;
  color: white;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 183, 3, .22), transparent 25%),
    linear-gradient(135deg, #0f2544, #0b55bc);
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.final-cta h2 {
  color: white;
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
}
.final-cta p {
  max-width: 720px;
  margin: 16px auto 22px;
  color: #e7eef8;
}
.final-cta small {
  display: block;
  margin-top: 18px;
  color: #d8e3f2;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 5vw, 74px);
  background: #08182d;
  color: white;
}
.site-footer p, .site-footer span { color: #a9b6c9; }
.site-footer a {
  display: block;
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
  font-size: 1.18rem;
  text-align: right;
}

.mobile-sticky-call {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 70;
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: #111827;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(15, 37, 68, .25);
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 42px; }
  .hero-card { max-width: 590px; margin: 0 auto; }
  .service-grid, .reviews-section .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .problem-strip, .why-card { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { padding-bottom: 86px; }
  .site-header {
    position: relative;
    min-height: auto;
    padding: 14px 16px;
  }
  .brand span { font-size: 1.05rem; }
  .header-call { display: none; }
  .hero {
    padding: 32px 18px 58px;
  }
  h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .hero-subtitle { font-size: 1.02rem; }
  .hero-actions .btn { width: 100%; }
  .trust-row { display: grid; }
  .hero-card { padding: 16px; border-radius: 24px; }
  .service-badge { position: static; margin-top: 14px; }
  .quick-call {
    margin-top: -26px;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }
  .section { width: min(100% - 28px, 1160px); padding: 58px 0; }
  .section-heading { text-align: left; }
  .service-grid, .reviews-section .reviews-grid, .city-grid { grid-template-columns: 1fr; }
  .reviews-section {
    padding-left: 14px;
    padding-right: 14px;
  }
  .problem-strip, .why-card, .final-cta { border-radius: 24px; }
  .site-footer {
    flex-direction: column;
    padding-bottom: 92px;
  }
  .site-footer a { text-align: left; }
  .mobile-sticky-call { display: flex; }
}
