* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background-color: #ffffff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(47, 45, 94, .09), rgba(126, 124, 175, .08)),
    radial-gradient(circle at 15% 10%, rgba(191, 242, 117, .18), transparent 24rem),
    repeating-linear-gradient(115deg, rgba(47, 45, 94, .055) 0, rgba(47, 45, 94, .055) 1px, transparent 1px, transparent 22px),
    #f8f7fb;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  background: rgba(23, 23, 51, .92);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  background: #2f2d5e;
  border: 2px solid #bff275;
  display: grid;
  place-items: center;
}

.logo-mark svg {
  width: 28px;
  height: 28px;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 22px;
}

.desktop-nav a,
.mobile-panel a:not(.phone-button) {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.desktop-nav a:hover,
.mobile-panel a:not(.phone-button):hover {
  color: #bff275;
}

.header-phone-desktop {
  display: none !important;
}

.hamburger-button {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
  color: #ffffff;
}

.hamburger-button span,
.hamburger-button span::before,
.hamburger-button span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  content: "";
}

.hamburger-button span::before {
  transform: translateY(-7px);
}

.hamburger-button span::after {
  transform: translateY(5px);
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(23, 23, 51, .98);
}

.mobile-panel.is-open {
  display: grid;
  gap: 16px;
}

.phone-button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid #bff275;
  background: #bff275;
  color: #111827 !important;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .45);
  animation: ctaPulse 2.4s infinite;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.phone-button:hover,
.cta-button:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: #ffffff;
  color: #111827 !important;
}

@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .44); }
  70% { box-shadow: 0 0 0 16px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.section {
  padding: 74px 0;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-section {
  min-height: 780px;
  padding-top: 118px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(18, 18, 41, .96) 0%, rgba(47, 45, 94, .8) 46%, rgba(47, 45, 94, .42) 100%), url('../images/hero-technician.png');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(23, 23, 51, .72));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  background: #bff275;
  color: #111827;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.hero-section h1 {
  margin: 18px 0 12px;
  color: #ffffff;
  font-size: clamp(39px, 8vw, 70px);
  line-height: .96;
  letter-spacing: -.055em;
}

.hero-lede {
  max-width: 690px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.75;
}

.stars {
  margin: 10px 0 12px;
  color: #bff275;
  font-size: 24px;
  letter-spacing: 3px;
}

.trust-icons-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 16px 0 22px;
}

.trust-icons-row img {
  width: auto;
  height: 48px;
  object-fit: contain;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .14);
}

.hero-cta-copy {
  max-width: 570px;
  margin: 20px 0 14px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.hero-benefits {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08));
  backdrop-filter: blur(18px);
}

.hero-benefits h2 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 31px;
  line-height: 1.1;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 12px;
  color: #ffffff;
  font-size: 16px;
}

.benefit-icon,
.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(191, 242, 117, .65);
  color: #bff275;
}

.benefit-icon svg,
.card-icon svg {
  width: 25px;
  height: 25px;
}

.stone-panel {
  border: 1px solid rgba(47, 45, 94, .12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(245, 244, 250, .88)),
    repeating-linear-gradient(120deg, rgba(47, 45, 94, .055) 0, rgba(47, 45, 94, .055) 1px, transparent 1px, transparent 18px);
  box-shadow: 0 24px 70px rgba(47, 45, 94, .12);
}

.split-35 {
  display: grid;
  gap: 26px;
  align-items: center;
}

.split-35 .split-text {
  order: 2;
}

.split-35 .split-media {
  order: 1;
}

.split-media img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

