:root {
  --blue-900: #0a2d9a;
  --blue-800: #103dc7;
  --blue-700: #1c4ee3;
  --cyan-500: #1dd4ff;
  --yellow-500: #ffd200;
  --orange-500: #ff7a1a;
  --orange-600: #f05a00;
  --cream-100: #f6f1e8;
  --ink-900: #1a1a1a;
  --ink-700: #3a3a3a;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(10, 20, 60, 0.2);
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Gill Sans", "Avenir Next", "Century Gothic", sans-serif;
  color: var(--ink-900);
  background: radial-gradient(circle at 10% 10%, #ffffff 0%, #eef2ff 45%, #e4e9f8 100%);
  min-height: 100vh;
}

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

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

button,
input {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 8px 16px;
  background: var(--yellow-500);
  color: var(--ink-900);
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
}

.container {
  width: min(90vw, var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(10, 40, 120, 0.2);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  background: conic-gradient(from 120deg, var(--cyan-500), var(--yellow-500), var(--cyan-500));
  border-radius: 12px;
}

.top-nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: var(--yellow-500);
  color: var(--ink-900);
}

.btn-dark {
  background: var(--ink-900);
  color: var(--white);
}

.btn-ghost {
  background: var(--white);
  color: var(--ink-900);
  border-color: rgba(0, 0, 0, 0.1);
}

.btn-light {
  background: var(--yellow-500);
  color: var(--ink-900);
}

.hero {
  padding: 26px 0 10px;
}

.hero-inner {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: min(95vw, 980px);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: float-in 0.8s ease forwards;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 65%);
  top: -120px;
  right: -120px;
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--yellow-500);
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  font-family: "Impact", "Haettenschweiler", "Franklin Gothic Heavy", sans-serif;
  margin: 0;
}

.hero-card h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}

.badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: linear-gradient(145deg, #ffdd55, #ff7a1a);
  color: var(--white);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  transform: rotate(-8deg);
}

