﻿:root {
  --bg-0: #0b1d17;
  --bg-1: #102d22;
  --bg-2: #173f31;
  --ink-strong: #0c2219;
  --ink-soft: #385448;
  --ink-muted: #5f776d;
  --paper: #f7fbf8;
  --card: #ffffff;
  --line: #d6e7dc;
  --brand: #1c8e57;
  --brand-dark: #13653d;
  --accent: #f3c13f;
  --accent-dark: #c99822;
  --hero-grad: radial-gradient(circle at 15% 20%, rgba(243, 193, 63, 0.18), transparent 46%), radial-gradient(circle at 86% 5%, rgba(28, 142, 87, 0.28), transparent 40%), linear-gradient(155deg, #f5fbf7 0%, #e7f4ec 58%, #f8fcf9 100%);
  --brand-grad: linear-gradient(130deg, #1c8e57 0%, #1f9f63 45%, #f3c13f 130%);
  --dark-grad: linear-gradient(155deg, #102d22 0%, #0b1d17 100%);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 8px 24px rgba(8, 26, 19, 0.09);
  --shadow-md: 0 14px 38px rgba(8, 26, 19, 0.14);
  --shadow-lg: 0 24px 56px rgba(8, 26, 19, 0.2);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Outfit", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink-strong);
  background: var(--paper);
  line-height: 1.65;
  font-family: var(--font-body);
}

body.menu-open {
  overflow: hidden;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2rem, 760px);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 5000;
  color: #fff;
  background: #102d22;
  border-radius: 8px;
  padding: 0.7rem 0.95rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 10px;
}

.top-alert {
  background: var(--dark-grad);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  text-align: center;
  padding: 0.45rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-alert strong {
  color: #fff;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  z-index: 4000;
  background: linear-gradient(90deg, #1c8e57, #f3c13f);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 3000;
  background: rgba(247, 251, 248, 0.84);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(19, 101, 61, 0.12);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(247, 251, 248, 0.97);
  box-shadow: 0 12px 30px rgba(7, 25, 18, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
}

.logo-image {
  width: clamp(84px, 9vw, 104px);
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1f3b30;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.32rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.26s var(--ease);
  background: var(--brand);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hamburger {
  display: none;
  border: 1px solid rgba(20, 63, 47, 0.18);
  background: #fff;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #153b2d;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 2900;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 85% 15%, rgba(243, 193, 63, 0.2), transparent 34%), rgba(11, 29, 23, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay ul {
  display: grid;
  gap: 1.2rem;
  text-align: center;
}

.nav-overlay a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.hero {
  position: relative;
  overflow: clip;
  background: var(--hero-grad);
  padding: clamp(3.8rem, 9vw, 7.2rem) 0 clamp(3rem, 7vw, 5.5rem);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(17, 68, 49, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 68, 49, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 32%, #000 22%, transparent 75%);
  pointer-events: none;
}

.hero-aurora {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(4px);
}

.aurora-a {
  width: 34rem;
  height: 34rem;
  left: -14rem;
  top: -9rem;
  background: radial-gradient(circle, rgba(28, 142, 87, 0.28), rgba(28, 142, 87, 0));
}

.aurora-b {
  width: 29rem;
  height: 29rem;
  right: -10rem;
  bottom: -13rem;
  background: radial-gradient(circle, rgba(243, 193, 63, 0.28), rgba(243, 193, 63, 0));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.2rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.hero-eyebrow {
  width: fit-content;
  border-radius: 999px;
  background: rgba(19, 101, 61, 0.12);
  border: 1px solid rgba(19, 101, 61, 0.18);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.36rem 0.8rem;
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  max-width: 16ch;
}

.hero-subtitle {
  margin-top: 1rem;
  color: #355447;
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  max-width: 58ch;
}

.hero-bullets,
.hero-ctas,
.hero-stats,
.proof-strip ul,
.cta-actions {
  margin-top: 1.35rem;
}

.hero-bullets {
  display: grid;
  gap: 0.52rem;
}

.hero-bullets li {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(19, 101, 61, 0.14);
  border-radius: 12px;
  padding: 0.52rem 0.68rem;
  color: #2d4c3f;
  font-weight: 500;
}

.hero-bullets strong {
  color: var(--ink-strong);
}

.hero-ctas {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 3rem;
}

.hero-stats article {
  border-radius: 14px;
  padding: 0.8rem;
  border: 1px solid rgba(20, 63, 47, 0.13);
  background: rgba(255, 255, 255, 0.74);
}

.hero-stats strong {
  display: block;
  font-size: 1.2rem;
  color: var(--brand-dark);
}

.hero-stats span {
  color: #4e6a60;
  font-size: 0.86rem;
}

.hero-product {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}

.product-frame {
  position: relative;
  width: min(100%, 450px);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #ffffff 0%, #e9f5ee 100%);
  border: 1px solid rgba(19, 101, 61, 0.24);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
}

.product-frame img {
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.seal {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #fff;
  color: #174c35;
  border: 1px solid rgba(19, 101, 61, 0.2);
  border-radius: 999px;
  padding: 0.3rem 0.68rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.mini-copy {
  margin-top: 0.8rem;
  color: var(--ink-muted);
  text-align: center;
  font-size: 0.9rem;
}

.trust-panel {
  width: min(100%, 450px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.35rem;
  color: #2d4d40;
  font-size: 0.92rem;
}

.proof-strip {
  background: var(--dark-grad);
  color: rgba(255, 255, 255, 0.92);
  padding: 1rem 0;
}

.proof-strip .container {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.4rem;
}

.proof-strip p {
  font-weight: 600;
  font-size: 0.92rem;
}

.proof-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.proof-strip li {
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  font-weight: 600;
}

.liters-grid {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.liter-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.7rem;
}

.liter-card h3 {
  font-size: 1.1rem;
  color: var(--ink-strong);
}

.liter-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.liter-card .liter-price {
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
}

.liter-card .btn {
  width: 100%;
}

.section {
  padding: clamp(3rem, 6vw, 5.3rem) 0;
}

.section-light {
  background: var(--paper);
}

.section-dark {
  background: var(--dark-grad);
  color: rgba(255, 255, 255, 0.9);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-accent {
  background: var(--brand-grad);
  color: #fff;
}

.section-accent h2,
.section-accent h3 {
  color: #fff;
}

.section h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.section-lead {
  margin-top: 0.9rem;
  max-width: 740px;
  color: var(--ink-soft);
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.82);
}

.spray-reveal {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.spray-overlay {
  position: absolute;
  inset: -14% -48%;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-80%) skewX(-14deg);
  z-index: 0;
  background: linear-gradient(115deg, transparent 29%, rgba(28, 142, 87, 0.05) 38%, rgba(28, 142, 87, 0.19) 48%, rgba(243, 193, 63, 0.2) 53%, rgba(28, 142, 87, 0.1) 62%, transparent 74%), repeating-linear-gradient(115deg, transparent 0 15px, rgba(255, 255, 255, 0.2) 15px 18px, transparent 18px 32px);
  filter: blur(1px);
}

.spray-reveal .container {
  position: relative;
  z-index: 1;
}

.section-accent .spray-overlay {
  background: linear-gradient(115deg, transparent 29%, rgba(255, 255, 255, 0.08) 39%, rgba(255, 255, 255, 0.25) 49%, rgba(255, 255, 255, 0.36) 53%, rgba(255, 255, 255, 0.12) 62%, transparent 74%);
}

.benefits-grid {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.05rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.benefit-card h3 {
  font-size: 1.03rem;
}

.benefit-card p {
  margin-top: 0.45rem;
  color: var(--ink-muted);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(19, 101, 61, 0.28);
  box-shadow: var(--shadow-md);
}

.use-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 1.2rem;
  align-items: start;
}

.steps-list {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.85rem;
}

.steps-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 13px;
  padding: 0.9rem;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #2f2303;
  background: var(--accent);
}

.steps-list p {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.82);
}

.tip-box {
  margin-top: 0.9rem;
  border-radius: 13px;
  border: 1px solid rgba(243, 193, 63, 0.45);
  background: rgba(243, 193, 63, 0.13);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.8rem;
}

.dosage-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.dosage-card h3 {
  font-size: 1.2rem;
}

.dosage-card p {
  margin-top: 0.38rem;
  color: rgba(255, 255, 255, 0.82);
}

.dosage-card label {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.dosage-card input {
  width: 100%;
  margin-top: 0.35rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.88);
  color: #153b2d;
  font: inherit;
  padding: 0.7rem 0.78rem;
}

.dosage-card .btn {
  margin-top: 0.7rem;
  width: 100%;
}

.calc-result {
  margin-top: 0.8rem;
  border-radius: 10px;
  border: 1px dashed rgba(243, 193, 63, 0.52);
  background: rgba(243, 193, 63, 0.14);
  padding: 0.65rem 0.7rem;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
}

.pragas-grid {
  margin-top: 1.45rem;
  display: grid;
  gap: 0.72rem;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.pragas-grid li {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, #ffffff 0%, #f1f8f4 100%);
  padding: 0.85rem 0.9rem;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease), filter 0.24s var(--ease);
}

.pragas-grid li::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(243, 193, 63, 0.28) 50%, transparent 70%);
  transform: translateX(-140%);
}

.pest-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #173b2d;
}

.pest-note {
  display: block;
  margin-top: 0.34rem;
  color: #456457;
  font-size: 0.88rem;
  line-height: 1.45;
}

.pragas-grid li:hover {
  transform: translateY(-5px);
  border-color: rgba(19, 101, 61, 0.26);
  box-shadow: var(--shadow-sm);
  filter: saturate(1.08);
}

.pragas-grid li:hover::before {
  animation: pestShine 0.9s var(--ease);
}

.compare-grid {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compare-card {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 1rem;
  backdrop-filter: blur(7px);
}

.compare-card ul {
  margin-top: 0.55rem;
  display: grid;
  gap: 0.4rem;
}

.compare-card li {
  position: relative;
  padding-left: 1rem;
}

.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
}

.table-wrap {
  overflow: auto;
}

.tech-table {
  margin-top: 1.3rem;
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.tech-table th,
.tech-table td {
  text-align: left;
  padding: 0.8rem 0.95rem;
  border-bottom: 1px solid var(--line);
}

.tech-table th {
  width: 35%;
  background: #edf6f1;
  color: #3f5f52;
}

.tech-table tr:last-child th,
.tech-table tr:last-child td {
  border-bottom: 0;
}

.seo-copy {
  padding-top: 0;
}

.seo-copy p {
  margin-top: 0.9rem;
  color: #2d4b3e;
}

.faq-list {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.74rem;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 1rem 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.cta-section {
  background: linear-gradient(145deg, #1a8a54 0%, #0f5333 100%);
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
}

.cta-inner p {
  margin: 0.8rem auto 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.78rem;
  flex-wrap: wrap;
}

.site-footer {
  background: #0a1a14;
  color: rgba(255, 255, 255, 0.82);
  padding-top: 2.4rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 390px;
}

.footer-brand p {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer .logo-image {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-links {
  display: flex;
  gap: 0.7rem 0.95rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}

.footer-bottom {
  margin-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.84rem;
  padding: 0.95rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.66);
}

.footer-bottom a {
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 700;
  padding: 0.72rem 1.16rem;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), background 0.24s var(--ease), color 0.24s var(--ease);
}

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

.btn-primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: 0 12px 26px rgba(15, 83, 51, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 18px 30px rgba(15, 83, 51, 0.42);
}

.btn-secondary {
  background: #fff;
  color: #14402f;
  border: 1px solid rgba(19, 101, 61, 0.23);
}

.btn-secondary:hover {
  background: #eff8f2;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-nav {
  background: #124832;
  color: #fff !important;
}

.btn-lg {
  padding: 0.87rem 1.5rem;
}

.back-to-top,
.sticky-buy {
  position: fixed;
  z-index: 1800;
}

.back-to-top {
  right: 1.15rem;
  bottom: 1.15rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #124832;
  color: #fff;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(18, 72, 50, 0.35);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-buy {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.72rem;
  background: linear-gradient(130deg, #1c8e57 0%, #176740 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  width: min(95vw, 360px);
  text-align: center;
  box-shadow: 0 14px 28px rgba(11, 29, 23, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.sticky-buy.visible {
  opacity: 1;
  pointer-events: auto;
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  will-change: transform, opacity;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(243, 193, 63, 0.75);
  outline-offset: 3px;
}

@media (max-width: 1060px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 20ch;
  }

  .hero-product {
    justify-items: start;
  }

  .product-frame,
  .trust-panel {
    width: min(100%, 390px);
  }

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

  .use-grid {
    grid-template-columns: 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .btn,
  .btn-lg {
    width: 100%;
  }

  .proof-strip .container {
    justify-items: center;
    text-align: center;
  }

  .proof-strip ul {
    margin-top: 0.3rem;
  }

  .pragas-grid {
    grid-template-columns: 1fr;
  }

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

  .back-to-top {
    right: 0.72rem;
    bottom: 4rem;
  }
}

@keyframes pestShine {
  from {
    transform: translateX(-140%);
  }
  to {
    transform: translateX(140%);
  }
}

@media (max-width: 480px) {
  .section {
    padding-block: 2.8rem;
  }

  .top-alert {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