.section-title {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title h2,
.split-text h2 {
  margin: 10px 0 14px;
  color: #111827;
  font-size: clamp(31px, 6.2vw, 46px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.section-title p,
.split-text p,
.content-copy p,
.content-copy li {
  color: #2f3440;
  font-size: 16px;
  line-height: 1.75;
}

.heading-rule {
  width: 72px;
  height: 5px;
  margin-top: 13px;
  background: #bff275;
}

.heading-rule.center {
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-card,
.problem-card,
.review-card,
.faq-item,
.area-card {
  border: 1px solid rgba(47, 45, 94, .14);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 20px 45px rgba(47, 45, 94, .08);
}

.service-card {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.service-card h3,
.problem-card h3,
.faq-item h3,
.area-card h3 {
  color: #111827;
  font-size: 22px;
  line-height: 1.18;
}

.service-card ul,
.problem-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.problem-card li {
  position: relative;
  padding-left: 20px;
  color: #2f3440;
  font-size: 16px;
  line-height: 1.65;
}

.service-card li::before,
.problem-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #bff275;
}

.dark-section {
  background: linear-gradient(135deg, #171733, #2f2d5e 62%, #24244e);
  color: #ffffff;
}

.dark-section h2,
.dark-section h3,
.dark-section p,
.dark-section li {
  color: #ffffff;
}

.dark-section .section-kicker {
  color: #111827;
}

.problem-grid {
  display: grid;
  gap: 16px;
}

.problem-card {
  padding: 22px;
}

.problem-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: #2f2d5e;
  color: #ffffff;
  font-weight: 900;
}

.review-shell {
  position: relative;
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-height: 320px;
  padding: 24px;
  scroll-snap-align: start;
}

.review-card .stars {
  margin: 0 0 12px;
  color: #2f2d5e;
  font-size: 18px;
  letter-spacing: 1px;
}

.review-card h3 {
  color: #111827;
  font-size: 22px;
}

.review-card p {
  margin-top: 12px;
  color: #2f3440;
  font-size: 16px;
  line-height: 1.65;
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.review-control {
  width: 48px;
  height: 48px;
  border: 1px solid #2f2d5e;
  background: #ffffff;
  color: #2f2d5e;
  font-size: 22px;
  font-weight: 900;
}

.review-control:hover {
  background: #2f2d5e;
  color: #ffffff;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 44px 24px;
  background: linear-gradient(135deg, #2f2d5e, #7e7caf);
  color: #ffffff;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .25);
  pointer-events: none;
}

.cta-band h2,
.cta-band p {
  position: relative;
  color: #ffffff;
}

.cta-band h2 {
  font-size: clamp(31px, 6vw, 44px);
  line-height: 1.08;
}

.cta-band p {
  margin: 12px 0 22px;
  font-size: 18px;
  line-height: 1.65;
}

.city-list,
.zip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.city-list span,
.zip-list span {
  padding: 9px 12px;
  background: rgba(47, 45, 94, .08);
  color: #111827;
  font-size: 16px;
  font-weight: 800;
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 22px;
}

.faq-item p {
  margin-top: 10px;
  color: #2f3440;
  font-size: 16px;
  line-height: 1.7;
}

.footer {
  padding: 54px 0 96px;
  background: #111827;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  gap: 26px;
}

.footer a,
.footer p,
.footer li {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.75;
}

.footer h2,
.footer h3 {
  color: #ffffff;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.disclaimer {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 12px max(0px, env(safe-area-inset-bottom));
  background: #111827;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s ease, opacity .28s ease;
}

.mobile-sticky-call.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 640px) {
  .service-grid,
  .problem-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-track {
    grid-auto-columns: 48%;
  }
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex !important;
  }

  .header-phone-desktop {
    display: inline-flex !important;
  }

  .hamburger-button,
  .mobile-panel,
  .mobile-sticky-call {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(310px, .55fr);
    align-items: center;
  }

  .split-35 {
    grid-template-columns: minmax(0, 65fr) minmax(0, 35fr);
  }

  .split-35.reverse {
    grid-template-columns: minmax(0, 35fr) minmax(0, 65fr);
  }

  .split-35 .split-text,
  .split-35 .split-media {
    order: initial;
  }

  .split-35.reverse .split-media {
    order: 1;
  }

  .split-35.reverse .split-text {
    order: 2;
  }

  .footer {
    padding-bottom: 54px;
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .problem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-track {
    grid-auto-columns: calc((100% - 32px) / 3);
  }

  .footer-grid {
    grid-template-columns: 1.3fr .8fr 1fr;
  }
}

@media (max-width: 767px) {
  .header-shell {
    min-height: 68px;
  }

  .logo-link {
    font-size: 24px;
  }

  .hero-section {
    min-height: 760px;
    padding-top: 96px;
    background-position: 58% center;
  }

  .hero-section h1 {
    font-size: clamp(39px, 11vw, 49px);
  }

  .section-title h2,
  .split-text h2,
  .hero-benefits h2,
  .cta-band h2 {
    font-size: clamp(31px, 8vw, 34px);
  }

  .section {
    padding: 54px 0;
  }

  .phone-button,
  .cta-button {
    width: 100%;
    max-width: 360px;
  }

  .mobile-panel .phone-button {
    max-width: none;
  }
}
