/* =========================================================
   SUPERIOR PEST MANAGEMENT — site stylesheet
   Dark premium design system, green/charcoal/white palette.
   ========================================================= */

:root {
  --bg-deep: #0B1310;
  --bg-raised: #131D18;
  --bg-raised-2: #1A2820;
  --text: #F4F7F3;
  --text-muted: #97A89C;
  --text-dim: #5E6E63;

  --brand: #2EA85C;
  --brand-dark: #1F8042;
  --brand-glow: rgba(46, 168, 92, 0.55);
  --accent: #F4B942;

  --border: rgba(244, 247, 243, 0.08);
  --border-strong: rgba(244, 247, 243, 0.14);

  --font-display: "Oswald", "Bebas Neue", "Impact", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;

  --shadow-card: 0 18px 40px -20px rgba(0, 0, 0, 0.75), 0 2px 4px rgba(0, 0, 0, 0.4);
  --shadow-cta: 0 12px 28px -10px rgba(46, 168, 92, 0.55);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --container: 1200px;
  --header-h: 60px;
  --topbar-h: 32px;

  --easing: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
::selection { background: var(--brand); color: var(--text); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.5rem); line-height: 1.08; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 1.9vw, 1.6rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; color: var(--text); }
p.lead { font-size: 1.125rem; color: var(--text-muted); max-width: 60ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--brand);
  margin-bottom: 0.85rem;
}
.text-accent { color: var(--brand); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head p { color: var(--text-muted); font-size: 1.0625rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: transform .2s var(--easing), background-color .2s var(--easing), box-shadow .2s var(--easing), color .2s var(--easing);
  white-space: nowrap;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.site-header .btn { padding: 0.6rem 1.1rem; font-size: 0.78rem; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 2px solid var(--border-strong);
  padding: calc(0.95rem - 2px) calc(1.6rem - 2px);
}
.btn-secondary:hover { border-color: var(--text); transform: translateY(-2px); }
.btn-call { background: var(--accent); color: #1A1A1A; }
.btn-call:hover { background: #E6A82A; transform: translateY(-2px); }
.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Top bar ---------- */
.top-bar {
  background: #06100B;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.top-bar .container {
  height: var(--topbar-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.top-bar .badges { display: flex; gap: 1rem; align-items: center; }
.top-bar .badges span {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-display);
  letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 0.68rem;
}
.top-bar .badges span::before { content: "▲"; color: var(--brand); font-size: 0.55rem; }
.top-bar .phone {
  font-family: var(--font-display);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 0.72rem; color: var(--text);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.top-bar .phone svg { width: 13px; height: 13px; color: var(--brand); }
.top-bar .phone:hover { color: var(--brand); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 19, 16, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .25s ease;
}
.site-header.scrolled { background: rgba(11, 19, 16, 0.97); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand {
  display: inline-flex; align-items: center;
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  font-size: 0.95rem;
  line-height: 0;
}
/* Logo image — black text on transparent PNG, inverted to white on the dark site.
   invert(1) flips black → white; hue-rotate(180deg) restores the ants' warm tones. */
.brand-logo {
  height: 44px; width: auto; display: block;
  filter: invert(1) hue-rotate(180deg);
  transition: opacity .2s ease, transform .2s ease;
}
.brand:hover .brand-logo { opacity: 0.9; transform: translateY(-1px); }
/* Footer variant — larger for more presence */
.site-footer .brand-logo { height: 56px; margin-bottom: 0.75rem; }
/* Legacy SVG mark fallback (kept harmless in case any page still uses it) */
.brand-mark { width: 28px; height: 28px; display: inline-grid; place-items: center; margin-right: 0.55rem; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-name { color: var(--text); line-height: 1; }
.brand-name b { color: var(--brand); font-weight: 700; display: block; font-size: 0.62rem; letter-spacing: 0.2em; margin-top: 2px; }

.nav-links { display: flex; gap: 1.3rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: var(--font-display);
  font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--text); position: relative; padding: 0.25rem 0;
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: color .2s ease;
}
.nav-links > li > a:hover { color: var(--brand); }
.nav-links > li > a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--brand);
}

/* ---------- Desktop dropdown ---------- */
.has-dropdown {
  /* Extend hover area downward so cursor can travel from link into menu
     without crossing a gap that drops the :hover state. */
  padding-bottom: 22px;
  margin-bottom: -22px;
}
.has-dropdown > a::after {
  content: "▾"; font-size: 0.65rem; opacity: 0.7;
  position: static !important; background: none !important; height: auto !important;
}
.has-dropdown:hover > a, .has-dropdown:focus-within > a { color: var(--brand); }
.dropdown {
  position: absolute; top: calc(100% + 4px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 0.6rem 0;
  min-width: 280px;
  box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Invisible bridge between link and dropdown — keeps :hover continuous */
.dropdown::after {
  content: ""; position: absolute;
  top: -20px; left: 0; right: 0; height: 22px;
  background: transparent;
}
.dropdown::before {
  content: ""; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  border-left: 8px solid transparent; border-right: 8px solid transparent;
  border-bottom: 8px solid var(--border-strong);
  z-index: 1;
}
.dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--text);
  transition: color .15s ease, background .15s ease, padding-left .15s ease;
}
.dropdown a:hover { color: var(--brand); background: rgba(46, 168, 92, 0.08); padding-left: 1.5rem; }
.dropdown a.cta { color: var(--brand); border-top: 1px solid var(--border); margin-top: 0.35rem; padding-top: 0.7rem; }
.dropdown .group-label {
  display: block;
  padding: 0.7rem 1.25rem 0.35rem;
  font-family: var(--font-display);
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-dim);
}

.nav-cta { display: flex; align-items: center; gap: 0.6rem; }
.hamburger {
  display: none;
  width: 44px; height: 44px; border-radius: 6px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border-strong);
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); position: relative; }
.hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--text);
  transition: transform .25s ease, top .25s ease;
}
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { top: 0; transform: rotate(45deg); }
.hamburger.open span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
  padding: 1rem 1.25rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; margin: 0 0 0.5rem; padding: 0; display: flex; flex-direction: column; gap: 0; }
