/*
  Clipton Africa Pest — responsive static website
  Brand palette sampled from the supplied logo.
*/
:root {
  --navy-950: #031a2b;
  --navy-900: #05283d;
  --navy-800: #0a354d;
  --navy-700: #16475d;
  --green-700: #2e9224;
  --green-600: #3eac2b;
  --green-500: #55bf30;
  --green-100: #eaf8e6;
  --green-50: #f5fbf2;
  --ink: #102b3a;
  --muted: #5d717d;
  --line: #dce6e9;
  --off-white: #f6f9f7;
  --white: #ffffff;
  --warning: #f3b53f;
  --shadow-sm: 0 10px 30px rgba(3, 26, 43, 0.08);
  --shadow-md: 0 20px 55px rgba(3, 26, 43, 0.14);
  --shadow-lg: 0 28px 80px rgba(3, 26, 43, 0.22);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 82px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Manrope, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
::selection { color: var(--white); background: var(--green-600); }
img { display: block; max-width: 100%; }
svg { display: block; width: 1.25em; height: 1.25em; flex: 0 0 auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, [role="button"] { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(85, 191, 48, 0.42);
  outline-offset: 3px;
}
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--navy-950);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(2.7rem, 6vw, 5.3rem); }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.65rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin-bottom: 1.2rem; }
ul { margin-top: 0; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: clamp(74px, 9vw, 124px) 0; }
.section-sm { padding: clamp(52px, 7vw, 84px) 0; }
.bg-soft { background: var(--off-white); }
.bg-green-soft { background: var(--green-50); }
.bg-navy {
  color: rgba(255,255,255,.78);
  background:
    radial-gradient(circle at 90% 12%, rgba(85,191,48,.17), transparent 31%),
    radial-gradient(circle at 8% 90%, rgba(85,191,48,.08), transparent 35%),
    var(--navy-950);
}
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.align-center { align-items: center; }
.text-center { text-align: center; }
.text-center .section-copy { margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--green-700);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 24px;
  height: 3px;
  content: "";
  background: var(--green-500);
  border-radius: 999px;
}
.bg-navy .eyebrow { color: #91e16f; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(36px, 5vw, 58px);
}
.section-head h2 { max-width: 760px; margin-bottom: 0; }
.section-head .section-copy { max-width: 490px; margin-bottom: 3px; }
.section-copy { max-width: 650px; color: var(--muted); font-size: 1.06rem; }
.bg-navy .section-copy { color: rgba(255,255,255,.68); }
.kicker {
  color: var(--green-700);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.lead { color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.27rem); line-height: 1.7; }
.muted { color: var(--muted); }
.green { color: var(--green-600); }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.15;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 19px; height: 19px; flex: 0 0 auto; }
.btn-primary {
  color: var(--white);
  background: var(--green-600);
  box-shadow: 0 10px 24px rgba(62, 172, 43, .24);
}
.btn-primary:hover { background: var(--green-700); box-shadow: 0 14px 30px rgba(62, 172, 43, .32); }
.btn-dark { color: var(--white); background: var(--navy-950); }
.btn-dark:hover { background: var(--navy-800); }
.btn-outline { color: var(--navy-950); border-color: #b9c9ce; background: transparent; }
.btn-outline:hover { color: var(--green-700); border-color: var(--green-500); background: var(--green-50); }
.btn-white { color: var(--navy-950); background: var(--white); }
.btn-white:hover { color: var(--green-700); background: #f6fff2; }
.btn-ghost-white { color: var(--white); border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }
.btn-ghost-white:hover { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.12); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-700);
  font-weight: 800;
}
.text-link svg { width: 18px; transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }
.action-row { display: flex; flex-wrap: wrap; gap: 13px; }