.hero-media {
  position: relative;
  background: linear-gradient(135deg, #21d4fd 0%, #b721ff 60%, #ffdd55 100%);
  border-radius: var(--radius-lg);
  border: 4px solid rgba(255, 255, 255, 0.4);
  height: clamp(260px, 32vw, 380px);
  display: grid;
  place-items: center;
  margin: 12px 0;
  overflow: hidden;
  padding: 18px;
}

.hero-image {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  background: #ffffff;
  border-radius: calc(var(--radius-lg) - 10px);
}

.hero-image-fallback {
  position: absolute;
  text-align: center;
  color: rgba(10, 20, 60, 0.7);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 560px;
  margin: 0;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  font-weight: 700;
}

.price-row .price {
  font-size: 1.6rem;
  color: var(--yellow-500);
}

.price-row .list-price {
  text-decoration: line-through;
  opacity: 0.7;
}

.price-row .stock {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.price-row .stock-soft {
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.trust-band {
  padding: 8px 0 30px;
}

.trust-band-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(28, 78, 227, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.87rem;
  font-weight: 700;
  text-align: center;
}

.section {
  padding: 40px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 16px;
}

.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.arrow {
  font-size: 2.2rem;
  color: var(--blue-700);
}

.features {
  background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
}

.benefit-carousel {
  position: relative;
}

.benefit-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card {
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  background: var(--white);
  min-height: 160px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-top: 16px;
}

.benefit-card p {
  margin: 8px 0 0;
  color: var(--ink-700);
}

.benefit-card .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}

.benefit-card svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.benefit-card.cyan {
  background: linear-gradient(135deg, #33e1ff, #10b7ff);
  color: #052647;
}

.benefit-card.yellow {
  background: linear-gradient(135deg, #ffe97a, #ffcc00);
  color: #382b00;
}

.benefit-card.orange {
  background: linear-gradient(135deg, #ff9c5a, #ff6b00);
  color: #3a1200;
}

.benefit-card.gold {
  background: linear-gradient(135deg, #ffe0a3, #ffc24a);
  color: #3b2200;
}

.carousel-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--blue-700);
}

.comparison {
  background: var(--cream-100);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.compare-card {
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.compare-header {
  padding: 12px 20px;
  font-weight: 700;
  text-align: center;
  color: var(--white);
}

.compare-card.primary .compare-header {
  background: linear-gradient(90deg, #1cd4ff, #1487ff);
}

.compare-card.alt .compare-header {
  background: linear-gradient(90deg, #1f4dcf, #142b7d);
}

.compare-body {
  padding: 20px;
  display: grid;
  gap: 16px;
  grid-template-columns: 120px 1fr;
}

.compare-image {
  width: 100%;
  height: 120px;
  border-radius: 16px;
  background: radial-gradient(circle at top, #1cd4ff, #1f4dcf);
}

.compare-image.soft {
  background: radial-gradient(circle at top, #f5f5f5, #cfcfcf);
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.compare-list li {
  margin-bottom: 8px;
}

.pro,
.con {
  font-weight: 700;
  margin-right: 6px;
}

.pro {
  color: #0c8b39;
}

.con {
  color: #c0392b;
}

.text-link {
  color: var(--blue-700);
  font-weight: 700;
}

.reviews {
  background: linear-gradient(180deg, #ffffff 0%, #f7f0dc 100%);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb36b, #ff7a1a);
  margin: 0 auto 12px;
}

.review-avatar.alt {
  background: linear-gradient(135deg, #9ad7ff, #1d90ff);
}

.review-avatar.soft {
  background: linear-gradient(135deg, #ffe8a0, #ffd200);
}

.review-stars {
  letter-spacing: 2px;
  color: #ffb400;
}

.faq {
  background: #ffffff;
}

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

.faq details {
  border-radius: 14px;
  background: #f7f7f7;
  padding: 14px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.cta {
  background: linear-gradient(180deg, var(--orange-500), var(--orange-600));
  color: var(--white);
}

.cta-inner {
  display: grid;
  gap: 28px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.newsletter {
  display: grid;
  gap: 16px;
  background: linear-gradient(90deg, #0a2d9a, #1a4cd9);
  padding: 20px;
  border-radius: var(--radius-md);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  border-radius: 999px;
  border: none;
  padding: 12px 16px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  background: rgba(10, 20, 60, 0.9);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transform: translateY(120%);
  transition: transform 0.3s ease;
  z-index: 99;
}

.sticky-cta.visible {
  transform: translateY(0);
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .trust-band-inner {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .comparison-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .compare-body {
    grid-template-columns: 1fr;
  }

  .benefit-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
  }

  .benefit-card {
    min-width: 70%;
    scroll-snap-align: center;
  }

  .carousel-dots {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero-card {
    padding: 28px 20px;
  }

  .badge {
    width: 70px;
    height: 70px;
    font-size: 0.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sort-wrap {
    width: 100%;
    justify-content: space-between;
  }
}

.products .product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 14px;
}

.product-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px solid rgba(16, 61, 199, 0.28);
  background: #fff;
  color: var(--blue-900);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}

.chip.is-active {
  background: var(--blue-700);
  color: #fff;
  border-color: transparent;
}

.sort-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.sort-wrap select {
  border-radius: 10px;
  border: 1px solid rgba(10, 45, 154, 0.25);
  background: #fff;
  padding: 8px 10px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 16px 30px rgba(10, 20, 60, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-image {
  background: #f3f6ff;
  border-radius: 14px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
}

.product-image img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.product-card h3 {
  font-size: 1.05rem;
}

.product-price {
  font-weight: 800;
  color: var(--blue-900);
  font-size: 1.05rem;
}

.product-card p {
  color: var(--ink-700);
  margin: 0;
}

.product-compliance {
  margin-top: auto;
  font-size: 0.8rem;
  color: #46536f;
  border-top: 1px dashed rgba(16, 61, 199, 0.25);
  padding-top: 10px;
}

.no-results {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff2e6;
  color: #7d3f00;
  font-weight: 700;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.tag-ant {
  background: #ffe8b3;
  color: #8a5a00;
}

.tag-roach {
  background: #f6d6d6;
  color: #8f2d2d;
}

.tag-termite {
  background: #d9f0ff;
  color: #0c5a8a;
}

.tag-lawn {
  background: #dff5d6;
  color: #1e6a2c;
}

@media (max-width: 980px) {
  .products .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .products .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.text-link {
  font-weight: 700;
  color: var(--blue-800);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.text-link:hover {
  border-color: var(--blue-800);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.brand-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: 0 12px 24px rgba(10, 20, 60, 0.12);
}

.brand-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--ink-700);
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.guide-steps article {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: 0 12px 24px rgba(10, 20, 60, 0.1);
}
