:root {
  --blue-950: #072345;
  --blue-800: #0b4f9f;
  --blue-650: #0d6ad7;
  --blue-100: #eaf4ff;
  --rocket-navy: #053967;
  --rocket-blue: #075892;
  --rocket-cyan: #1fc9e8;
  --rocket-cyan-dark: #0a9fcb;
  --yellow: #b8f4ff;
  --ink: #102033;
  --muted: #5f6f83;
  --line: #d9e5f1;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(7, 35, 69, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #f8fbff;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 56px);
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(48px, 5vw, 72px);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 34px;
  color: #000000;
  font-weight: 400;
}

.header-call {
  display: none;
  padding: 11px 16px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rocket-cyan), var(--rocket-blue));
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(31, 201, 232, 0.24);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.mid-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/air-duct-cleaning-hero.png");
  background-size: cover;
  background-position: 68% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 35, 69, 0.94) 0%, rgba(7, 35, 69, 0.78) 45%, rgba(7, 35, 69, 0.14) 100%),
    linear-gradient(0deg, rgba(7, 35, 69, 0.32), rgba(7, 35, 69, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 40px;
}

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

.urgency-pill,
.eyebrow,
.form-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue-950);
  background: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  margin-bottom: 24px;
  font-size: clamp(1.18rem, 3vw, 1.65rem);
  font-weight: 800;
}

.hero-bullets {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-bullets li,
.offer-card li {
  position: relative;
  padding-left: 28px;
}

.hero-bullets li::before,
.offer-card li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--yellow);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 480px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--rocket-cyan), var(--rocket-blue) 52%, var(--rocket-navy));
  box-shadow: 0 15px 28px rgba(10, 159, 203, 0.26);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.btn-secondary.light {
  background: var(--blue-950);
  border-color: var(--blue-950);
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 680px;
  margin-top: 28px;
}

.trust-row span {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.trust-row strong {
  color: var(--yellow);
}

.quote-card {
  display: grid;
  gap: 9px;
  width: 100%;
  max-width: 390px;
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-card h2 {
  margin-bottom: 0;
  color: var(--blue-950);
  font-size: 1.55rem;
}

.quote-card label {
  display: grid;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 800;
}

.datetime-grid {
  display: grid;
  gap: 10px;
}

.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  min-height: 40px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
}

.quote-card textarea {
  min-height: 52px;
  resize: vertical;
}

.security-check {
  padding: 9px;
  background: var(--blue-100);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.website-field,
.botcheck-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.3;
}

.form-note.success {
  color: #087f5b;
  font-weight: 800;
}

.form-note.error {
  color: #b42318;
  font-weight: 800;
}

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

.section-heading {
  max-width: 710px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading h2,
.mid-cta h2,
.area-panel h2 {
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: clamp(2rem, 6vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.offers {
  margin-top: -24px;
}

.offer-grid,
.service-grid,
.review-grid,
.why-grid {
  display: grid;
  gap: 16px;
}

.offer-grid {
  align-items: stretch;
}

.offer-card {
  position: relative;
  height: 100%;
  min-height: 270px;
  padding: 22px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(150deg, var(--blue-800), var(--blue-950));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.offer-card::after {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 185px;
  height: 185px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.offer-card.popular {
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(150deg, var(--rocket-cyan), var(--rocket-blue) 46%, var(--rocket-navy));
}

.offer-card.dryer {
  background: linear-gradient(150deg, var(--blue-650), var(--blue-950));
}

.offer-card.combo {
  color: var(--blue-950);
  background: linear-gradient(150deg, var(--yellow), #e6fbff);
}

.offer-card.combo li::before {
  color: var(--rocket-navy);
}

.offer-card h3 {
  margin: 42px 0 16px;
  font-size: 1.6rem;
  line-height: 1.05;
}

.offer-card h3 span {
  display: block;
  font-size: clamp(3.3rem, 15vw, 5.6rem);
  line-height: 0.9;
}

.offer-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.badge,
.deal-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--rocket-navy);
  background: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.deal-tag {
  right: 16px;
  left: auto;
  color: var(--white);
  background: var(--rocket-navy);
}

.badge.blue {
  color: var(--blue-800);
}

.badge.gold {
  color: var(--blue-950);
}

.section-cta {
  display: flex;
  width: min(100%, 360px);
  margin: 24px auto 0;
}

.why {
  width: 100%;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  background: var(--white);
}

.why-grid > div,
.review-grid article,
.service-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.why-grid > div {
  box-shadow: 0 14px 32px rgba(7, 35, 69, 0.08);
}

.why-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.why-card-title h3 {
  margin: 0;
}

.why-grid p {
  margin-bottom: 0;
}

.icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-800);
  font-weight: 900;
}

.service-card {
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(7, 35, 69, 0.08);
}

.service-card h3,
.service-card p {
  padding-right: 18px;
  padding-left: 18px;
}

.service-card h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--blue-950);
}

.service-card p {
  padding-bottom: 20px;
  color: var(--muted);
}

.service-img {
  height: 185px;
  background-size: cover;
  background-position: center;
}

.service-img.duct {
  background-image: url("assets/air-duct-cleaning-hero.png");
}

.service-img.hvac {
  background-image: url("assets/hvac-system-cleaning.png");
  background-position: center;
}

.service-img.dryer-img {
  background-image: url("assets/dryer-vent-cleaning.png");
  background-position: center;
}

.service-img.family {
  background-image: url("assets/mold-dust-removal.png");
  background-position: center;
}

.reviews {
  width: 100%;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  background: var(--blue-100);
}

.stars {
  display: block;
  margin-bottom: 10px;
  color: #ffb400;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.review-grid article p {
  color: var(--muted);
}

.mid-cta {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  color: var(--white);
}

.mid-cta-bg {
  background-image: url("assets/clean-home-family.png");
  background-position: 68% center;
}

.mid-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 35, 69, 0.92), rgba(7, 35, 69, 0.48), rgba(7, 35, 69, 0.08));
}

