/* ==========================================================================
   PestVira — brand stylesheet
   Brand: Signal red #E30613 · Navy #1E293B · Slate grey #9CA3AF
   Type:  Poppins (display, matches logo) · DM Sans (body) · IBM Plex Mono (labels)
   ========================================================================== */

:root {
  --red: #E30613;
  --red-600: #C20410;
  --red-50: #FDECEE;
  --navy: #1E293B;
  --navy-800: #172133;
  --ink: #0F1726;
  --navy-600: #33425C;
  --grey: #9CA3AF;
  --mist: #F3F5F8;
  --line: #E1E6ED;
  --text: #1E293B;
  --muted: #5A6578;
  --white: #FFFFFF;
  --amber: #D97706;
  --green: #15803D;

  --display: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --body: "DM Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --r-sm: 10px;
  --r: 18px;
  --r-lg: 28px;
  --shadow: 0 1px 2px rgba(15, 23, 38, .06), 0 10px 30px -12px rgba(15, 23, 38, .18);
  --shadow-lg: 0 30px 60px -25px rgba(15, 23, 38, .35);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --gutter: clamp(16px, 4vw, 32px);
  color-scheme: light;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
@supports (overflow: clip) { html, body { overflow-x: clip; } }
a, button { -webkit-tap-highlight-color: transparent; }
body {
  margin: 0;
  font: 400 1.0625rem/1.65 var(--body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
img { height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.02em; text-wrap: balance; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul { padding: 0; margin: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }
.ico { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.wrap { width: 100%; max-width: 1220px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); color: #D5DBE5; }
.section--navy h2, .section--navy h3 { color: var(--white); }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.22rem); color: var(--muted); max-width: 62ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font: 500 .78rem/1 var(--mono); letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1.1em;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.eyebrow--light { color: #FF8A92; }
.sec-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .lead { margin-inline: auto; }
.section--navy .lead { color: #AEB8C8; }
.text-red { color: var(--red); }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip:focus { left: 8px; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--navy); --fg: #fff;
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .95em 1.55em; border-radius: 999px; border: 2px solid var(--bg);
  background: var(--bg); color: var(--fg);
  font: 600 .98rem/1 var(--display); letter-spacing: .005em; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), color .3s;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 255, 255, .16); transform: translateX(-101%) skewX(-18deg);
  transition: transform .5s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -12px var(--bg); }
.btn:hover::after { transform: translateX(0) skewX(-18deg); }
.btn--red { --bg: var(--red); }
.btn--sm { padding: .72em 1.2em; font-size: .9rem; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); box-shadow: none; }
.btn--ghost::after { background: var(--mist); }
.btn--light { --bg: #fff; --fg: var(--red); }
.btn--light::after { background: var(--red-50); }
.btn--outline-light { background: transparent; border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn--outline-light:hover { border-color: #fff; box-shadow: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- top bar & header ---------- */
.topbar { background: var(--ink); color: #AEB8C8; font-size: .82rem; }
.topbar__inner { display: flex; justify-content: space-between; gap: 16px; padding-block: 8px; }
.topbar span, .topbar a { display: inline-flex; align-items: center; gap: .45em; text-decoration: none; }
.topbar__links { display: flex; gap: 22px; }
.topbar a:hover { color: #fff; }

.site-header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50;
  background: #fff;
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px -20px rgba(15, 23, 38, .35); }
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: 84px; transition: min-height .3s var(--ease); }
.is-scrolled .site-header__inner { min-height: 70px; }
.brand img { width: 168px; height: auto; transition: width .3s var(--ease); }
.is-scrolled .brand img { width: 148px; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 11px; font: 500 .94rem/1 var(--display); text-decoration: none; color: var(--navy); border-radius: 8px; white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 3px; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.chev { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .3s; }
.nav__cta-mobile { display: none; }

.has-mega { position: relative; }
.mega {
  position: absolute; top: calc(100% + 12px); left: 50%; width: min(620px, 90vw);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-lg);
  padding: 14px; opacity: 0; visibility: hidden; transform: translate(-50%, 8px);
  transition: opacity .25s, transform .3s var(--ease), visibility .25s;
}
.mega::before { content: ""; position: absolute; inset: -14px 0 auto; height: 14px; }
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.has-mega:hover .chev { transform: rotate(180deg); }
.mega__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.mega__item { display: flex; align-items: center; gap: 12px; padding: 8px 10px; border-radius: 12px; text-decoration: none; transition: background .2s; }
.mega__item:hover { background: var(--mist); }
.mega__art { width: 44px; height: 44px; border-radius: 50%; background: var(--mist); display: grid; place-items: center; flex: none; }
.mega__item:hover .mega__art { background: #fff; box-shadow: inset 0 0 0 2px var(--red); }
.mega__art svg { width: 38px; height: 38px; }
.mega__item strong { display: block; font: 600 .92rem/1.2 var(--display); }
.mega__item small { color: var(--muted); font-size: .8rem; }
.mega__all { display: block; margin-top: 8px; padding: 12px; border-top: 1px solid var(--line); text-align: center; font: 600 .9rem var(--display); color: var(--red); text-decoration: none; }

.site-header__cta { display: flex; align-items: center; gap: 16px; }
.call { display: flex; align-items: center; gap: 10px; text-decoration: none; font: 600 .95rem/1.15 var(--display); white-space: nowrap; }
.call small { display: block; font: 500 .72rem var(--body); color: var(--muted); }
.call__ring { position: relative; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--red-50); color: var(--red); }
.call__ring::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--red); animation: ring 2.4s var(--ease) infinite; }
@keyframes ring { 0% { transform: scale(.9); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }

.burger { display: none; margin-left: auto; width: 46px; height: 46px; border: 0; border-radius: 12px; background: var(--mist); cursor: pointer; padding: 12px 11px; flex-direction: column; justify-content: space-between; }
.burger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .35s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- the "P-lens" (brand motif from the logo) ---------- */
.lens {
  position: relative; display: grid; place-items: center; aspect-ratio: 1; max-width: 100%;
  border-radius: 50%; background: radial-gradient(circle at 40% 35%, #fff 0 55%, #EEF1F5 100%);
  box-shadow: inset 0 0 0 var(--ring, 8px) var(--red), var(--shadow);
}
.lens > svg, .lens > img { width: 78%; height: 78%; }
.lens > img { object-fit: cover; width: calc(100% - 2 * var(--ring, 8px)); height: calc(100% - 2 * var(--ring, 8px)); border-radius: 50%; }
.lens--sm { --ring: 4px; width: 88px; flex: none; }
.lens--lg { --ring: clamp(14px, 2.4vw, 26px); width: min(440px, 100%); }
/* the P stem */
.lens--lg::before {
  content: ""; position: absolute; left: 0; top: 50%; width: var(--ring); height: 62%;
  background: var(--red); border-radius: 0 0 0 4px; clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
}
.lens__scan {
  position: absolute; inset: var(--ring, 8px); border-radius: 50%; overflow: hidden; pointer-events: none;
}
.lens__scan::after {
  content: ""; position: absolute; left: 0; right: 0; height: 30%; top: -30%;
  background: linear-gradient(180deg, transparent, rgba(227, 6, 19, .12) 70%, rgba(227, 6, 19, .55) 100%);
  border-bottom: 2px solid rgba(227, 6, 19, .7);
  animation: scan 3.6s var(--ease) infinite;
}
@keyframes scan { 0% { top: -30%; } 60%, 100% { top: 100%; } }

.hud {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 999px; background: #fff; color: var(--navy);
  font: 500 .74rem/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; box-shadow: var(--shadow); white-space: nowrap;
  animation: float 5s ease-in-out infinite;
}
.hud::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(227, 6, 19, .6); animation: blip 1.6s infinite; }
.hud--ok::before { background: #22C55E; box-shadow: 0 0 0 0 rgba(34, 197, 94, .6); }
@keyframes blip { 70% { box-shadow: 0 0 0 8px rgba(227, 6, 19, 0); } 100% { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0); } }
@keyframes float { 50% { transform: translateY(-10px); } }

/* ---------- pest illustration animation ---------- */
.pest-art { overflow: visible; }
.pest-art .leg, .pest-art .antennae, .pest-art .wing-r, .pest-art .wing-l, .pest-art .tail, .pest-art .whiskers, .pest-art .ear, .pest-art .body { transform-box: view-box; }
.pest-art .antennae { transform-origin: 120px 60px; }
.pest-art .whiskers { transform-origin: 26px 151px; }
.is-alive .leg.a, .pest-card:hover .leg.a, .mega__item:hover .leg.a { animation: stride .38s ease-in-out infinite alternate; }
.is-alive .leg.b, .pest-card:hover .leg.b, .mega__item:hover .leg.b { animation: stride .38s ease-in-out infinite alternate-reverse; }
.is-alive .antennae, .pest-card:hover .antennae { animation: sway 1.4s ease-in-out infinite alternate; }
.is-alive .wing-r, .pest-card:hover .wing-r { animation: buzz-r .08s linear infinite alternate; }
.is-alive .wing-l, .pest-card:hover .wing-l { animation: buzz-l .08s linear infinite alternate; }
.is-alive .tail, .pest-card:hover .tail { animation: tail 1.2s ease-in-out infinite alternate; }
.is-alive .whiskers, .pest-card:hover .whiskers { animation: sway .3s ease-in-out infinite alternate; }
.is-alive .ear { animation: ear 3s ease-in-out infinite; }
@keyframes stride { from { transform: rotate(-8deg); } to { transform: rotate(8deg); } }
@keyframes sway { from { transform: rotate(-4deg); } to { transform: rotate(4deg); } }
@keyframes buzz-r { from { transform: rotate(-6deg); } to { transform: rotate(8deg); } }
@keyframes buzz-l { from { transform: rotate(6deg); } to { transform: rotate(-8deg); } }
@keyframes tail { from { transform: rotate(-7deg); } to { transform: rotate(9deg); } }
@keyframes ear { 0%, 88%, 100% { transform: rotate(0); } 92% { transform: rotate(-12deg); } 96% { transform: rotate(6deg); } }
.wander { animation: wander 14s ease-in-out infinite; transform-origin: center; }
@keyframes wander {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  20% { transform: translate(6%, -5%) rotate(14deg); }
  40% { transform: translate(-4%, -8%) rotate(-10deg); }
  60% { transform: translate(-7%, 4%) rotate(-24deg); }
  80% { transform: translate(5%, 6%) rotate(10deg); }
}

/* ---------- home hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #C9D1DD;
  background:
    radial-gradient(900px 480px at 85% 30%, rgba(227, 6, 19, .20), transparent 60%),
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--navy);
  padding-block: clamp(56px, 8vw, 104px) clamp(72px, 9vw, 120px);
}
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.6vw, 4.4rem); }
.hero h1 .hl { color: var(--red); position: relative; white-space: nowrap; }
.hero h1 .hl svg { position: absolute; left: 0; bottom: -.12em; width: 100%; height: .3em; overflow: visible; }
.hero h1 .hl path { fill: none; stroke: var(--red); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 320; stroke-dashoffset: 0; animation: draw 1.4s .5s var(--ease) both; }
@keyframes draw { from { stroke-dashoffset: 320; } }
.hero .lead { color: #AEB8C8; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; font-size: .92rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .ico { color: #FF6B75; }
.hero__art { position: relative; display: grid; place-items: center; width: 100%; }
.hero__art .lens { background: radial-gradient(circle at 40% 35%, #fff 0 55%, #E7EBF1 100%); }
.hero__art .hud--a { top: 8%; left: -2%; }
.hero__art .hud--b { bottom: 14%; right: -4%; animation-delay: -2s; }
.hero__art .hud--c { bottom: -2%; left: 8%; animation-delay: -3.5s; }
.hero__orbit { position: absolute; inset: -6%; border: 1.5px dashed rgba(255, 255, 255, .16); border-radius: 50%; animation: spin 40s linear infinite; }
.hero__orbit::after { content: ""; position: absolute; top: 50%; right: -6px; width: 12px; height: 12px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(227, 6, 19, .2); }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-in > * { animation: rise .9s var(--ease) both; }
.hero-in > *:nth-child(2) { animation-delay: .08s; }
.hero-in > *:nth-child(3) { animation-delay: .16s; }
.hero-in > *:nth-child(4) { animation-delay: .24s; }
.hero-in > *:nth-child(5) { animation-delay: .32s; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } }

/* ---------- marquee ---------- */
.marquee { background: var(--red); color: #fff; overflow: hidden; padding-block: 14px; }
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee__track span { display: inline-flex; align-items: center; gap: 18px; padding-right: 18px; font: 600 1rem/1 var(--display); white-space: nowrap; }
.marquee__track span::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .6); }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- service split ---------- */
.split { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc {
  position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 14px;
  padding: clamp(28px, 4vw, 44px); border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line);
  text-decoration: none; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc--dark { background: var(--navy); color: #C9D1DD; border-color: var(--navy); }
.svc--dark h3 { color: #fff; }
.svc__icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; background: var(--red-50); color: var(--red); font-size: 1.6rem; }
.svc--dark .svc__icon { background: rgba(227, 6, 19, .18); color: #FF6B75; }
.svc h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin: 0; }
.svc ul { display: grid; gap: 8px; margin: 6px 0 10px; }
.svc li { display: flex; gap: 10px; align-items: flex-start; }
.svc li .ico { color: var(--red); margin-top: .25em; }
.svc__more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font: 600 .95rem var(--display); color: var(--red); }
.svc--dark .svc__more { color: #FF6B75; }
.svc__more svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .3s; }
.svc:hover .svc__more svg { transform: translateX(5px); }
.svc__bg { position: absolute; right: -40px; bottom: -40px; width: 200px; opacity: .07; pointer-events: none; }
.svc--dark .svc__bg { opacity: .1; }

/* ---------- IPM process (a true sequence) ---------- */
.process { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; position: relative; }
.process::before { content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--grey) 0 8px, transparent 8px 16px); opacity: .5; }
.step { position: relative; counter-increment: step; }
.step__num {
  position: relative; width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; box-shadow: inset 0 0 0 4px var(--red); color: var(--navy); font-size: 1.5rem; margin-bottom: 18px;
}
.step__num::after { content: counter(step, decimal-leading-zero); position: absolute; top: -6px; right: -10px; background: var(--navy); color: #fff; font: 500 .7rem/1 var(--mono); padding: 5px 7px; border-radius: 999px; }
.section--navy .step__num { background: var(--navy-800); color: #fff; }
.section--navy .step p { color: #AEB8C8; }
.step p { color: var(--muted); font-size: .98rem; }

/* ---------- pest cards ---------- */
.pest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 18px; }
.pest-card {
  position: relative; display: flex; align-items: center; gap: 18px; padding: 18px 20px 18px 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); text-decoration: none;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.pest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pest-card .lens { transition: transform .5s var(--ease); }
.pest-card:hover .lens { transform: rotate(-8deg) scale(1.06); }
.pest-card__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; padding-right: 30px; }
.pest-card__local { font: 500 .72rem/1.3 var(--mono); letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.pest-card strong { font: 700 1.18rem/1.2 var(--display); color: var(--navy); }
.pest-card__latin { font-style: italic; color: var(--muted); font-size: .85rem; line-height: 1.35; }
.pest-card__risk { margin-top: 8px; align-self: flex-start; }
.pest-card__go { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--mist); transition: background .3s, transform .4s var(--ease); }
.pest-card__go svg { width: 16px; height: 16px; fill: none; stroke: var(--navy); stroke-width: 2; }
.pest-card:hover .pest-card__go { background: var(--red); transform: rotate(-45deg); }
.pest-card:hover .pest-card__go svg { stroke: #fff; }

.risk { white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px; font: 500 .72rem/1 var(--mono); letter-spacing: .05em; text-transform: uppercase; }
.risk::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.risk--high { background: var(--red-50); color: var(--red-600); }
.risk--medium { background: #FEF3C7; color: #92400E; }
.risk--low { background: #DCFCE7; color: #166534; }

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.feature { background: #fff; padding: clamp(24px, 3vw, 36px); transition: background .3s; }
.feature:hover { background: var(--mist); }
.feature__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--navy); color: #fff; font-size: 1.3rem; margin-bottom: 18px; transition: background .3s, transform .4s var(--ease); }
.feature:hover .feature__icon { background: var(--red); transform: rotate(-8deg); }
.feature p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- season calendar (unique to pest control) ---------- */
.season { overflow-x: auto; border-radius: var(--r); background: var(--navy-800); padding: 8px; }
.season table { width: 100%; min-width: 720px; border-collapse: separate; border-spacing: 4px; font-variant-numeric: tabular-nums; }
.season th { font: 500 .72rem/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: #8B97AB; padding: 8px 4px; text-align: center; }
.season th[scope="row"] { text-align: left; color: #fff; font: 600 .92rem var(--display); letter-spacing: 0; text-transform: none; white-space: nowrap; padding-right: 12px; }
.season th[scope="row"] a { text-decoration: none; }
.season th[scope="row"] a:hover { color: #FF6B75; }
.season td { height: 34px; border-radius: 6px; background: rgba(255, 255, 255, .05); transition: transform .2s; }
.season td:hover { transform: scale(1.12); }
.season td.l1 { background: rgba(227, 6, 19, .22); }
.season td.l2 { background: rgba(227, 6, 19, .55); }
.season td.l3 { background: var(--red); }
.season td.is-now { outline: 2px solid #fff; outline-offset: -2px; }
.season-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; font-size: .85rem; color: #AEB8C8; }
.season-legend span { display: inline-flex; align-items: center; gap: 8px; }
.season-legend i { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }

/* ---------- stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { border-left: 3px solid var(--red); padding-left: 18px; }
.stat b { display: block; font: 800 clamp(2rem, 4vw, 2.9rem)/1 var(--display); color: var(--navy); letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.stat span { color: var(--muted); font-size: .95rem; }

/* ---------- chips / industries ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: var(--mist); font-size: .9rem; border: 1px solid var(--line); }
.industries { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.industry { padding: 24px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s; }
.industry:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.industry .ico { font-size: 1.6rem; color: var(--red); margin-bottom: 12px; }
.industry h3 { margin-bottom: .35em; font-size: 1.08rem; }
.industry p { margin: 0; color: var(--muted); font-size: .94rem; }

/* ---------- split content blocks ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.two-col--top { align-items: start; }
.prose p { color: var(--muted); }
.prose p strong { color: var(--navy); }
.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .ico { flex: none; width: 24px; height: 24px; padding: 4px; border-radius: 50%; background: var(--red); color: #fff; stroke-width: 2.6; margin-top: 2px; }
.section--navy .checklist li { color: #D5DBE5; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan { display: flex; flex-direction: column; gap: 12px; padding: 30px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); }
.plan--feat { background: var(--navy); color: #C9D1DD; border-color: var(--navy); box-shadow: var(--shadow-lg); }
.plan--feat h3 { color: #fff; }
.plan__tag { align-self: flex-start; font: 500 .72rem/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; background: var(--mist); color: var(--navy); }
.plan--feat .plan__tag { background: var(--red); color: #fff; }
.plan p { margin: 0; color: var(--muted); }
.plan--feat p { color: #AEB8C8; }
.plan ul { display: grid; gap: 8px; margin: 8px 0 14px; font-size: .96rem; }
.plan li { display: flex; gap: 10px; }
.plan li .ico { color: var(--red); margin-top: .25em; }
.plan .btn { margin-top: auto; }

.rooms { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.room { padding: 22px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); }
.room h3 { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; }
.room h3 .ico { color: var(--red); }
.room p { margin: 0; font-size: .94rem; color: var(--muted); }

/* ---------- inner page hero ---------- */
.phero {
  position: relative; overflow: hidden; color: #C9D1DD;
  background:
    radial-gradient(700px 380px at 90% 20%, rgba(227, 6, 19, .18), transparent 60%),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--navy);
  padding-block: clamp(40px, 6vw, 72px) clamp(56px, 7vw, 88px);
}
.phero__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.phero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.phero .lead { color: #AEB8C8; }
.phero__art { position: relative; display: grid; place-items: center; }
.phero__art .lens--lg { width: min(340px, 100%); }
.phero__art .hud--a { top: 6%; right: -2%; }
.phero__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.phero__meta .risk { font-size: .78rem; padding: 8px 12px; }
.phero__meta .tag { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px; background: rgba(255, 255, 255, .08); color: #D5DBE5; font: 500 .78rem/1 var(--mono); letter-spacing: .04em; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0 0 22px; font-size: .85rem; color: #8B97AB; }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .6; }
.crumbs a { color: #C9D1DD; text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }

/* ---------- pest detail page ---------- */
.toc { position: sticky; top: calc(96px + env(safe-area-inset-top, 0px)); display: grid; gap: 4px; padding: 18px; border-radius: var(--r); background: var(--mist); }
.toc b { font: 500 .72rem/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.toc a { padding: 8px 12px; border-radius: 10px; text-decoration: none; font-size: .95rem; transition: background .2s, color .2s; }
.toc a:hover, .toc a.is-on { background: #fff; color: var(--red); }
.pest-layout { display: grid; grid-template-columns: 240px 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.pest-main > section { scroll-margin-top: 110px; padding-bottom: clamp(48px, 6vw, 72px); }
.pest-main > section + section { border-top: 1px solid var(--line); padding-top: clamp(48px, 6vw, 72px); }

.datasheet { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin: 28px 0 8px; }
.datasheet div { padding: 16px 18px; border-right: 1px solid var(--line); }
.datasheet div:last-child { border-right: 0; }
.datasheet dt { font: 500 .7rem/1.2 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.datasheet dd { margin: 0; font: 600 .98rem/1.35 var(--display); color: var(--navy); }

.specimens { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.specimen { position: relative; padding: 22px 22px 20px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); transition: box-shadow .35s, transform .35s var(--ease); }
.specimen:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.specimen::before { content: ""; position: absolute; top: 18px; right: 18px; width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px var(--red-50); }
.specimen h3 { margin-bottom: 2px; padding-right: 24px; }
.specimen__latin { font-style: italic; color: var(--muted); font-size: .92rem; }
.specimen__size { display: inline-block; margin: 10px 0; font: 500 .74rem/1 var(--mono); padding: 6px 10px; border-radius: 6px; background: var(--mist); color: var(--navy); }
.specimen p { margin: 0; color: var(--muted); font-size: .96rem; }

.risk-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.risk-item { display: flex; gap: 16px; padding: 20px; border-radius: var(--r); background: var(--red-50); }
.risk-item .ico { flex: none; width: 42px; height: 42px; padding: 10px; border-radius: 12px; background: #fff; color: var(--red); }
.risk-item h3 { font-size: 1.05rem; margin-bottom: .3em; }
.risk-item p { margin: 0; font-size: .95rem; color: #4B5567; }

.signs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; margin-top: 20px; }
.signs li { display: flex; gap: 10px; align-items: flex-start; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.signs .ico { color: var(--red); margin-top: .2em; }

.timeline { display: grid; gap: 0; counter-reset: t; }
.tl { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding-bottom: 28px; counter-increment: t; }
.tl::before { content: ""; position: absolute; left: 27px; top: 56px; bottom: 0; width: 2px; background: var(--line); }
.tl:last-child::before { display: none; }
.tl__n { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: #fff; font: 700 1.05rem var(--display); box-shadow: 0 0 0 6px var(--mist); }
.tl__n::before { content: counter(t, decimal-leading-zero); }
.tl:hover .tl__n { background: var(--red); }
.tl h3 { margin: 12px 0 .3em; }
.tl p { margin: 0; color: var(--muted); }
.methods { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.methods span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 10px; background: var(--navy); color: #fff; font-size: .9rem; }
.methods .ico { color: #FF6B75; }

.prevent { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.prevent li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: var(--r-sm); background: var(--mist); }
.prevent .ico { flex: none; color: var(--green); margin-top: .2em; }

.aside-cta { margin-top: 18px; padding: 20px; border-radius: var(--r); background: var(--navy); color: #C9D1DD; }
.aside-cta b { display: block; color: #fff; font: 700 1.05rem/1.3 var(--display); margin-bottom: 6px; }
.aside-cta p { font-size: .9rem; }
.aside-cta .btn { width: 100%; }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.faq__head { position: sticky; top: 120px; }
.faq__list { display: grid; gap: 12px; }
.qa { border: 1px solid var(--line); border-radius: var(--r); background: #fff; transition: box-shadow .3s, border-color .3s; }
.qa[open] { border-color: transparent; box-shadow: var(--shadow); }
.qa summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; list-style: none; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary h3 { margin: 0; font-size: 1.04rem; font-weight: 600; line-height: 1.4; }
.qa__icon { position: relative; flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--mist); transition: background .3s, transform .4s var(--ease); }
.qa__icon::before, .qa__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; background: var(--navy); transition: transform .4s var(--ease), background .3s; }
.qa__icon::after { transform: rotate(90deg); }
.qa[open] .qa__icon { background: var(--red); transform: rotate(180deg); }
.qa[open] .qa__icon::before, .qa[open] .qa__icon::after { background: #fff; }
.qa[open] .qa__icon::after { transform: rotate(0); }
.qa__body { padding: 0 22px 20px; color: var(--muted); }
.qa__body p { margin: 0; }
.qa[open] .qa__body { animation: open .4s var(--ease); }
@keyframes open { from { opacity: 0; transform: translateY(-6px); } }

/* ---------- CTA band ---------- */
.cta-band { padding-block: clamp(48px, 7vw, 88px); }
.cta-band__inner {
  position: relative; overflow: hidden; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(20px, 4vw, 44px);
  padding: clamp(28px, 5vw, 52px); border-radius: var(--r-lg); background: var(--red); color: #FFE3E5;
  background-image: radial-gradient(500px 240px at 100% 0, rgba(255, 255, 255, .18), transparent 70%);
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: .3em; }
.cta-band p { margin: 0; max-width: 56ch; }
.cta-band__lens { width: 110px; aspect-ratio: 1; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: inset 0 0 0 6px var(--navy); }
.cta-band__lens svg { width: 80%; }
.cta-band__actions { display: flex; flex-direction: column; gap: 10px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.form-card { padding: clamp(24px, 4vw, 40px); border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font: 600 .88rem var(--display); color: var(--navy); }
.field label em { color: var(--red); font-style: normal; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text); padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--mist);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px var(--red-50); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); }
.field .err { color: var(--red-600); font-size: .84rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: 16px 18px; border-radius: 12px; margin-bottom: 20px; font-weight: 500; }
.alert--ok { background: #DCFCE7; color: #14532D; }
.alert--err { background: var(--red-50); color: var(--red-600); }
.form-note { font-size: .85rem; color: var(--muted); margin: 14px 0 0; }
.info-cards { display: grid; gap: 14px; }
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: var(--r); background: var(--mist); text-decoration: none; transition: background .3s, transform .3s var(--ease); }
a.info-card:hover { background: var(--red-50); transform: translateX(4px); }
.info-card .ico { flex: none; width: 46px; height: 46px; padding: 11px; border-radius: 14px; background: var(--navy); color: #fff; }
.info-card small { display: block; font: 500 .72rem/1.2 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.info-card strong { font: 600 1.02rem/1.4 var(--display); color: var(--navy); word-break: break-word; }
.map-ph { position: relative; overflow: hidden; margin-top: 14px; aspect-ratio: 16 / 10; border-radius: var(--r); background: linear-gradient(rgba(30, 41, 59, .06) 1px, transparent 1px) 0 0 / 28px 28px, linear-gradient(90deg, rgba(30, 41, 59, .06) 1px, transparent 1px) 0 0 / 28px 28px, #EEF1F5; display: grid; place-items: center; text-align: center; color: var(--muted); font-size: .9rem; padding: 20px; }
.map-ph .pin { width: 44px; height: 44px; margin: 0 auto 8px; color: var(--red); animation: float 3s ease-in-out infinite; }
.map-ph .pin .ico { width: 100%; height: 100%; }

/* ---------- about ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value { padding: 26px; border-radius: var(--r); background: var(--navy-800); border: 1px solid rgba(255, 255, 255, .06); }
.value .ico { font-size: 1.6rem; color: #FF6B75; margin-bottom: 14px; }
.value p { margin: 0; color: #AEB8C8; font-size: .95rem; }
.promise { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.promise li { display: flex; gap: 14px; padding: 18px; border-radius: var(--r-sm); border: 1px solid var(--line); background: #fff; }
.promise .ico { color: var(--red); font-size: 1.3rem; flex: none; }
.promise b { display: block; font-family: var(--display); color: var(--navy); margin-bottom: 2px; }
.promise span { color: var(--muted); font-size: .94rem; }
.big-lens { position: relative; display: grid; place-items: center; }
.big-lens .lens--lg { width: min(400px, 100%); }
.big-lens .hud--a { top: 10%; left: 0; }
.big-lens .hud--b { bottom: 10%; right: 0; animation-delay: -2s; }

/* ---------- footer ---------- */
.site-footer { position: relative; overflow-x: clip; background: var(--ink); color: #9AA5B8; padding-top: 72px; font-size: .95rem; }
.crawl-line { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.crawler { position: absolute; top: -18px; left: 0; width: 38px; height: 38px; animation: crawl 26s linear infinite; }
.crawler svg { width: 100%; height: 100%; transform: rotate(90deg); }
.crawler .leg.a { animation: stride .3s ease-in-out infinite alternate; }
.crawler .leg.b { animation: stride .3s ease-in-out infinite alternate-reverse; }
@keyframes crawl { from { transform: translateX(-60px); } to { transform: translateX(calc(100vw + 60px)); } }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.site-footer__brand img { width: 190px; margin-bottom: 18px; }
.site-footer__brand p { max-width: 40ch; }
.site-footer__h { font: 600 .78rem/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer ul.cols-2 { grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.site-footer a { text-decoration: none; transition: color .2s; }
.site-footer a:hover { color: #fff; }
.contact-list li { display: flex; gap: 10px; align-items: flex-start; }
.contact-list .ico { color: var(--red); margin-top: .25em; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .15); font: 600 .72rem var(--display); color: #fff; transition: background .3s, border-color .3s; }
.social a:hover { background: var(--red); border-color: var(--red); }
.site-footer__areas { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding-block: 22px; border-top: 1px solid rgba(255, 255, 255, .08); }
.site-footer__areas > span:first-child { margin-right: 6px; font: 500 .78rem var(--mono); letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.site-footer .chip { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .08); color: #C9D1DD; font-size: .82rem; padding: 6px 12px; }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-block: 22px 28px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .85rem; }
.site-footer__bottom p { margin: 0; }

.mobile-bar { display: none; }
.wa-float {
  position: fixed; right: 22px; bottom: calc(22px + env(safe-area-inset-bottom, 0px)); z-index: 40;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25D366; color: #fff; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .7);
  transition: transform .3s var(--ease);
}
.wa-float .ico { width: 28px; height: 28px; stroke-width: 1.6; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: ring 2.4s infinite; }
.wa-float:hover { transform: scale(1.08) rotate(-6deg); }

/* ---------- reveal on scroll (content is visible without JS) ---------- */
.js .reveal.pre { opacity: 0; transform: translateY(28px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }

/* 404 */
.nf { text-align: center; padding-block: clamp(64px, 10vw, 140px); }
.nf .lens--lg { width: min(260px, 70vw); margin: 0 auto 28px; }


/* ---------- pest gallery ---------- */
[hidden] { display: none !important; }
.filters .chip { cursor: pointer; font: 500 .9rem var(--display); color: var(--navy); transition: background .2s, color .2s, border-color .2s; }
.filters .chip:hover { border-color: var(--navy); }
.filters .chip.is-on { background: var(--navy); color: #fff; border-color: var(--navy); }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.g-card { display: flex; flex-direction: column; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); text-decoration: none; overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s; }
.g-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.g-card__art { display: grid; place-items: center; padding: 28px; background: linear-gradient(rgba(30,41,59,.05) 1px, transparent 1px) 0 0 / 22px 22px, linear-gradient(90deg, rgba(30,41,59,.05) 1px, transparent 1px) 0 0 / 22px 22px, var(--mist); }
.g-card__art .lens { --ring: 7px; width: 170px; transition: transform .6s var(--ease); }
.g-card:hover .g-card__art .lens { transform: scale(1.06) rotate(-6deg); }
.g-card.is-alive .lens { transform: scale(1.04) rotate(-4deg); }
.g-card:hover .leg.a { animation: stride .38s ease-in-out infinite alternate; }
.g-card:hover .leg.b { animation: stride .38s ease-in-out infinite alternate-reverse; }
.g-card:hover .wing-r { animation: buzz-r .08s linear infinite alternate; }
.g-card:hover .wing-l { animation: buzz-l .08s linear infinite alternate; }
.g-card:hover .tail { animation: tail 1.2s ease-in-out infinite alternate; }
.g-card__body { display: flex; flex-direction: column; gap: 3px; padding: 20px 22px 22px; flex: 1; }
.g-card strong { font: 700 1.3rem/1.2 var(--display); color: var(--navy); }
.g-card__short { color: var(--muted); font-size: .95rem; margin-top: 8px; }
.g-card__foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: auto; padding-top: 16px; }
.g-card .svc__more { font-size: .88rem; white-space: nowrap; }
.g-card:hover .svc__more svg { transform: translateX(5px); }
.identify { display: grid; gap: 10px; }
.identify a { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 20px; border-radius: var(--r-sm); background: #fff; border: 1px solid var(--line); text-decoration: none; transition: border-color .2s, transform .3s var(--ease); }
.identify a:hover { border-color: var(--red); transform: translateX(6px); }
.identify b { flex: none; font: 600 .92rem var(--display); color: var(--red); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 961px) {
  .site-header { background: rgba(255, 255, 255, .92); backdrop-filter: saturate(1.6) blur(14px); -webkit-backdrop-filter: saturate(1.6) blur(14px); }
}
@media (max-width: 1280px) {
  .site-header__cta .call { display: none; }
}
@media (max-width: 1100px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .topbar { display: none; }
  .burger { display: flex; }
  .site-header__cta { display: none; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; height: 100vh; height: 100dvh; width: min(340px, 86vw); z-index: 60; margin: 0;
    background: #fff; padding: calc(88px + env(safe-area-inset-top, 0px)) 22px 32px; overflow-y: auto;
    transform: translateX(100%); visibility: hidden; transition: transform .45s var(--ease), visibility .45s; box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column; gap: 20px;
  }
  .nav.is-open { transform: none; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { width: 100%; padding: 14px 12px; font-size: 1.05rem; justify-content: space-between; }
  .nav__link::after { display: none; }
  .nav__link.is-active { color: var(--red); background: var(--red-50); }
  .mega { position: static; opacity: 1; visibility: visible; transform: none; width: auto; box-shadow: none; border: 0; padding: 0 0 8px 8px; display: none; }
  .has-mega.is-open .mega { display: block; }
  .has-mega:hover .mega, .has-mega:focus-within .mega { transform: none; }
  .phero__meta .risk, .phero__meta .tag { white-space: normal; line-height: 1.35; }
  .mega__art { width: 38px; height: 38px; }
  .mega__art svg { width: 32px; height: 32px; }
  .mega__grid { grid-template-columns: 1fr; }
  .nav__cta-mobile { display: inline-flex; }
  .burger { position: relative; z-index: 70; }
  body.nav-open { overflow: hidden; }
  body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(15, 23, 38, .5); z-index: 46; animation: fade .3s; }
  @keyframes fade { from { opacity: 0; } }
  .nav__item { opacity: 0; transform: translateX(24px); transition: opacity .4s, transform .5s var(--ease); }
  .nav.is-open .nav__item { opacity: 1; transform: none; }
  .nav.is-open .nav__item:nth-child(2) { transition-delay: .05s; } .nav.is-open .nav__item:nth-child(3) { transition-delay: .1s; } .nav.is-open .nav__item:nth-child(4) { transition-delay: .15s; } .nav.is-open .nav__item:nth-child(5) { transition-delay: .2s; } .nav.is-open .nav__item:nth-child(6) { transition-delay: .25s; }
  .has-mega.is-open .chev { transform: rotate(180deg); }
  .mega__item { padding: 6px 8px; }

  .hero__grid, .phero__grid, .two-col, .faq__grid, .contact-grid, .pest-layout { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 300px; margin-inline: auto; }
  .phero__art { max-width: 230px; width: 100%; margin: 4px auto 0; }
  .phero__art .hud--a { top: 0; right: -8px; }
  .faq__head { position: static; }
  .process { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .process::before { display: none; }
  .plans { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .toc { position: static; grid-template-columns: repeat(2, 1fr); }
  .toc b { grid-column: 1 / -1; }
  .datasheet { grid-template-columns: repeat(2, 1fr); }
  .datasheet div:nth-child(2) { border-right: 0; }
  .datasheet div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cta-band__inner { grid-template-columns: 1fr; text-align: left; }
  .cta-band__lens { width: 80px; }
  .cta-band__actions { flex-direction: row; flex-wrap: wrap; }

  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 44; display: grid; grid-template-columns: 1fr 1fr 1.3fr;
    background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -18px rgba(15, 23, 38, .4);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .mobile-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 10px 6px; font: 600 .78rem var(--display); text-decoration: none; color: var(--navy); }
  .mobile-bar a .ico { width: 20px; height: 20px; color: var(--red); }
  .mobile-bar a.is-primary { background: var(--red); color: #fff; }
  .mobile-bar a.is-primary .ico { color: #fff; }
  .wa-float { display: none; }
  body { padding-bottom: 64px; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .split, .features, .values, .specimens, .risk-list, .signs, .prevent, .promise, .form-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .brand img, .is-scrolled .brand img { width: 136px; }
  .site-header__inner { min-height: 68px; }
  .hero__art .hud--a { left: 0; }
  .hero__art .hud--b { right: 0; }
  .hud { font-size: .66rem; padding: 7px 10px; }
  .pest-grid { grid-template-columns: 1fr; }
  .toc { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wander, .marquee__track, .crawler, .hud, .hero__orbit, .hero-in > *, .map-ph .pin, .call__ring::after, .wa-float::after { animation: none !important; }
  .js .reveal.pre { opacity: 1; transform: none; }
  .js .reveal.in { transition: none; }
}
