:root {
  --bg: #05070b;
  --bg-soft: #0b111b;
  --panel: rgba(9, 14, 24, 0.86);
  --panel-solid: #0b111b;
  --text: #f5f7fb;
  --muted: #aeb8c7;
  --blue: #1f8dff;
  --blue-soft: #74b9ff;
  --red: #ff3b3b;
  --red-soft: #ff6464;
  --line: rgba(255,255,255,0.14);
  --shadow: 0 24px 80px rgba(0,0,0,0.42);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(31,141,255,0.22), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(255,59,59,0.18), transparent 28%),
    linear-gradient(180deg, #05070b 0%, #070c14 45%, #030407 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(3, 5, 9, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-mark {
  padding: 7px 10px;
  border: 1px solid rgba(31,141,255,0.8);
  box-shadow: 0 0 22px rgba(31,141,255,0.45);
  background: linear-gradient(135deg, rgba(31,141,255,0.95), rgba(5,7,11,0.9));
  border-radius: 8px;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav a:hover { color: var(--text); }

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--red), #a80f1d);
  box-shadow: 0 0 30px rgba(255,59,59,0.35);
}

.btn-secondary {
  border: 1px solid rgba(116,185,255,0.52);
  background: rgba(31,141,255,0.12);
  color: #e8f4ff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 92px) clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(3,5,9,0.98) 0%, rgba(3,5,9,0.78) 43%, rgba(3,5,9,0.36) 100%),
    repeating-linear-gradient(100deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 12px);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: auto -10% -40% 20%;
  height: 55%;
  background:
    linear-gradient(90deg, transparent, rgba(31,141,255,0.2), rgba(255,59,59,0.18), transparent);
  filter: blur(36px);
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-soft);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(31,141,255,0.25), 0 3px 0 rgba(255,255,255,0.1);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: #dbe6f5;
  background: rgba(255,255,255,0.055);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-card {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(116,185,255,0.34);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(31,141,255,0.22), rgba(255,59,59,0.16)), rgba(255,255,255,0.04);
  box-shadow: var(--shadow), 0 0 70px rgba(31,141,255,0.16);
}

.hero-card img {
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.section {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 88px) clamp(18px, 4vw, 56px);
}

.intro-strip {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: -1px;
  padding-top: 22px;
  padding-bottom: 22px;
  max-width: none;
  background: linear-gradient(90deg, rgba(31,141,255,0.18), rgba(255,59,59,0.14));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip strong { color: #ffffff; }

.intro-strip a {
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) { color: var(--muted); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.panel,
.timeline-item,
.contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)), var(--panel);
  box-shadow: 0 20px 70px rgba(0,0,0,0.25);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 252px;
  padding: 24px;
  border-radius: 22px;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% -30%;
  height: 55%;
  background: radial-gradient(circle, rgba(31,141,255,0.22), transparent 68%);
  pointer-events: none;
}

.service-card.featured {
  border-color: rgba(31,141,255,0.42);
  box-shadow: 0 0 45px rgba(31,141,255,0.12), 0 20px 70px rgba(0,0,0,0.25);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  border-radius: 15px;
  border: 1px solid rgba(116,185,255,0.45);
  background: linear-gradient(135deg, rgba(31,141,255,0.78), rgba(3,5,9,0.8));
}

.service-card p { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 26px;
}

.panel-blue { border-color: rgba(31,141,255,0.32); }
.panel-red { border-color: rgba(255,59,59,0.32); }

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #e7eef8;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-soft);
  font-weight: 900;
}

.quote-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.quote-box span {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,59,59,0.12);
  border: 1px solid rgba(255,59,59,0.22);
  color: #ffffff;
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-item {
  padding: 24px;
  border-radius: 22px;
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  font-weight: 900;
}

.timeline-item p { color: var(--muted); }

.lookup-frame-wrap {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(116,185,255,0.28);
  background: rgba(3,5,9,0.84);
  box-shadow: var(--shadow), 0 0 55px rgba(31,141,255,0.12);
}

.lookup-frame-wrap iframe {
  width: 100%;
  min-height: 780px;
  border: 0;
  display: block;
  background: #ffffff;
}

.compliance {
  max-width: none;
  margin: 0;
  background: linear-gradient(90deg, rgba(31,141,255,0.16), rgba(255,59,59,0.16)), #070b12;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compliance-content {
  max-width: 1220px;
  margin: 0 auto;
}

.compliance p {
  max-width: 820px;
  color: var(--muted);
}

.contact { padding-bottom: 100px; }

.contact-card {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.55fr;
  gap: 26px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 28px;
  border-color: rgba(116,185,255,0.26);
}

.contact-card p { color: var(--muted); }

.contact-details {
  display: grid;
  gap: 8px;
  color: #dce8f6;
}

.contact-details a:hover { color: var(--blue-soft); }

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-actions .btn { width: 100%; }

.full { white-space: nowrap; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: #020305;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.site-footer p { margin: 0; }

@media (max-width: 1180px) {
  .service-grid,
  .benefit-grid,
  .local-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .nav { display: none; }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .benefit-grid,
  .local-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .local-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card { max-width: 620px; }

  .intro-strip,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .lookup-frame-wrap iframe { min-height: 880px; }

  .contact-actions {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header { gap: 12px; }

  .brand-text { display: none; }

  .header-cta {
    min-height: 40px;
    padding: 10px 13px;
    font-size: 0.78rem;
  }

  .hero { padding-top: 36px; }

  .hero-actions { display: grid; }

  .service-grid,
  .benefit-grid,
  .local-grid,
  .timeline,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .service-card { min-height: auto; }

  .lookup-frame-wrap {
    margin-left: -8px;
    margin-right: -8px;
    border-radius: 18px;
  }

  .lookup-frame-wrap iframe { min-height: 960px; }
}


.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)), var(--panel);
  box-shadow: 0 20px 70px rgba(0,0,0,0.25);
}

.benefit-card h3 {
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.benefit-card.insured {
  border-color: rgba(255,59,59,0.35);
  box-shadow: 0 0 35px rgba(255,59,59,0.10), 0 20px 70px rgba(0,0,0,0.25);
}

.diy-tool-photo {
  margin: 22px 0 18px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}

.diy-tool-photo img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 16px;
  display: block;
  background: #fff;
}



.local-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.local-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)), var(--panel);
  box-shadow: 0 20px 70px rgba(0,0,0,0.25);
}

.local-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.local-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(135deg, rgba(255,59,59,0.72), rgba(31,141,255,0.72));
  box-shadow: 0 0 25px rgba(31,141,255,0.18);
  font-size: 1.25rem;
  font-weight: 900;
}

.local-cta {
  margin-top: 22px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,59,59,0.30);
  background:
    linear-gradient(90deg, rgba(255,59,59,0.16), rgba(31,141,255,0.12)),
    rgba(9, 14, 24, 0.86);
  box-shadow: 0 20px 70px rgba(0,0,0,0.25);
}

.local-cta h3 {
  margin-bottom: 4px;
}

.local-cta p {
  margin-bottom: 0;
  color: var(--muted);
}