.mid-cta-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.mid-cta h2,
.mid-cta p {
  max-width: 560px;
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

details {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  color: var(--blue-950);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.area-panel {
  display: grid;
  gap: 22px;
  padding: 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.area-panel h2,
.area-panel p {
  color: var(--white);
}

.footer {
  display: grid;
  gap: 24px;
  padding: 42px max(16px, calc((100% - 1180px) / 2)) 92px;
  color: rgba(255, 255, 255, 0.78);
  background: #06172b;
}

.footer h2,
.footer h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.footer a {
  display: block;
  margin: 8px 0;
}

.mobile-sticky {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.mobile-sticky a {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rocket-cyan), var(--rocket-blue));
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(10, 159, 203, 0.24);
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(6, 23, 43, 0.64);
}

.popup.is-visible {
  display: grid;
}

.popup-card {
  position: relative;
  width: min(100%, 430px);
  padding: 32px 24px 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.popup-card .deal-tag {
  position: static;
  display: inline-flex;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--rocket-cyan), var(--rocket-blue));
}

.popup-card h2 {
  color: var(--blue-950);
}

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

.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  color: var(--blue-950);
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

@media (min-width: 620px) {
  .datetime-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-actions {
    display: flex;
    flex-direction: row;
    max-width: none;
  }

  .offer-grid,
  .service-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid,
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .nav-links,
  .header-call {
    display: flex;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: center;
    padding: 86px 0 66px;
  }

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

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

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

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

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

  .area-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    padding-bottom: 42px;
  }

  .mobile-sticky {
    display: none;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand-logo {
    height: 46px;
    max-width: 64vw;
  }

  .hero {
    min-height: 920px;
  }

  .hero-media {
    background-position: 72% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(7, 35, 69, 0.94), rgba(7, 35, 69, 0.82) 58%, rgba(7, 35, 69, 0.48));
  }

  .quote-card {
    padding: 18px;
  }
}