.mobile-menu a {
  display: block; padding: 0.75rem 0;
  font-family: var(--font-display);
  letter-spacing: 0.12em; text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color .15s ease, padding-left .15s ease;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--brand); padding-left: 0.5rem; }
.mobile-menu .group-label {
  display: block;
  padding: 1.1rem 0 0.4rem;
  font-family: var(--font-display);
  font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--brand);
}
.mobile-menu .btn { margin-top: 0.5rem; }
.mobile-menu .btn + .btn { margin-top: 0.5rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.25rem, 7vw, 5.5rem);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(46, 168, 92, 0.18), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(244, 185, 66, 0.08), transparent 60%),
    linear-gradient(180deg, #0D1612 0%, var(--bg-deep) 70%);
  border-bottom: 1px solid var(--border);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 1rem; max-width: 18ch; }
.hero h1 .accent { color: var(--brand); display: inline-block; }
.hero .sub { font-size: 1.05rem; color: var(--text-muted); max-width: 46ch; margin: 0 0 1.75rem; }
.hero .cta-row { margin-bottom: 2rem; }
.hero.has-img {
  background:
    linear-gradient(100deg, rgba(11,19,16,0.93) 0%, rgba(11,19,16,0.78) 45%, rgba(11,19,16,0.55) 100%),
    radial-gradient(1200px 600px at 80% -10%, rgba(46, 168, 92, 0.28), transparent 60%),
    var(--hero-img) center/cover no-repeat;
}

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem;
  border-top: 1px solid var(--border); padding-top: 1.25rem; max-width: 620px;
}
.hero-stats div {
  font-family: var(--font-display);
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
}
.hero-stats div::before { content: "✓"; color: var(--brand); margin-right: 0.45rem; font-size: 0.8rem; font-weight: bold; }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--bg-raised);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.trust-bar ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.5rem; }
.trust-bar li {
  font-family: var(--font-display);
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.trust-bar li svg { width: 18px; height: 18px; color: var(--brand); flex: none; }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-raised-2) 0%, var(--bg-raised) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem 1.6rem;
  transition: transform .3s var(--easing), border-color .3s var(--easing), box-shadow .3s var(--easing);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transition: width .4s var(--easing);
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.card:hover::before { width: 100%; }
.card .icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(46, 168, 92, 0.12);
  color: var(--brand);
  margin-bottom: 1rem;
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 0.6rem; font-size: 1.2rem; }
.card p { color: var(--text-muted); margin: 0 0 1rem; font-size: 0.975rem; }
.card .card-link {
  font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap .2s ease;
}
.card .card-link:hover { gap: 0.7rem; }
.card .card-link::after { content: "→"; }

