:root {
  --forest: #1f6b45;
  --forest-dark: #103d2c;
  --forest-deep: #0d2b21;
  --leaf: #35a063;
  --lime-soft: #eaf7e7;
  --amber: #e6a83c;
  --amber-dark: #bc7b1e;
  --cream: #fbf7ea;
  --sand: #f5ead0;
  --bug: #2a1c12;
  --ink: #14221b;
  --text: #52635a;
  --muted: #77867e;
  --white: #ffffff;
  --line: rgba(20, 34, 27, 0.12);
  --shadow: 0 24px 70px rgba(16, 61, 44, 0.17);
  --shadow-soft: 0 14px 38px rgba(20, 34, 27, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

code {
  padding: 2px 6px;
  border-radius: 7px;
  color: var(--forest-dark);
  background: var(--lime-soft);
  font-size: 0.9em;
}

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

.section-pad {
  padding: 94px 0;
}

.top-alert {
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  color: #fff8de;
  background: linear-gradient(90deg, #0d2b21, #174832 50%, #2f2117);
  font-size: 14px;
  text-align: center;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 0 rgba(230, 168, 60, 0.55);
  animation: pulse 1.4s infinite;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(20, 34, 27, 0.08);
  backdrop-filter: blur(18px);
  overflow: visible;
}

.nav-wrap {
  width: min(1160px, calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  overflow: visible;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  flex-shrink: 0;
}

.brand {
  width: 220px;
  height: 72px;
}

.brand-logo {
  width: 220px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  display: block;
  transform: scale(1.1);
  transform-origin: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #4b5d54;
  font-weight: 800;
  font-size: 15px;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 178px;
  padding: 11px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--amber));
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(31, 107, 69, 0.22);
  font-size: 12px;
  line-height: 1.18;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-call strong {
  font-size: 16px;
  letter-spacing: -0.01em;
}

.header-call:hover,
.primary-btn:hover,
.white-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(31, 107, 69, 0.27);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--lime-soft);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--forest);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  padding: 46px 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(230, 168, 60, 0.2), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(53, 160, 99, 0.17), transparent 34%),
    linear-gradient(180deg, #fffaf0 0%, #f7fbf1 62%, #ffffff 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(42, 28, 18, 0.12) 1.5px, transparent 2px),
    radial-gradient(circle, rgba(31, 107, 69, 0.1) 1.3px, transparent 2px);
  background-size: 54px 54px, 74px 74px;
  background-position: 0 0, 28px 20px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
  opacity: 0.72;
  pointer-events: none;
}

.glow-one {
  width: 250px;
  height: 250px;
  right: -90px;
  top: 120px;
  background: rgba(230, 168, 60, 0.17);
}

.glow-two {
  width: 180px;
  height: 180px;
  left: -60px;
  bottom: 90px;
  background: rgba(31, 107, 69, 0.14);
}

.crawl {
  position: absolute;
  width: 54px;
  height: 28px;
  opacity: 0.18;
  pointer-events: none;
  transform: rotate(-18deg);
}

.crawl::before,
.crawl::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--bug);
}

.crawl::before {
  width: 18px;
  height: 18px;
  left: 4px;
  top: 5px;
  box-shadow: 18px 0 0 var(--bug), 38px 0 0 var(--bug);
}

.crawl::after {
  width: 54px;
  height: 3px;
  left: 0;
  top: 12px;
  box-shadow: 0 -10px 0 rgba(42, 28, 18, 0.85), 0 10px 0 rgba(42, 28, 18, 0.85);
}

.crawl-one {
  left: 6%;
  top: 21%;
}

.crawl-two {
  right: 10%;
  bottom: 17%;
  transform: rotate(16deg) scale(1.18);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--forest-dark);
  background: var(--lime-soft);
  border: 1px solid rgba(31, 107, 69, 0.13);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 24px;
  color: var(--bug);
  background: var(--amber);
  border-radius: 999px;
  letter-spacing: 0;
}

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

h1 {
  max-width: 790px;
  margin: 24px 0 20px;
  font-size: clamp(44px, 6.1vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--text);
  font-size: clamp(17px, 1.65vw, 21px);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn,
.secondary-btn,
.white-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--amber));
  box-shadow: 0 16px 32px rgba(31, 107, 69, 0.22);
}

.primary-btn small {
  display: block;
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.2;
}

.primary-btn.small {
  min-height: 52px;
  padding: 13px 20px;
}

.btn-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--bug);
  background: rgba(255, 255, 255, 0.78);
}

.secondary-btn {
  color: var(--forest-dark);
  background: var(--white);
  border: 1px solid rgba(31, 107, 69, 0.14);
  box-shadow: 0 12px 30px rgba(20, 34, 27, 0.06);
}

.secondary-btn:hover {
  background: var(--lime-soft);
  transform: translateY(-2px);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 730px;
  margin-top: 32px;
}

.trust-row div {
  padding: 16px;
  border: 1px solid rgba(20, 34, 27, 0.09);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 28px rgba(20, 34, 27, 0.04);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 15px;
}