/* Top bar and navigation */
.topbar { color: rgba(255,255,255,.84); background: var(--navy-950); font-size: .79rem; }
.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-items { display: flex; align-items: center; gap: 23px; }
.topbar a { transition: color .2s ease; }
.topbar a:hover { color: #9fe982; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 14px; height: 14px; color: #8ade6b; }
.topbar-status { display: inline-flex; align-items: center; gap: 8px; }
.status-dot { width: 7px; height: 7px; background: #73d751; border-radius: 50%; box-shadow: 0 0 0 5px rgba(115,215,81,.12); }
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(3,26,43,.08);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 36px rgba(3,26,43,.09); }
.nav-shell { min-height: var(--header-height); display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; min-width: 224px; align-items: center; gap: 11px; }
.brand-mark { width: 48px; height: 58px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-name { color: var(--navy-950); font-size: 1.05rem; font-weight: 900; letter-spacing: -.02em; }
.brand-tagline { margin-top: 6px; color: var(--green-700); font-size: .61rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.site-nav { flex: 1; }
.nav-list { display: flex; align-items: center; justify-content: flex-end; gap: 3px; margin: 0; padding: 0; list-style: none; }
.nav-link, .submenu-toggle {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  padding: 9px 11px;
  color: #294552;
  border: 0;
  background: transparent;
  font-size: .84rem;
  font-weight: 750;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover, .nav-link.active, .submenu-toggle:hover, .has-submenu.active > .submenu-toggle { color: var(--green-700); }
.nav-link.active { position: relative; }
.nav-link.active::after {
  position: absolute;
  right: 11px;
  bottom: 5px;
  left: 11px;
  height: 2px;
  content: "";
  background: var(--green-500);
  border-radius: 2px;
}
.submenu-toggle svg { width: 14px; height: 14px; transition: transform .2s ease; }
.has-submenu { position: relative; }
.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 245px;
  margin: 0;
  padding: 10px;
  visibility: hidden;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.submenu::before { position: absolute; right: 0; bottom: 100%; left: 0; height: 12px; content: ""; }
.submenu a { display: block; padding: 11px 13px; color: #37515e; border-radius: 9px; font-size: .87rem; font-weight: 700; }
.submenu a:hover, .submenu a.active { color: var(--green-700); background: var(--green-50); }
.has-submenu:hover .submenu, .has-submenu:focus-within .submenu, .has-submenu.open .submenu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}
.has-submenu.open .submenu-toggle svg { transform: rotate(180deg); }
.header-cta { flex: 0 0 auto; min-height: 46px; padding: 11px 16px; font-size: .84rem; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: var(--navy-950);
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
}
.nav-toggle-lines, .nav-toggle-lines::before, .nav-toggle-lines::after {
  display: block;
  width: 21px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle-lines { position: relative; }
.nav-toggle-lines::before { position: absolute; top: -7px; }
.nav-toggle-lines::after { position: absolute; top: 7px; }
.nav-open .nav-toggle-lines { background: transparent; }
.nav-open .nav-toggle-lines::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle-lines::after { top: 0; transform: rotate(-45deg); }

/* Hero slider */
.hero-slider {
  position: relative;
  height: min(750px, calc(100vh - 118px));
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  display: grid;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .8s ease, visibility .8s;
}
.hero-slide.is-active { visibility: visible; opacity: 1; }
.hero-slide::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.045);
  transition: transform 7s linear;
}
.hero-slide.is-active::before { transform: scale(1); }
.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(2,20,34,.94) 0%, rgba(3,26,43,.84) 38%, rgba(3,26,43,.35) 68%, rgba(3,26,43,.19) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 70px 0 108px; }
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 255px;
  align-items: center;
  gap: clamp(38px, 6vw, 78px);
}
.hero-content { max-width: 745px; }
.hero-pest-visual {
  position: relative;
  width: 100%;
  max-width: 255px;
  justify-self: end;
  margin: 0;
  padding: 9px;
  overflow: hidden;
  color: var(--white);
  background: rgba(3, 26, 43, .77);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 24px;
  box-shadow: 0 28px 65px rgba(0,0,0,.34);
  opacity: 0;
  transform: translateX(28px) rotate(2deg);
  backdrop-filter: blur(13px);
  transition: opacity .7s ease .3s, transform .8s var(--ease) .3s;
  pointer-events: none;
}
.hero-slide.is-active .hero-pest-visual { opacity: 1; transform: translateX(0) rotate(2deg); }
.hero-pest-visual::before {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 10px;
  height: 10px;
  content: "";
  background: #75dc50;
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(85,191,48,.18);
}
.hero-pest-image { aspect-ratio: 1; overflow: hidden; background: var(--navy-900); border-radius: 17px; }
.hero-pest-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-pest-visual figcaption { display: grid; gap: 3px; padding: 14px 9px 8px; }
.hero-pest-kicker { color: #9be97f; font-size: .59rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.hero-pest-visual figcaption strong { color: var(--white); font-size: .88rem; line-height: 1.25; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 12px;
  color: #dcffd1;
  border: 1px solid rgba(152,228,122,.38);
  background: rgba(56,155,41,.17);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero-chip svg { width: 16px; height: 16px; }
.hero-content h1 { max-width: 730px; margin-bottom: 22px; color: var(--white); font-size: clamp(3rem, 6.5vw, 5.5rem); }
.hero-content h1 span { color: #7edc59; }
.hero-content > p { max-width: 640px; margin-bottom: 30px; color: rgba(255,255,255,.79); font-size: clamp(1.04rem, 2vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; color: rgba(255,255,255,.78); font-size: .82rem; font-weight: 650; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof svg { width: 17px; color: #86df63; }
.slider-ui {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 38px;
  left: 0;
  pointer-events: none;
}
.slider-ui-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.slider-dots { display: flex; align-items: center; gap: 9px; pointer-events: auto; }
.slider-dot {
  position: relative;
  width: 40px;
  height: 4px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: rgba(255,255,255,.28);
  border-radius: 99px;
}
.slider-dot::after {
  position: absolute;
  inset: 0;
  content: "";
  background: #7ddd59;
  transform: scaleX(0);
  transform-origin: left;
}
.slider-dot.is-active::after { animation: slider-progress 6.5s linear forwards; }
.slider-dot.is-paused::after { animation-play-state: paused; }
@keyframes slider-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.slider-arrows { display: flex; gap: 9px; pointer-events: auto; }
.slider-arrow {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(3,26,43,.22);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: background .2s ease, border-color .2s ease;
}
.slider-arrow:hover { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.13); }
.slider-arrow svg { width: 20px; height: 20px; }

.quick-trust { position: relative; z-index: 6; margin-top: -24px; }
.quick-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(3,26,43,.07);
  border-radius: 17px;
  box-shadow: var(--shadow-md);
}
.trust-item { display: flex; align-items: center; gap: 13px; padding: 22px 23px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 11px;
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-copy strong { display: block; color: var(--navy-950); font-size: .91rem; line-height: 1.25; }
.trust-copy span { display: block; margin-top: 3px; color: var(--muted); font-size: .74rem; line-height: 1.35; }

/* Cards and content */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 9px 26px rgba(3,26,43,.04);
}
.feature-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.feature-card:hover { border-color: #b8d7b0; box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.icon-box {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 15px;
}
.icon-box svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { color: var(--muted); font-size: .94rem; }
.feature-card .text-link { margin-top: 8px; font-size: .9rem; }
.feature-number {
  position: absolute;
  top: 12px;
  right: 20px;
  color: rgba(46,146,36,.08);
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1;
}

.pest-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.pest-card {
  display: flex;
  min-height: 142px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform .25s var(--ease), color .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.pest-card:hover { color: var(--white); border-color: var(--navy-950); background: var(--navy-950); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.pest-card-top { display: flex; align-items: center; justify-content: space-between; }
.pest-card-icon { display: grid; width: 42px; height: 42px; place-items: center; color: var(--green-700); background: var(--green-100); border-radius: 11px; }
.pest-card-icon svg { width: 23px; height: 23px; }
.pest-card-arrow { width: 19px; color: #8aa0aa; }
.pest-card:hover .pest-card-arrow { color: #92e471; }
.pest-card h3 { margin: 17px 0 0; color: inherit; font-size: 1rem; letter-spacing: -.015em; }

.image-frame {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.image-frame::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 55%, rgba(3,26,43,.28)); }
.image-badge {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  color: var(--white);
  background: rgba(3,26,43,.84);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}
.image-badge svg { width: 27px; height: 27px; flex: 0 0 auto; color: #8fe16e; }
.image-badge strong { display: block; font-size: .9rem; }
.image-badge span { display: block; margin-top: 2px; color: rgba(255,255,255,.65); font-size: .75rem; }
.content-stack h2 { margin-bottom: 21px; }
.content-stack > p { color: var(--muted); }
.check-list { display: grid; gap: 12px; margin: 26px 0 30px; padding: 0; list-style: none; }
.check-list.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: #35505e; font-size: .93rem; font-weight: 650; }
.check-list svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; color: var(--green-600); }

.service-showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-panel {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.service-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.service-panel:hover img { transform: scale(1.035); }
.service-panel::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(3,26,43,.02) 22%, rgba(3,26,43,.92) 100%); }
.service-panel-content { position: relative; z-index: 2; width: 100%; padding: clamp(25px, 4vw, 40px); color: rgba(255,255,255,.74); }
.service-panel-content h3 { margin-bottom: 12px; color: var(--white); font-size: clamp(1.7rem, 3vw, 2.35rem); }
.service-panel-content p { max-width: 480px; }
.service-tag { display: inline-flex; margin-bottom: 17px; padding: 7px 10px; color: #caffb7; background: rgba(66,172,43,.21); border: 1px solid rgba(126,220,89,.32); border-radius: 99px; font-size: .69rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: process; }
.process-step { position: relative; padding: 0 27px; counter-increment: process; }
.process-step:first-child { padding-left: 0; }
.process-step:last-child { padding-right: 0; }
.process-step:not(:last-child)::after { position: absolute; top: 25px; right: -2px; width: 42%; height: 1px; content: ""; background: rgba(255,255,255,.19); transform: translateX(50%); }
.step-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  color: #bdf7a7;
  border: 1px solid rgba(139,225,105,.36);
  background: rgba(85,191,48,.13);
  border-radius: 50%;
  font-size: .88rem;
  font-weight: 850;
}
.process-step h3 { margin-bottom: 10px; color: var(--white); font-size: 1.1rem; }
.process-step p { margin-bottom: 0; color: rgba(255,255,255,.61); font-size: .88rem; }

.assurance-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(35px, 7vw, 80px); align-items: center; }
.assurance-points { display: grid; gap: 15px; }
.assurance-item { display: flex; gap: 16px; padding: 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 15px; }
.assurance-item svg { width: 25px; height: 25px; flex: 0 0 auto; color: #8fe16e; }
.assurance-item h3 { margin-bottom: 5px; font-size: 1rem; }
.assurance-item p { margin: 0; color: rgba(255,255,255,.62); font-size: .84rem; }

.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.area-tag { padding: 9px 13px; color: #32505c; background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: .81rem; font-weight: 750; }
.area-tag::before { display: inline-block; width: 6px; height: 6px; margin-right: 8px; content: ""; background: var(--green-500); border-radius: 50%; vertical-align: middle; }
.coverage-card { position: relative; min-height: 420px; padding: clamp(30px, 5vw, 58px); overflow: hidden; color: rgba(255,255,255,.73); background: var(--navy-950); border-radius: var(--radius-lg); }
.coverage-card::before, .coverage-card::after { position: absolute; content: ""; border: 1px solid rgba(94,201,55,.18); border-radius: 50%; }
.coverage-card::before { width: 420px; height: 420px; right: -180px; bottom: -210px; box-shadow: 0 0 0 48px rgba(85,191,48,.035), 0 0 0 98px rgba(85,191,48,.025); }
.coverage-card::after { width: 130px; height: 130px; right: 70px; top: 30px; background: radial-gradient(circle, rgba(85,191,48,.25) 0 4%, transparent 5%); }
.coverage-content { position: relative; z-index: 2; max-width: 650px; }
.coverage-content h2 { color: var(--white); }

.cta-band { padding: 0 0 clamp(74px, 9vw, 120px); }
.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;
  padding: clamp(32px, 6vw, 64px);
  overflow: hidden;
  color: rgba(255,255,255,.74);
  background: linear-gradient(120deg, var(--green-700), #52bd32);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(46,146,36,.25);
}
.cta-card::before { position: absolute; top: -100px; right: 17%; width: 280px; height: 280px; content: ""; border: 45px solid rgba(255,255,255,.07); border-radius: 50%; }
.cta-card-content { position: relative; z-index: 2; }
.cta-card h2 { max-width: 750px; margin-bottom: 13px; color: var(--white); font-size: clamp(2rem, 4.1vw, 3.25rem); }
.cta-card p { max-width: 690px; margin-bottom: 0; }
.cta-card-actions { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 10px; }

/* Page headers */
.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}
.page-hero::before { position: absolute; inset: 0; content: ""; background-image: var(--page-image); background-position: center; background-size: cover; }
.page-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(3,26,43,.94), rgba(3,26,43,.68) 57%, rgba(3,26,43,.32)); }
.page-hero-inner { position: relative; z-index: 2; padding: 75px 0 68px; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 26px; color: rgba(255,255,255,.66); font-size: .78rem; font-weight: 650; }
.breadcrumbs a:hover { color: #a2eb85; }
.breadcrumbs svg { width: 13px; height: 13px; }
.page-hero h1 { max-width: 840px; margin-bottom: 15px; color: var(--white); font-size: clamp(2.8rem, 6vw, 5rem); }
.page-hero p { max-width: 700px; margin-bottom: 0; color: rgba(255,255,255,.73); font-size: 1.08rem; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 30px; }
.stat-card { padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 15px; }
.stat-card strong { display: block; color: var(--green-700); font-size: 1.45rem; line-height: 1.2; }
.stat-card span { display: block; margin-top: 5px; color: var(--muted); font-size: .78rem; }
.value-card { padding: 30px; }
.value-card .icon-box { margin-bottom: 19px; }
.value-card p { margin-bottom: 0; color: var(--muted); font-size: .91rem; }

.detail-list { display: grid; gap: 13px; margin: 24px 0; padding: 0; list-style: none; }
.detail-list li { display: flex; gap: 11px; color: #38535f; }
.detail-list svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 3px; color: var(--green-600); }
.split-card { display: grid; grid-template-columns: .82fr 1.18fr; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.split-card-media { min-height: 440px; position: relative; }
.split-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-card-content { padding: clamp(30px, 5vw, 60px); }
.split-card-content p { color: var(--muted); }

.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-detail { padding: 29px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.service-detail-head { display: flex; align-items: center; gap: 14px; margin-bottom: 15px; }
.service-detail-head .icon-box { width: 45px; height: 45px; margin: 0; border-radius: 12px; }
.service-detail-head .icon-box svg { width: 23px; }
.service-detail h3 { margin: 0; font-size: 1.13rem; }
.service-detail p { margin-bottom: 14px; color: var(--muted); font-size: .89rem; }
.mini-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.mini-list li { padding: 5px 9px; color: #47606b; background: var(--off-white); border-radius: 6px; font-size: .71rem; font-weight: 750; }

.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card { padding: 24px; color: rgba(255,255,255,.67); border: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.045); border-radius: 16px; }
.industry-card svg { width: 28px; height: 28px; margin-bottom: 19px; color: #8fe16e; }
.industry-card h3 { margin-bottom: 9px; font-size: 1rem; }
.industry-card p { margin: 0; font-size: .82rem; }

.notice { display: flex; gap: 14px; padding: 19px; color: #38505a; background: #fff9ea; border: 1px solid #f0dea6; border-radius: 13px; font-size: .87rem; }
.notice svg { width: 22px; height: 22px; flex: 0 0 auto; color: #b88012; }
.notice strong { color: #7a570f; }
.safety-card { padding: clamp(28px, 5vw, 46px); color: rgba(255,255,255,.69); background: var(--navy-950); border-radius: var(--radius); }
.safety-card h3 { color: var(--white); font-size: 1.7rem; }
.safety-card .check-list li { color: rgba(255,255,255,.75); }

/* Pest library */
.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 35px; }
.filter-btn { padding: 9px 14px; color: #405966; border: 1px solid var(--line); background: var(--white); border-radius: 999px; font-size: .79rem; font-weight: 800; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.filter-btn:hover, .filter-btn.is-active { color: var(--white); border-color: var(--navy-950); background: var(--navy-950); }
.library-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.library-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 18px; transition: box-shadow .25s ease, transform .25s var(--ease); }
.library-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.library-card[hidden] { display: none; }
.library-card-top { position: relative; display: flex; min-height: 115px; align-items: center; justify-content: space-between; padding: 24px; overflow: hidden; color: var(--white); background: var(--navy-950); }
.library-card-top::after { position: absolute; right: -30px; bottom: -50px; width: 130px; height: 130px; content: ""; border: 22px solid rgba(85,191,48,.12); border-radius: 50%; }
.library-card-top h2 { position: relative; z-index: 2; margin: 0; color: var(--white); font-size: 1.35rem; }
.library-icon { position: relative; z-index: 2; display: grid; width: 49px; height: 49px; place-items: center; color: #9be77d; border: 1px solid rgba(142,224,109,.27); background: rgba(85,191,48,.12); border-radius: 13px; }
.library-icon svg { width: 26px; height: 26px; }
.library-card-body { padding: 24px; }
.library-card-body p { color: var(--muted); font-size: .87rem; }
.signs { margin-bottom: 20px; }
.signs strong { display: block; margin-bottom: 7px; color: var(--navy-950); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.signs span { color: #49616c; font-size: .82rem; }
.risk-pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px; color: #69500f; background: #fff4d7; border-radius: 6px; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.risk-pill.high { color: #8d342d; background: #ffebe9; }
.risk-pill.medium { color: #69500f; background: #fff4d7; }

/* Resources */
.guide-nav { position: sticky; top: 110px; align-self: start; padding: 25px; background: var(--off-white); border: 1px solid var(--line); border-radius: 16px; }
.guide-nav strong { display: block; margin-bottom: 13px; color: var(--navy-950); font-size: .85rem; text-transform: uppercase; letter-spacing: .07em; }
.guide-nav a { display: block; padding: 8px 0; color: var(--muted); font-size: .87rem; font-weight: 650; border-bottom: 1px solid var(--line); }
.guide-nav a:last-child { border: 0; }
.guide-nav a:hover { color: var(--green-700); }
.guide-layout { display: grid; grid-template-columns: 250px 1fr; gap: clamp(35px, 6vw, 75px); }
.guide-section { margin-bottom: 55px; scroll-margin-top: 120px; }
.guide-section h2 { margin-bottom: 16px; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.check-card { margin-top: 20px; padding: 22px; background: var(--green-50); border: 1px solid #cfe7c8; border-radius: 14px; }
.check-card h3 { display: flex; align-items: center; gap: 9px; font-size: 1rem; }
.check-card h3 svg { color: var(--green-700); }
.check-card .check-list { margin: 0; }

/* FAQ */
.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 14px; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item h3 { margin: 0; }
.faq-item.is-open { border-color: #b6dbae; box-shadow: 0 9px 25px rgba(3,26,43,.05); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; color: var(--navy-950); border: 0; background: transparent; text-align: left; font-weight: 800; line-height: 1.35; }
.faq-question svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--green-700); transition: transform .25s ease; }
.faq-item.is-open .faq-question svg { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 22px 22px; color: var(--muted); font-size: .93rem; }
.faq-category { margin-bottom: 46px; }
.faq-category > h2 { margin-bottom: 20px; font-size: 1.7rem; }
.faq-page-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr); gap: clamp(35px, 7vw, 85px); align-items: start; }

/* Forms and contact */
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 6vw, 70px); align-items: start; }
.contact-cards { display: grid; gap: 13px; margin-top: 28px; }
.contact-card { display: flex; gap: 14px; padding: 17px; background: var(--off-white); border: 1px solid var(--line); border-radius: 13px; }
.contact-card svg { width: 23px; height: 23px; flex: 0 0 auto; margin-top: 2px; color: var(--green-700); }
.contact-card strong { display: block; margin-bottom: 2px; font-size: .84rem; }
.contact-card span, .contact-card a { color: var(--muted); font-size: .83rem; }
.contact-card a:hover { color: var(--green-700); }
.form-card { padding: clamp(25px, 5vw, 43px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.form-card h2 { margin-bottom: 9px; font-size: 1.85rem; }
.form-intro { margin-bottom: 26px; color: var(--muted); font-size: .89rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--navy-950); font-size: .78rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  color: var(--ink);
  border: 1px solid #cddade;
  background: var(--white);
  border-radius: 10px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(85,191,48,.11); }
.form-field input::placeholder, .form-field textarea::placeholder { color: #96a6ad; }
.form-actions { display: flex; align-items: center; gap: 14px; margin-top: 21px; }
.form-note { margin: 0; color: #71838b; font-size: .72rem; line-height: 1.45; }
.form-status { margin-top: 12px; color: var(--green-700); font-size: .82rem; font-weight: 700; }
.map-wrap { position: relative; min-height: 450px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-label { position: absolute; z-index: 2; right: 20px; bottom: 20px; left: 20px; padding: 16px 18px; background: rgba(255,255,255,.94); border-radius: 13px; box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); }
.map-label strong { display: block; font-size: .88rem; }
.map-label span { color: var(--muted); font-size: .79rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: .87rem; }
.hours-table td:last-child { color: var(--navy-950); text-align: right; font-weight: 700; }

/* Footer */
.site-footer { color: rgba(255,255,255,.64); background: var(--navy-950); }
.footer-main { padding: 76px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .75fr .85fr 1.1fr; gap: clamp(30px, 5vw, 65px); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-tagline { color: #8fe16e; }
.footer-about { max-width: 360px; margin: 20px 0 21px; font-size: .87rem; }
.social-links { display: flex; gap: 9px; }
.social-link { display: grid; width: 38px; height: 38px; place-items: center; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.14); border-radius: 9px; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.social-link:hover { color: var(--white); border-color: var(--green-500); background: rgba(85,191,48,.14); }
.social-link svg { width: 18px; height: 18px; }
.footer-title { margin-bottom: 19px; color: var(--white); font-size: .83rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-links a { font-size: .84rem; transition: color .2s ease, padding .2s ease; }
.footer-links a:hover { padding-left: 4px; color: #92e471; }
.footer-contact { display: grid; gap: 13px; }
.footer-contact-item { display: flex; gap: 10px; font-size: .82rem; }
.footer-contact-item svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; color: #83dc61; }
.footer-contact-item a:hover { color: #92e471; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .72rem; }
.footer-legal { display: flex; gap: 17px; }
.footer-legal a:hover { color: #92e471; }

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  height: 58px;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  color: var(--white);
  background: #22a84f;
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(3,26,43,.24);
  font-size: .8rem;
  font-weight: 850;
  transition: transform .25s var(--ease), background .2s ease;
}
.whatsapp-float:hover { background: #178d3f; transform: translateY(-4px); }
.whatsapp-float svg { width: 26px; height: 26px; fill: currentColor; }

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Privacy / simple copy */
.prose { color: var(--muted); }
.prose h2 { margin: 2.2em 0 .6em; color: var(--navy-950); font-size: 1.7rem; }
.prose h3 { margin: 1.8em 0 .5em; font-size: 1.15rem; }
.prose a { color: var(--green-700); text-decoration: underline; }
.prose li { margin-bottom: .5rem; }
.error-page { min-height: 70vh; display: grid; place-items: center; padding: 80px 0; text-align: center; }
.error-code { display: block; color: var(--green-600); font-size: clamp(5rem, 16vw, 10rem); font-weight: 900; line-height: .9; }

@media (max-width: 1100px) {
  .nav-shell { gap: 15px; }
  .brand { min-width: auto; }
  .brand-tagline { display: none; }
  .nav-link, .submenu-toggle { padding-inline: 8px; font-size: .8rem; }
  .header-cta { padding-inline: 13px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) 215px; gap: 34px; }
  .hero-pest-visual { max-width: 215px; }
  .quick-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .topbar-status { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar-items { width: 100%; justify-content: space-between; }
  .topbar-item:first-child { display: none; }
  .brand-mark { width: 41px; height: 50px; }
  .brand-name { font-size: 1rem; }
  .nav-toggle { display: inline-flex; }
  .header-cta { margin-left: auto; }
  .site-nav {
    position: absolute;
    z-index: 1001;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--header-height));
    padding: 17px 20px 35px;
    visibility: hidden;
    overflow-y: auto;
    background: var(--white);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .nav-open .site-nav { visibility: visible; opacity: 1; transform: none; }
  .nav-list { display: block; }
  .nav-link, .submenu-toggle { width: 100%; min-height: 51px; justify-content: space-between; padding: 12px 3px; border-bottom: 1px solid var(--line); font-size: .95rem; }
  .nav-link.active::after { display: none; }
  .submenu { position: static; width: 100%; max-height: 0; padding: 0 0 0 12px; visibility: visible; overflow: hidden; border: 0; box-shadow: none; opacity: 1; transform: none; transition: max-height .3s ease, padding .3s ease; }
  .has-submenu:hover .submenu, .has-submenu:focus-within .submenu { transform: none; }
  .has-submenu.open .submenu { max-height: 330px; padding-top: 7px; padding-bottom: 7px; transform: none; }
  .submenu a { padding: 10px 12px; }
  .hero-slider { height: 690px; min-height: 0; }
  .hero-inner { padding: 65px 0 110px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) 170px; gap: 24px; }
  .hero-pest-visual { max-width: 170px; padding: 7px; border-radius: 18px; }
  .hero-pest-image { border-radius: 12px; }
  .hero-pest-visual figcaption { padding: 10px 6px 6px; }
  .hero-pest-kicker { font-size: .5rem; }
  .hero-pest-visual figcaption strong { font-size: .75rem; }
  .hero-slide::after { background: linear-gradient(90deg, rgba(2,20,34,.94), rgba(3,26,43,.66)); }
  .hero-content { max-width: 670px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pest-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 35px 0; }
  .process-step:nth-child(2) { padding-right: 0; }
  .process-step:nth-child(3) { padding-left: 0; }
  .process-step:not(:last-child)::after { display: none; }
  .assurance-grid, .contact-layout { grid-template-columns: 1fr; }
  .assurance-points { grid-template-columns: repeat(2, 1fr); }
  .library-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-layout, .faq-page-layout { grid-template-columns: 1fr; }
  .guide-nav { position: static; display: flex; flex-wrap: wrap; gap: 5px 18px; }
  .faq-page-layout .guide-nav { display: block; }
  .faq-page-layout .guide-nav .btn { margin: 18px 0 10px; }
  .guide-nav strong { width: 100%; }
  .guide-nav a { border: 0; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-contact { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 52px 0; }
  .topbar-items { gap: 10px; }
  .topbar-item { font-size: .72rem; }
  .header-cta { display: none; }
  .nav-shell { gap: 10px; }
  .hero-slider { height: 820px; }
  .hero-inner { padding: 48px 0 98px; }
  .hero-layout { display: block; }
  .hero-slide::before { background-position: 63% center; }
  .hero-slide::after { background: linear-gradient(90deg, rgba(2,20,34,.95), rgba(3,26,43,.74)); }
  .hero-pest-visual {
    width: 225px;
    max-width: none;
    display: grid;
    grid-template-columns: 76px 1fr;
    align-items: center;
    gap: 5px;
    justify-self: auto;
    margin-top: 20px;
    padding: 6px;
    border-radius: 15px;
    transform: translateY(16px) rotate(0);
  }
  .hero-slide.is-active .hero-pest-visual { transform: translateY(0) rotate(0); }
  .hero-pest-visual::before { top: 12px; right: 12px; width: 8px; height: 8px; box-shadow: 0 0 0 4px rgba(85,191,48,.18); }
  .hero-pest-image { width: 76px; height: 76px; border-radius: 10px; }
  .hero-pest-visual figcaption { padding: 6px 8px; }
  .hero-pest-kicker { padding-right: 13px; font-size: .49rem; }
  .hero-pest-visual figcaption strong { font-size: .76rem; }
  .hero-chip { margin-bottom: 17px; font-size: .65rem; }
  .hero-content h1 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .hero-content > p { font-size: .98rem; }
  .hero-proof { gap: 10px 16px; margin-top: 23px; }
  .slider-ui { bottom: 25px; }
  .slider-dot { width: 30px; }
  .slider-arrow { width: 42px; height: 42px; }
  .quick-trust { margin-top: 0; }
  .quick-trust .container { width: 100%; }
  .quick-trust-grid { border-radius: 0; box-shadow: none; }
  .trust-item { padding: 18px 14px; }
  .trust-icon { width: 38px; height: 38px; }
  .section-head { display: block; }
  .section-head h2 { margin-bottom: 17px; }
  .grid-2, .grid-3, .grid-4, .service-showcase, .service-detail-grid, .split-card { grid-template-columns: 1fr; }
  .service-panel { min-height: 440px; }
  .image-frame { min-height: 420px; }
  .split-card-media { min-height: 320px; }
  .check-list.two-col { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 30px; }
  .process-step, .process-step:first-child, .process-step:nth-child(3), .process-step:last-child { padding: 0; }
  .process-step { display: grid; grid-template-columns: 52px 1fr; gap: 0 17px; }
  .step-number { grid-row: 1 / 3; }
  .assurance-points { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-card-actions { flex-direction: row; flex-wrap: wrap; }
  .page-hero { min-height: 370px; }
  .stat-row { grid-template-columns: 1fr; }
  .library-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .form-actions { display: block; }
  .form-note { margin-top: 11px; }
  .map-wrap { min-height: 400px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-contact { grid-template-columns: 1fr; }
  .footer-bottom-inner { display: block; text-align: center; }
  .footer-legal { justify-content: center; margin-top: 9px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 56px; padding: 0; justify-content: center; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}

@media (max-width: 430px) {
  .brand { gap: 7px; }
  .brand-name { font-size: .9rem; }
  .quick-trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .pest-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-proof span:last-child { display: none; }
  .cta-card-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > * { grid-column: auto !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hero-slide::before { transform: none; }
}