.cards.with-imgs .card { padding: 0; overflow: hidden; }
.cards.with-imgs .card .card-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.cards.with-imgs .card .card-body { padding: 1.5rem 1.5rem 1.6rem; }
.cards.with-imgs .card .icon {
  position: absolute; top: 1rem; left: 1rem; margin: 0;
  width: 44px; height: 44px;
  background: rgba(11, 19, 16, 0.88);
  backdrop-filter: blur(6px);
}
.cards.with-imgs .card .icon svg { width: 22px; height: 22px; }

/* ---------- Split ---------- */
.split {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.split .media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(46,168,92,0.20), rgba(244,185,66,0.06)),
    linear-gradient(180deg, #1a2820, #0d1612);
  border: 1px solid var(--border-strong);
}
.split .media img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.media-credit {
  position: absolute; bottom: 0.5rem; right: 0.6rem; z-index: 2;
  background: rgba(0, 0, 0, 0.55); color: rgba(255, 255, 255, 0.85);
  padding: 0.25rem 0.55rem; border-radius: 3px;
  font-size: 0.65rem; letter-spacing: 0.04em;
  font-family: var(--font-body);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}

.benefits { list-style: none; margin: 1.25rem 0 2rem; padding: 0; display: grid; gap: 0.85rem; }
.benefits li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--text); }
.benefits li::before {
  content: ""; flex: none; margin-top: 0.55rem;
  width: 10px; height: 10px;
  background: var(--brand); transform: rotate(45deg);
}

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; counter-reset: step; }
.step {
  background: var(--bg-raised-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 3.5rem; line-height: 1;
  color: var(--brand);
  opacity: 0.18;
  position: absolute; top: 1rem; right: 1.2rem;
}
.step h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.step p { color: var(--text-muted); margin: 0; font-size: 0.975rem; }

/* ---------- Urgent strip ---------- */
.urgent-strip {
  background: linear-gradient(95deg, var(--brand) 0%, var(--brand-dark) 100%);
  padding: 2.25rem 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.urgent-strip::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'><g fill='none' stroke='%23ffffff' stroke-opacity='0.08' stroke-width='1.5'><polyline points='0,160 200,80 400,140 600,60 800,130 1000,70 1200,120'/></g></svg>");
  background-size: cover; opacity: 0.8; pointer-events: none;
}
.urgent-strip .container { position: relative; z-index: 1; }
.urgent-strip h2 { color: #fff; margin-bottom: 0.5rem; font-size: clamp(1.5rem, 3vw, 2.25rem); }
.urgent-strip p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.urgent-strip .cta-row { justify-content: center; }
.urgent-strip .btn-primary { background: #fff; color: var(--brand-dark); box-shadow: 0 10px 24px -10px rgba(0,0,0,0.4); }
.urgent-strip .btn-primary:hover { background: #f4f4f4; }
.urgent-strip .btn-secondary { border-color: rgba(255,255,255,0.6); color: #fff; }
.urgent-strip .btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ---------- CTA block ---------- */
.cta-block {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(46, 168, 92, 0.20), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(244, 185, 66, 0.08), transparent 60%),
    var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-block .container { max-width: 760px; }
.cta-block p { color: var(--text-muted); font-size: 1.0625rem; margin-bottom: 2rem; }
.cta-block .cta-row { justify-content: center; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.review {
  background: var(--bg-raised-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  position: relative;
}
.review .stars { color: var(--accent); font-size: 1.05rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.review p { color: var(--text); font-size: 1rem; margin: 0 0 1.25rem; font-style: italic; }
.review .who-row { display: flex; align-items: center; gap: 0.85rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.review .avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
}
.review .who { font-size: 0.85rem; }
.review .who b { color: var(--text); font-weight: 600; display: block; font-family: var(--font-display); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.85rem; }
.review .who span { color: var(--text-muted); font-size: 0.82rem; }
.reviews-google {
  text-align: center; margin-top: 2rem;
  font-family: var(--font-display);
  letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 0.85rem; color: var(--text-muted);
}
.reviews-google b { color: var(--accent); }

/* ---------- Lead form ---------- */
.lead { background: var(--bg-raised); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lead-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.lead-grid .intro p { color: var(--text-muted); font-size: 1.0625rem; }
.lead-grid .intro ul { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.7rem; }
.lead-grid .intro li { display: flex; gap: 0.6rem; align-items: center; color: var(--text); font-size: 0.975rem; }
.lead-grid .intro li::before { content: "✓"; color: var(--brand); font-weight: bold; }

.form {
  background: var(--bg-raised-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.45rem;
}
.field input, .field select, .field textarea {
  background: var(--bg-deep);
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.95rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(46, 168, 92, 0.20);
}

.radios { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.radios label {
  flex: 1; min-width: 90px; text-align: center;
  background: var(--bg-deep);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  letter-spacing: 0.14em; cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.78rem; text-transform: uppercase;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.radios input { position: absolute; opacity: 0; pointer-events: none; }
.radios label:has(input:checked) {
  border-color: var(--brand);
  background: rgba(46, 168, 92, 0.12);
  color: var(--text);
}

.form .btn { margin-top: 0.5rem; }
.form .privacy { text-align: center; color: var(--text-dim); font-size: 0.82rem; margin: 1rem 0 0; }
.form .reassure {
  text-align: center; color: var(--text-muted); font-size: 0.88rem;
  margin: 1.25rem 0 0; padding-top: 1rem; border-top: 1px solid var(--border);
}

.form-success {
  display: none;
  background: rgba(46, 168, 92, 0.08);
  border: 1px solid var(--brand);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  margin-top: 1rem;
}
.form-success.show { display: block; }
.form-success h4 { color: var(--brand); margin-bottom: 0.5rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-display); letter-spacing: 0.06em; text-transform: uppercase;
  font-size: 1.05rem; color: var(--text);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand); }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; color: var(--brand);
  font-family: var(--font-body); font-weight: 300;
  transition: transform .25s ease; flex: none;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .ans { padding: 0 0 1.4rem; color: var(--text-muted); font-size: 1rem; max-width: 70ch; }

/* ---------- Service area list ---------- */
.area-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.5rem; margin-top: 2rem;
}
.area-list a {
  display: block;
  padding: 0.85rem 1rem;
  background: var(--bg-raised-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 0.85rem; color: var(--text);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.area-list a:hover { border-color: var(--brand); color: var(--brand); transform: translateX(3px); }
.area-list a::before { content: "→ "; color: var(--brand); }

/* ---------- Two-up audience split ---------- */
.audiences {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.audience {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex; align-items: flex-end;
  border: 1px solid var(--border-strong);
  background-size: cover; background-position: center;
}
.audience::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,19,16,0.3) 0%, rgba(11,19,16,0.92) 100%);
}
.audience .body { position: relative; z-index: 1; padding: 2rem 1.75rem; }
.audience h3 { margin-bottom: 0.5rem; }
.audience p { color: var(--text-muted); margin: 0 0 1.25rem; }

/* ---------- Footer ---------- */
.site-footer { background: #050B08; border-top: 1px solid var(--border); padding: 4rem 0 6rem; color: var(--text-muted); font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-grid h4 { font-size: 0.85rem; letter-spacing: 0.2em; color: var(--text); margin-bottom: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer-grid a:hover { color: var(--brand); }
.footer-tagline { font-family: var(--font-display); letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand); margin: 0.5rem 0 1rem; font-size: 0.95rem; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.82rem; color: var(--text-dim); }

/* ---------- Sticky mobile bottom bar ---------- */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(11, 19, 16, 0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-strong);
  padding: 0.75rem 0.75rem calc(0.75rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
}
.mobile-cta .btn { flex: 1; padding: 0.85rem 0.5rem; font-size: 0.82rem; }
.mobile-cta .btn-secondary { padding: calc(0.85rem - 2px) 0.5rem; }

/* ---------- Sub-page hero ---------- */
.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(46, 168, 92, 0.18), transparent 60%),
    linear-gradient(180deg, #0D1612, var(--bg-deep));
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-bottom: 0.5rem; }
.page-hero p { color: var(--text-muted); max-width: 720px; margin: 0 auto 1.5rem; font-size: 1.0625rem; }
.page-hero.has-img {
  background:
    linear-gradient(180deg, rgba(11,19,16,0.78) 0%, rgba(11,19,16,0.94) 100%),
    var(--hero-img) center/cover no-repeat;
}
.page-hero.has-img::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-glow), transparent);
}
.page-hero .cta-row { justify-content: center; }
.hero-credit {
  position: absolute; bottom: 0.75rem; right: 1rem; z-index: 2;
  background: rgba(0, 0, 0, 0.55); color: rgba(255, 255, 255, 0.85);
  padding: 0.25rem 0.6rem; border-radius: 3px;
  font-size: 0.65rem; letter-spacing: 0.04em;
  font-family: var(--font-body);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); }
.info-block {
  background: var(--bg-raised-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem; margin-bottom: 1rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.info-block .ico {
  width: 44px; height: 44px; flex: none;
  background: rgba(46, 168, 92, 0.12); color: var(--brand);
  border-radius: 10px; display: grid; place-items: center;
}
.info-block .ico svg { width: 22px; height: 22px; }
.info-block h4 { font-size: 0.78rem; letter-spacing: 0.2em; color: var(--text-muted); margin-bottom: 0.4rem; }
.info-block p { margin: 0; color: var(--text); font-size: 0.975rem; }
.info-block a { color: var(--brand); }

/* ---------- Pest-specific page bits ---------- */
.signs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.sign {
  padding: 1rem 1.25rem;
  background: var(--bg-raised-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}
.sign b { display: block; color: var(--brand); font-family: var(--font-display); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 0.25rem; }

/* ---------- PPC landing page ---------- */
.ppc-hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(180deg, rgba(11,19,16,0.92), rgba(11,19,16,0.98)),
    var(--hero-img, none) center/cover no-repeat;
  background-color: var(--bg-deep);
  border-bottom: 1px solid var(--border);
}
.ppc-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 2.5rem; align-items: start; }
.ppc-grid h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.ppc-call {
  background: var(--accent); color: #1a1a1a;
  font-family: var(--font-display);
  font-size: 1.4rem; letter-spacing: 0.05em;
  padding: 1rem 1.5rem; border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; gap: 0.6rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.ppc-call:hover { background: #E6A82A; }
.ppc-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.ppc-badges span {
  padding: 0.4rem 0.85rem;
  background: rgba(46, 168, 92, 0.12);
  border: 1px solid var(--brand);
  border-radius: 4px;
  font-family: var(--font-display);
  letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 0.78rem; color: var(--brand);
}

/* ---------- Utilities / responsive ---------- */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .steps, .split, .lead-grid, .contact-grid, .footer-grid, .audiences, .ppc-grid {
    grid-template-columns: 1fr;
  }
  .top-bar .badges { display: none; }
  .top-bar .container { justify-content: center; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: inline-flex; }
  .nav-cta { gap: 0.5rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-bar ul { gap: 1rem 1.5rem; }
  .trust-bar li { font-size: 0.75rem; letter-spacing: 0.14em; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 2rem; }
  body { padding-bottom: 72px; }
  .mobile-cta { display: flex; }
}

@media (max-width: 420px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .fade-in { opacity: 1; transform: none; }
}

/* =========================================================
   MOBILE OPTIMIZATION
   ========================================================= */

/* Better tap highlight + selection feel on touch devices */
html { -webkit-tap-highlight-color: rgba(46, 168, 92, 0.18); }
@media (hover: none) {
  .card:hover, .price-card:hover, .team:hover, .btn:hover, .audience:hover {
    transform: none;
  }
  .card:hover::before { width: 0; }
}

/* Prevent iOS auto-zoom on form fields (any input < 16px triggers it) */
@media (max-width: 760px) {
  .field input, .field select, .field textarea { font-size: 16px; }
  .radios label { font-size: 0.8rem; }
}

/* Hide the topbar on small screens — phone is already in the sticky bottom CTA */
@media (max-width: 760px) {
  .top-bar { display: none; }
}

/* Tighter header on mobile */
@media (max-width: 760px) {
  :root { --header-h: 56px; }
  .brand-logo { height: 36px; }
  .site-footer .brand-logo { height: 44px; }
  .brand-name { font-size: 0.85rem; letter-spacing: 0.08em; }
  .brand-name b { font-size: 0.58rem; letter-spacing: 0.16em; margin-top: 1px; }
  .brand-mark { width: 26px; height: 26px; }
  .nav-cta .btn { font-size: 0.72rem; padding: 0.55rem 0.9rem; }
}
@media (max-width: 420px) {
  .brand-logo { height: 30px; }
}

/* Compact hero on mobile, full-width CTAs */
@media (max-width: 760px) {
  .hero { padding: clamp(2rem, 7vw, 3rem) 0 clamp(2.5rem, 8vw, 3.5rem); }
  .hero h1 { max-width: none; }
  .hero .sub { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero .cta-row { width: 100%; gap: 0.6rem; }
  .hero .cta-row .btn { flex: 1 1 100%; width: 100%; }
  .hero-stats { gap: 0.85rem 1.5rem; padding-top: 1rem; }
  .hero-stats div { font-size: 0.7rem; letter-spacing: 0.12em; }
  .page-hero { padding: clamp(1.75rem, 5vw, 2.75rem) 0; }
  .page-hero .cta-row { flex-direction: column; width: 100%; gap: 0.6rem; }
  .page-hero .cta-row .btn { width: 100%; }
}

/* Section padding compacted for mobile */
@media (max-width: 760px) {
  section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
  .section-head { margin-bottom: 2rem; }
}

/* Trust bar — drop icons on small screens to keep items single-line */
@media (max-width: 600px) {
  .trust-bar { padding: 1rem 0; }
  .trust-bar ul { gap: 0.5rem 1.25rem; }
  .trust-bar li { font-size: 0.7rem; letter-spacing: 0.1em; }
  .trust-bar li svg { display: none; }
}

/* Mobile menu — bigger tap targets, sticky scrollable */
@media (max-width: 760px) {
  .mobile-menu { max-height: calc(100vh - 56px); overflow-y: auto; -webkit-overflow-scrolling: touch; padding-bottom: 2rem; }
  .mobile-menu a { padding: 0.95rem 0; font-size: 0.92rem; }
  .mobile-menu .group-label { padding-top: 1.25rem; }
  .mobile-menu .btn { padding: 1rem; font-size: 0.9rem; }
}

/* Cards tighter padding on small screens */
@media (max-width: 600px) {
  .card { padding: 1.4rem 1.25rem 1.3rem; }
  .card h3 { font-size: 1.1rem; }
  .card p { font-size: 0.9rem; }
  .cards { gap: 0.85rem; }
}

/* Process step numbers don't dominate small cards */
@media (max-width: 600px) {
  .step { padding: 1.5rem 1.25rem; }
  .step::before { font-size: 2.5rem; top: 0.75rem; right: 0.9rem; }
}

/* Lead form tighter on mobile */
@media (max-width: 600px) {
  .form { padding: 1.25rem 1rem; }
  .radios label { min-width: 70px; padding: 0.7rem 0.5rem; }
}

/* Footer compaction */
@media (max-width: 760px) {
  .site-footer { padding: 3rem 0 6rem; }
  .footer-grid { gap: 1.75rem; }
  .footer-grid h4 { font-size: 0.78rem; }
  .footer-grid ul { gap: 0.5rem; }
  .footer-grid li, .footer-grid a { font-size: 0.88rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; font-size: 0.75rem; }
}

/* Sticky mobile CTA — bigger, easier to thumb */
@media (max-width: 760px) {
  .mobile-cta { padding: 0.75rem 0.6rem calc(0.75rem + env(safe-area-inset-bottom)); gap: 0.5rem; }
  .mobile-cta .btn { padding: 0.95rem 0.4rem; font-size: 0.85rem; letter-spacing: 0.06em; }
  body { padding-bottom: 84px; }
}

/* Reviews / testimonials — single column with comfortable spacing */
@media (max-width: 600px) {
  .review { padding: 1.4rem 1.25rem; }
  .review p { font-size: 0.95rem; }
}

/* Split sections — flip so content comes before media on small screens */
@media (max-width: 960px) {
  .split { gap: 1.5rem; }
  .split .media { aspect-ratio: 16 / 10; max-height: 320px; }
}

/* PPC landing hero — stack form below copy with breathing room */
@media (max-width: 960px) {
  .ppc-grid { gap: 1.5rem; }
  .ppc-call { font-size: 1.1rem; padding: 0.85rem 1.1rem; }
  .ppc-badges { gap: 0.5rem; }
  .ppc-badges span { font-size: 0.7rem; padding: 0.35rem 0.7rem; }
}

/* Area list — better wrap on tiny screens */
@media (max-width: 420px) {
  .area-list { grid-template-columns: 1fr 1fr; gap: 0.4rem; }
  .area-list a { font-size: 0.78rem; padding: 0.75rem 0.85rem; }
}

/* Audiences split cards — keep readable on mobile */
@media (max-width: 760px) {
  .audience { min-height: 280px; }
  .audience .body { padding: 1.5rem 1.25rem; }
}

/* Hide hero credit caption on very small screens — avoids overlap with CTAs */
@media (max-width: 480px) {
  .hero-credit { font-size: 0.6rem; padding: 0.2rem 0.45rem; bottom: 0.5rem; right: 0.5rem; }
}