.trust-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 430px;
  justify-self: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(31, 107, 69, 0.16);
  border-radius: 24px;
  pointer-events: none;
}

.card-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.status-pill,
.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.status-pill {
  color: #14603b;
  background: #e9fff2;
}

.status-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
}

.mini-badge {
  color: var(--bug);
  background: #fff3d4;
}

.insect-stage {
  position: relative;
  z-index: 1;
  height: 270px;
  min-height: 270px;
  max-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 14px;
  padding: 14px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 247, 223, 0.9), rgba(234, 247, 231, 0.72) 46%, transparent 70%),
    linear-gradient(135deg, rgba(245, 234, 208, 0.66), rgba(234, 247, 231, 0.78));
  overflow: hidden;
}

.insect-stage::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(31, 107, 69, 0.1);
  border-radius: 20px;
}

.stage-ring {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, rgba(230, 168, 60, 0.22), rgba(31, 107, 69, 0.04), rgba(53, 160, 99, 0.16), rgba(230, 168, 60, 0.22));
  animation: slowSpin 18s linear infinite;
}

.insect-stage img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 78%;
  max-height: 245px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 14px 16px rgba(42, 28, 18, 0.14));
}

.phone-panel {
  position: relative;
  z-index: 1;
  padding: 24px 18px;
  text-align: center;
  border-radius: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(135deg, #103d2c, #1f6b45 50%, #bc7b1e);
  overflow: hidden;
}

.phone-panel p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 850;
}

.big-number {
  display: block;
  margin: 0 auto 8px;
  color: var(--white);
  font-size: clamp(28px, 3.3vw, 38px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.phone-panel span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.check-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #43544b;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--leaf);
  border-radius: 50%;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 950;
}

.pest-strip {
  position: relative;
  padding: 28px 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(230, 168, 60, 0.13), transparent 30%),
    radial-gradient(circle at 80% 100%, rgba(53, 160, 99, 0.17), transparent 32%),
    linear-gradient(135deg, #0a241b 0%, #103d2c 55%, #071f18 100%);
  overflow: hidden;
}

.pest-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.45) 1px, transparent 1.7px);
  background-size: 28px 28px;
  pointer-events: none;
}

.strip-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.strip-grid div {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 15px 18px;
  color: #fff7dc;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-weight: 950;
  font-size: 16px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.strip-grid div:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(230, 168, 60, 0.35);
}

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

.section-kicker {
  margin-bottom: 16px;
}

.section-kicker.light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.18);
}

.section-heading h2,
.cta-band h2,
.why-copy h2,
.faq-intro h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading p,
.why-copy p,
.faq-intro p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 17px;
}

.services-section,
.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf1 100%);
}

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

.service-card,
.process-card,
.why-list,
.faq-intro,
.accordion {
  border: 1px solid rgba(20, 34, 27, 0.09);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 28px;
  min-height: 246px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 107, 69, 0.22);
  box-shadow: 0 26px 58px rgba(31, 107, 69, 0.13);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--lime-soft);
  font-size: 27px;
}

.service-card h3,
.process-card h3,
.why-item h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.service-card p,
.process-card p,
.why-item p {
  margin-bottom: 0;
  color: var(--text);
}

.highlight-card {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 36%),
    linear-gradient(135deg, var(--forest-deep), var(--forest) 58%, var(--amber-dark));
}

.highlight-card p {
  color: rgba(255, 255, 255, 0.82);
}

.highlight-card .service-icon {
  background: rgba(255, 255, 255, 0.15);
}

.inline-call {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--forest-dark);
  background: var(--white);
  font-weight: 950;
}

.cta-band {
  padding: 56px 0;
  color: var(--white);
  background:
    radial-gradient(circle at left, rgba(230, 168, 60, 0.34), transparent 28%),
    linear-gradient(135deg, #0d2b21, #1f6b45 58%, #ad761f);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.white-btn {
  min-width: 246px;
  color: var(--forest);
  background: var(--white);
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.white-btn strong {
  color: var(--ink);
  font-size: 20px;
}

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

.process-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: var(--lime-soft);
}

.step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--amber-dark);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.why-section {
  background:
    radial-gradient(circle at top left, rgba(31, 107, 69, 0.11), transparent 34%),
    #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  align-items: center;
  gap: 44px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stats-row div {
  padding: 18px;
  border: 1px solid rgba(31, 107, 69, 0.1);
  border-radius: 18px;
  background: #f7fbf1;
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  color: var(--forest);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.stats-row span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.why-list {
  padding: 24px;
}

.why-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
}

.why-item + .why-item {
  border-top: 1px solid var(--line);
}

.why-item span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--amber));
  border-radius: 50%;
  font-weight: 950;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.faq-intro,
.accordion {
  padding: 28px;
}

.faq-intro .primary-btn {
  margin-top: 24px;
}

.accordion-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
}

.accordion-item:first-child {
  padding-top: 0;
}

.accordion-item i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--lime-soft);
  font-style: normal;
  flex: 0 0 auto;
}

.accordion-panel {
  display: none;
  padding: 0 0 18px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.accordion-panel.open {
  display: block;
}

.accordion-panel p {
  margin: 0;
}

.site-footer {
  padding: 62px 0 22px;
  color: #d0dfd5;
  background: #0d1d17;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.72fr 1fr;
  gap: 34px;
}

.footer-brand {
  width: 210px;
}

.footer-brand img {
  width: 210px;
  height: 68px;
  object-fit: contain;
  object-position: left center;
  transform: none;
}

.site-footer p,
.site-footer a {
  color: #bdcec4;
}

.site-footer p {
  max-width: 370px;
  margin: 16px 0 0;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 16px;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 9px 0;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-phone {
  color: var(--white) !important;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.fine-print {
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #93a99d;
  font-size: 13px;
}

.mobile-call-bar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 64px;
  padding: 12px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--amber));
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(31, 107, 69, 0.3);
  line-height: 1.18;
  font-weight: 950;
}

.mobile-call-bar strong {
  font-size: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.policy-page {
  background: #f7fbf1;
}

.policy-hero {
  padding: 72px 0 24px;
}

.policy-card {
  max-width: 900px;
  margin: 0 auto 74px;
  padding: 36px;
  border: 1px solid rgba(20, 34, 27, 0.09);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.policy-card h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 58px);
}

.policy-card h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 22px;
}

.policy-card p,
.policy-card li {
  color: var(--text);
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.contact-tile {
  padding: 22px;
  border-radius: 18px;
  background: #f7fbf1;
  border: 1px solid rgba(20, 34, 27, 0.08);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 168, 60, 0.56);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(230, 168, 60, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(230, 168, 60, 0);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 420px;
    margin: 0 auto;
  }

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

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

@media (max-width: 920px) {
  .brand {
    width: 180px;
    height: 64px;
  }

  .brand-logo {
    width: 180px;
    height: 64px;
    transform: scale(1.06);
  }

  .nav-links {
    gap: 20px;
    font-size: 14px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .container,
  .nav-wrap {
    width: min(100% - 28px, 1160px);
  }

  .top-alert {
    flex-wrap: wrap;
    gap: 7px;
    font-size: 13px;
  }

  .brand {
    width: 170px;
    height: 58px;
  }

  .brand-logo {
    width: 170px;
    height: 58px;
    transform: scale(1.05);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: calc(42px + var(--header-height));
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(20, 34, 27, 0.1);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
    border-radius: 14px;
  }

  .nav-links a:hover {
    background: var(--lime-soft);
  }

  .nav-links a::after {
    display: none;
  }

  .header-call {
    display: none;
  }

  .section-pad {
    padding: 72px 0;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-content {
    text-align: center;
  }

  .eyebrow,
  .section-kicker {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-row,
  .process-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

  .strip-grid div {
    justify-content: center;
  }

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .mobile-call-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 98px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container,
  .nav-wrap {
    width: min(100% - 24px, 1160px);
  }

  .section-pad {
    padding: 60px 0;
  }

  .brand {
    width: 148px;
    height: 52px;
  }

  .brand-logo {
    width: 148px;
    height: 52px;
    transform: scale(1.04);
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-actions,
  .primary-btn,
  .secondary-btn,
  .white-btn {
    width: 100%;
  }

  .trust-row div,
  .service-card,
  .process-card,
  .why-list,
  .faq-intro,
  .accordion,
  .policy-card {
    border-radius: 18px;
  }

  .hero-card {
    max-width: 380px;
    padding: 18px;
    border-radius: 24px;
  }

  .card-top {
    flex-wrap: wrap;
  }

  .insect-stage {
    height: 225px;
    min-height: 225px;
    max-height: 225px;
    padding: 12px;
  }

  .stage-ring {
    width: 145px;
    height: 145px;
  }

  .insect-stage img {
    max-width: 74%;
    max-height: 205px;
  }

  .phone-panel {
    padding: 24px 12px;
  }

  .big-number {
    font-size: 30px;
  }

  .services-grid,
  .footer-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .why-item {
    grid-template-columns: 34px 1fr;
    padding: 14px 0;
  }

  .why-item span {
    width: 34px;
    height: 34px;
  }

  .policy-card {
    padding: 24px;
  }

  .footer-brand,
  .footer-brand img {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid div {
    min-height: 58px;
  }
}

@media (max-width: 420px) {
  .brand {
    width: 132px;
    height: 50px;
  }

  .brand-logo {
    width: 132px;
    height: 50px;
    transform: scale(1.04);
  }

  .nav-wrap {
    gap: 14px;
  }

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

  .insect-stage {
    height: 205px;
    min-height: 205px;
    max-height: 205px;
  }

  .insect-stage img {
    max-width: 72%;
    max-height: 188px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


.disclaimer-section {
  padding: 44px 0;
  background: #f6f9ff;
}

.disclaimer-box {
  padding: 26px 28px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-left: 5px solid var(--yellow);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.disclaimer-box h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.disclaimer-box p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}