/* ============================================================
   NoMore Pest — professional pest-control identity
   Direction: clean, trustworthy, green-forward corporate.
   Display: Plus Jakarta Sans / Body: Inter
   Brand green matches the client's existing logo & CTA colour.
   ============================================================ */

:root {
  --brand: #3CB14A;        /* logo kelly green */
  --brand-dark: #2B8A3A;
  --brand-deeper: #0E3A1F;
  --lime: #7AC240;         /* logo lime accent */
  --ink: #16241D;
  --ink-soft: #45564C;
  --muted: #6B7A70;
  --bg: #FFFFFF;
  --bg-soft: #F2F8F1;
  --bg-tint: #E4F4E0;
  --line: #E1E8E0;
  --accent: #F6A623;      /* used sparingly: review stars, tiny highlights */
  --white: #FFFFFF;

  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 14px -8px rgba(12, 61, 36, 0.25);
  --shadow-md: 0 14px 40px -18px rgba(12, 61, 36, 0.3);
  --shadow-lg: 0 26px 60px -24px rgba(12, 61, 36, 0.4);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.14;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.3rem, 4.4vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--brand-deeper); color: var(--white); padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

.eyebrow {
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); font-weight: 700; display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--brand); display: inline-block; }
.center .eyebrow { justify-content: center; }

.lede { font-size: 1.06rem; max-width: 60ch; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 99px;
  font-weight: 600; font-size: .93rem; border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: var(--white); box-shadow: 0 8px 20px -10px rgba(60,177,74,.7); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-dark { background: var(--brand-deeper); color: var(--white); }
.btn-dark:hover { background: var(--ink); }
.btn-outline { border-color: var(--brand); color: var(--brand-dark); background: transparent; }
.btn-outline:hover { background: var(--brand); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,.5); color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-light:hover { background: var(--white); color: var(--brand-dark); border-color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { border-radius: 8px; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.22rem; color: var(--ink); letter-spacing: -0.02em; }
.brand-name span { color: var(--brand); }

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-size: .93rem; font-weight: 500; color: var(--ink-soft);
  padding: 6px 0; position: relative; transition: color .15s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--brand); transition: width .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--brand-dark); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-pill {
  display: flex; align-items: center; gap: 7px;
  font-size: .84rem; font-weight: 600; color: var(--brand-dark);
  border: 1px solid var(--line); border-radius: 99px; padding: 9px 15px;
}
.phone-pill:hover { border-color: var(--brand); background: var(--bg-soft); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

.mobile-nav {
  display: none; flex-direction: column; padding: 10px 24px 20px;
  border-top: 1px solid var(--line); background: var(--white);
}
.mobile-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.mobile-nav .mobile-call { color: var(--brand); font-weight: 700; border-bottom: none; }
.site-header.menu-open .mobile-nav { display: flex; }

/* ---------- Hero slider ---------- */
.hero {
  position: relative; width: 100%; height: 760px; max-height: 90vh; min-height: 620px;
  overflow: hidden; color: var(--white); background: var(--brand-deeper);
}
.hero-slider { position: absolute; inset: 0; z-index: 1; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 9s ease-out both; }
.hero-slide.active img { animation: kenburns 9s ease-out both; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,45,27,.93) 0%, rgba(9,45,27,.8) 40%, rgba(9,45,27,.45) 72%, rgba(9,45,27,.25) 100%);
}

.hero-content { position: relative; z-index: 3; height: 100%; display: flex; align-items: center; width: 100%; }
.hero-content > .container { width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; width: 100%; }

.hero-copy .crumb {
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: #8FE3B4;
  font-weight: 700; display: inline-block; margin-bottom: 18px;
}
.hero-copy h1 { color: var(--white); }
.hero-copy .lede { color: rgba(255,255,255,.9); font-size: 1.1rem; max-width: 46ch; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.hero-badge {
  font-size: .82rem; font-weight: 600; display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24);
  padding: 8px 15px; border-radius: 99px; color: var(--white);
}
.hero-badge::before { content: "✓"; color: #8FE3B4; font-weight: 700; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-dots { position: absolute; z-index: 4; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dot { width: 9px; height: 9px; border-radius: 99px; background: rgba(255,255,255,.4); border: none; padding: 0; transition: background .2s, width .2s; }
.hero-dot.active { background: var(--white); width: 26px; }
.hero-arrow {
  position: absolute; z-index: 4; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35);
  background: rgba(9,45,27,.4); color: var(--white); font-size: .85rem;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.hero-arrow:hover { background: rgba(9,45,27,.75); }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

/* ---------- Hero quote card ---------- */
.hero-quote-card {
  background: var(--white); color: var(--ink); border-radius: var(--radius-lg);
  padding: 0; box-shadow: var(--shadow-lg); overflow: hidden; max-height: 84vh; display: flex; flex-direction: column;
}
.hero-quote-card .card-head { background: var(--brand); color: var(--white); padding: 20px 28px; }
.hero-quote-card .card-head h2 { color: var(--white); font-size: 1.3rem; margin-bottom: 2px; }
.hero-quote-card .card-head .sub { font-size: .84rem; color: rgba(255,255,255,.9); margin: 0; }
.hero-quote-card .quote-form { padding: 22px 28px 26px; overflow-y: auto; }

.quote-form .field { margin-bottom: 13px; }
.quote-form label { display: block; font-size: .78rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-soft); font-family: inherit; font-size: .92rem; color: var(--ink); transition: border-color .15s, background .15s;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--brand); background: var(--white); }
.quote-form textarea { min-height: 88px; resize: vertical; }
.form-note { font-size: .76rem; color: var(--muted); text-align: center; margin: 12px 0 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }

.form-success { text-align: center; padding: 34px 24px; }
.form-success .check {
  width: 52px; height: 52px; border-radius: 50%; background: var(--brand); color: var(--white);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.4rem;
}
.form-success h3 { margin-bottom: 6px; }
.form-success p { margin: 0; }

/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 30px; justify-content: center;
  background: var(--brand-deeper); color: rgba(255,255,255,.92); padding: 18px 24px;
}
.trust-strip li { display: flex; align-items: center; gap: 9px; font-size: .88rem; font-weight: 500; }
.trust-strip svg { color: #8FE3B4; flex-shrink: 0; }

/* ---------- Sections ---------- */
section { padding: 90px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 660px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }
.center-cta { text-align: center; margin-top: 44px; }

.area-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.center .area-chip-row { justify-content: center; }
.area-chip {
  font-size: .8rem; font-weight: 600; color: var(--brand-dark);
  background: var(--white); border: 1px solid var(--line); padding: 7px 15px; border-radius: 99px;
}

/* ---------- Services grid (professional image cards) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.svc-card:hover .svc-media img { transform: scale(1.06); }
.svc-num {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  background: rgba(9,45,27,.78); color: var(--white); padding: 5px 11px; border-radius: 99px;
}
.svc-flag {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: .72rem; font-weight: 700; background: var(--accent); color: #3a2a06; padding: 5px 11px; border-radius: 99px;
}
.svc-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-tag { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); font-weight: 700; margin-bottom: 6px; }
.svc-body h3 { margin-bottom: 9px; }
.svc-body p { font-size: .92rem; margin-bottom: 16px; flex: 1; }
.svc-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: auto; }
.svc-link { color: var(--brand-dark); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; background: none; border: none; padding: 0; }
.svc-link:hover { color: var(--brand); gap: 9px; }
.svc-checks { margin: 0 0 14px; }
.svc-checks li { display: flex; align-items: flex-start; gap: 8px; font-size: .88rem; color: var(--ink-soft); padding: 3px 0; }
.svc-checks li::before { content: "✓"; color: var(--brand); font-weight: 700; }

/* ---------- Pests grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.pest-card { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3.4; display: block; box-shadow: var(--shadow-sm); }
.pest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.pest-card:hover img { transform: scale(1.07); }
.pest-card .overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px; background: linear-gradient(0deg, rgba(9,45,27,.9), rgba(9,45,27,0) 62%); color: var(--white);
}
.pest-card .eyebrow { color: #8FE3B4; margin-bottom: 4px; }
.pest-card .eyebrow::before { display: none; }
.pest-name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; }
.pest-sub { font-size: .8rem; color: rgba(255,255,255,.82); }

/* ---------- Service cards (bottom offerings) ---------- */
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.service-card .photo { aspect-ratio: 4/2.7; overflow: hidden; }
.service-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.service-card .body { padding: 22px 24px 26px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: .92rem; margin-bottom: 14px; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { font-size: .7rem; letter-spacing: .05em; font-weight: 600; background: var(--bg-tint); color: var(--brand-dark); padding: 5px 11px; border-radius: 6px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding: 26px 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border-radius: 50%; background: var(--bg-tint); color: var(--brand-dark); font-weight: 800; font-size: .95rem; margin-bottom: 14px;
}
.step h3 { font-size: 1.06rem; margin-bottom: 8px; }
.step p { font-size: .9rem; margin: 0; }

/* ---------- Split / why us ---------- */
.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.rel { position: relative; }
.img-round { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.img-round img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.badge-float {
  position: absolute; bottom: -22px; right: -18px; background: var(--white);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 15px 19px;
  display: flex; align-items: center; gap: 12px; max-width: 250px; border: 1px solid var(--line);
}
.icon-tile { width: 42px; height: 42px; border-radius: 11px; background: var(--brand); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.badge-float strong { display: block; font-size: .9rem; }
.badge-float span { font-size: .76rem; color: var(--muted); }
.check-list { margin: 0 0 20px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; color: var(--ink-soft); font-size: .96rem; }
.check-list li::before { content: "✓"; color: var(--brand); font-weight: 700; flex-shrink: 0; }

/* ---------- Testimonials ---------- */
.testi-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; margin: 0; box-shadow: var(--shadow-sm); }
.testi-stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; }
.testi-card blockquote { margin: 0 0 18px; font-size: .96rem; color: var(--ink-soft); }
.testi-who { display: flex; align-items: center; gap: 11px; font-size: .86rem; font-weight: 600; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--brand); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .84rem; font-weight: 700; flex-shrink: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--brand-deeper); color: var(--white); border-radius: var(--radius-lg);
  padding: 50px; display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(31,146,84,.5), transparent 70%); border-radius: 50%;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,.85); margin: 0; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Quote slide-over ---------- */
.quote-overlay { position: fixed; inset: 0; background: rgba(9,45,27,.55); z-index: 150; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.quote-overlay.active { opacity: 1; pointer-events: auto; }
.quote-panel {
  position: fixed; top: 0; right: 0; height: 100%; width: min(430px, 92vw);
  background: var(--white); z-index: 160; box-shadow: -18px 0 40px rgba(9,45,27,.25);
  transform: translateX(100%); transition: transform .3s ease; overflow-y: auto;
}
.quote-panel.active { transform: translateX(0); }
.quote-panel-head { padding: 30px 28px 12px; position: relative; background: var(--brand); color: var(--white); }
.quote-panel-head h2 { font-size: 1.3rem; margin-bottom: 6px; color: var(--white); }
.quote-panel-head p { font-size: .88rem; margin: 0; color: rgba(255,255,255,.9); }
.quote-panel form { padding: 22px 28px 30px; }
.quote-close { position: absolute; top: 20px; right: 22px; background: rgba(255,255,255,.2); border: none; width: 34px; height: 34px; border-radius: 50%; font-size: 1.2rem; color: var(--white); line-height: 1; }
.quote-close:hover { background: rgba(255,255,255,.35); }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-deeper); color: rgba(255,255,255,.78); padding: 66px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-name span { color: #8FE3B4; }
.footer-brand p { color: rgba(255,255,255,.68); font-size: .88rem; margin-top: 14px; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: var(--white); }
.social-row a:hover { background: var(--brand); }
.footer-col { display: flex; flex-direction: column; gap: 11px; font-style: normal; }
.footer-col h4 { color: var(--white); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.72); }
.footer-col a:hover { color: #8FE3B4; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.55); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero { height: auto; min-height: 0; max-height: none; padding: 108px 0 60px; }
  .hero-content { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-dots, .hero-arrow { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .badge-float { right: 12px; }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .svc-grid, .grid-3, .grid-4, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 32px; }
  .trust-strip { gap: 16px; }
  .phone-pill span { display: none; }
}
/* ============================================================
   Inner-page components  (added in cleanup / consistency pass)
   These support About, Services, Pests, FAQ and Contact pages
   so every page shares one design system with the homepage.
   ============================================================ */

/* Token aliases — older inner pages referenced these names */
:root {
  --green: var(--brand);
  --green-pale: var(--bg-tint);
  --paper-dim: var(--bg-soft);
  --steel: var(--muted);
}

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--brand-deeper);
  color: var(--white);
  padding: clamp(96px, 12vw, 150px) 0 clamp(72px, 9vw, 110px);
}
.page-hero .hero-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .38;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(700px 380px at 85% 8%, rgba(122,194,64,.20), transparent 60%),
    linear-gradient(180deg, rgba(14,58,31,.55) 0%, rgba(14,58,31,.2) 45%, rgba(14,58,31,.88) 100%);
}
.page-hero .container { position: relative; z-index: 2; max-width: 840px; }
.page-hero h1 em { font-style: normal; color: var(--lime); }
@keyframes heroUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.page-hero .crumb, .page-hero h1, .page-hero .lede { animation: heroUp .7s ease both; }
.page-hero h1 { animation-delay: .08s; }
.page-hero .lede { animation-delay: .16s; }
@media (prefers-reduced-motion: reduce) { .page-hero .crumb, .page-hero h1, .page-hero .lede { animation: none; } }
.page-hero .crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--white); font-weight: 700; margin-bottom: 18px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(4px); padding: 7px 16px; border-radius: 99px;
}
.page-hero .crumb::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.page-hero h1 { color: var(--white); margin-bottom: .35em; }
.page-hero .lede { color: rgba(255,255,255,.9); max-width: 62ch; }

/* Decorative ring */
.orbit-ring {
  position: absolute; z-index: 1; opacity:.8; width: 520px; height: 520px; right: -150px; top: -170px;
  border: 1.5px solid rgba(255,255,255,.14); border-radius: 50%; pointer-events: none;
}
.orbit-ring::after {
  content: ""; position: absolute; inset: 64px; border: 1.5px solid rgba(255,255,255,.10); border-radius: 50%;
}
.rel .orbit-ring { border-color: rgba(60,177,74,.20); }
.rel .orbit-ring::after { border-color: rgba(60,177,74,.14); }

/* ---------- Generic card ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: 8px; }
.card .icon-tile { margin-bottom: 14px; }
.num { font-family: var(--font-display); font-weight: 800; color: var(--brand); line-height: 1; }

/* ---------- Pests: overlay text variant + value rows ---------- */
.pest-card .overlay h3 { color: var(--white); font-family: var(--font-display); font-size: 1.12rem; margin: 0 0 2px; }
.pest-card .overlay p { color: rgba(255,255,255,.82); font-size: .8rem; margin: 0; }
.pest-card .overlay .eyebrow { color: #8FE3B4; margin-bottom: 4px; }
.pest-card .overlay .eyebrow::before { display: none; }

.value-row { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.value-row:last-child { border-bottom: none; }
.value-row .n {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--brand);
  background: var(--bg-tint); width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ---------- FAQ accordion ---------- */
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-md); margin-bottom: 12px;
  background: var(--white); overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: none; border: none; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink);
  transition: color .15s;
}
.faq-q:hover { color: var(--brand-dark); }
.faq-q .plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--brand); border-radius: 2px; transition: transform .2s ease;
}
.faq-q .plus::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq-q .plus::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item.open .faq-q .plus::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 420px; padding-bottom: 18px; }
.faq-a p { margin: 0; color: var(--ink-soft); font-size: .94rem; }

/* ---------- Contact ---------- */
.contact-card { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact-card:last-of-type { border-bottom: none; }
.contact-card .ic {
  width: 44px; height: 44px; border-radius: 12px; background: var(--bg-tint); color: var(--brand-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card h4 { margin: 0 0 2px; font-size: .95rem; }
.contact-card p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.map-embed {
  border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 640px) {
  .page-hero { padding: 76px 0 56px; }
  .orbit-ring { width: 340px; height: 340px; right: -120px; top: -120px; }
}

/* ============================================================
   Logo-only header, dual phone numbers, home carousel,
   footer developer credit  (added in this update)
   ============================================================ */

/* Logo-only header */
.brand-logo { height: 46px; width: auto; display: block; }
@media (max-width: 480px) { .brand-logo { height: 38px; } }

/* Dual phone numbers in header */
.header-phones {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 99px; padding: 8px 15px;
  font-size: .85rem; font-weight: 600; color: var(--brand-dark);
}
.header-phones svg { color: var(--brand); flex-shrink: 0; }
.header-phones a { color: var(--brand-dark); white-space: nowrap; }
.header-phones a:hover { color: var(--brand); }
.header-phones .phone-sep { color: var(--line); }
@media (max-width: 1150px) { .header-phones { display: none; } }

/* Footer developer credit */
.dev-credit { color: #8FE3B4; font-weight: 600; }
.dev-credit:hover { text-decoration: underline; }

/* ---------- Home pest carousel ---------- */
.pest-slider-section {
  position: relative; background: var(--brand-deeper); padding: 84px 0; overflow: hidden;
}
.pest-slider-section .section-title {
  text-align: center; color: var(--white); font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; margin: 0 auto 46px;
}
.pest-slider-section .section-title span { color: #8FE3B4; }
.pest-slider-container {
  width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 62px; overflow: hidden; position: relative;
}
.pest-slider-track { display: flex; width: max-content; }
.pest-slide {
  flex: 0 0 auto; width: 220px; margin: 0 12px; text-align: center; padding: 24px 16px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.pest-slide:hover { transform: translateY(-8px); background: rgba(255,255,255,.1); border-color: var(--brand); }
.pest-image {
  width: 120px; height: 120px; margin: 0 auto 16px; border-radius: 50%; overflow: hidden;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
}
.pest-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pest-icon { font-size: 56px; line-height: 1; }
.pest-heading {
  color: var(--white); font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin: 0 0 18px;
}
.call-now-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  padding: 11px 20px; background: var(--brand); color: var(--white); border: 2px solid var(--brand);
  border-radius: 99px; font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .4px; cursor: pointer; transition: all .2s ease;
}
.call-now-btn:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px;
  background: var(--brand); border: 2px solid var(--brand); border-radius: 50%; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center; color: var(--white); transition: all .2s ease;
}
.slider-arrow:hover { background: transparent; color: #8FE3B4; }
.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }
.slider-arrow svg { width: 22px; height: 22px; fill: currentColor; }
@media (max-width: 768px) {
  .pest-slider-section { padding: 54px 0; }
  .pest-slider-container { padding: 0 46px; }
  .pest-slide { width: 176px; margin: 0 8px; padding: 18px 12px; }
  .pest-image { width: 94px; height: 94px; }
  .pest-heading { font-size: 1rem; }
  .slider-arrow { width: 38px; height: 38px; }
  .slider-arrow.prev { left: 4px; } .slider-arrow.next { right: 4px; }
}


/* ---------- Modern polish (logo-green refresh) ---------- */
.card, .service-card, .pest-card, .testi-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover, .service-card:hover, .testi-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md);
}
.service-card .photo { overflow: hidden; }
.service-card .photo img, .pest-card img { transition: transform .5s ease; }
.service-card:hover .photo img, .pest-card:hover img { transform: scale(1.06); }
.btn-primary:hover { box-shadow: 0 12px 26px -10px rgba(60,177,74,.75); }
::selection { background: var(--lime); color: var(--brand-deeper); }
@media (prefers-reduced-motion: reduce) {
  .card, .service-card, .pest-card, .testi-card,
  .service-card .photo img, .pest-card img { transition: none; }
}

/* ============================================================
   SERVICE DETAIL PAGES (residential, commercial, termite, etc.)
   Reusable modules — logo-green + amber accent
   ============================================================ */
.svcpage{--acc:var(--brand);--acc-ink:var(--brand-deeper);}
.svcpage-lead{padding:clamp(48px,6vw,80px) 0}
.svcpage-lead .container{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(28px,5vw,56px);align-items:center}
.svcpage-lead .lead-copy .eyebrow{margin-bottom:14px}
.svcpage-lead h2{font-size:clamp(1.7rem,3.2vw,2.4rem);margin-bottom:16px}
.svcpage-lead p{color:var(--ink-soft);line-height:1.7}
.svcpage-lead .lead-media{position:relative}
.svcpage-lead .lead-media img{width:100%;border-radius:var(--radius-lg);box-shadow:var(--shadow-md);aspect-ratio:4/3;object-fit:cover}
.lead-badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.lead-badge{display:inline-flex;align-items:center;gap:8px;font-size:.86rem;font-weight:600;color:var(--brand-deeper);background:var(--bg-tint);border:1px solid var(--line);border-radius:99px;padding:8px 15px}
.lead-badge svg{color:var(--brand);flex:none}

/* quick-fact chip row under hero */
.svc-quickbar{background:var(--brand-deeper);color:#fff}
.svc-quickbar .container{display:flex;flex-wrap:wrap;justify-content:center;gap:14px 34px;padding:22px 24px}
.svc-quickbar span{display:inline-flex;align-items:center;gap:9px;font-size:.9rem;font-weight:600}
.svc-quickbar svg{color:var(--accent);flex:none}

/* feature / coverage grid */
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(16px,2vw,22px)}
.feature-grid.cols-2{grid-template-columns:repeat(2,1fr)}
.fcard{background:#fff;border:1px solid var(--line);border-radius:var(--radius-md);padding:26px 24px;box-shadow:var(--shadow-sm);transition:transform .25s ease,box-shadow .25s ease}
.fcard:hover{transform:translateY(-5px);box-shadow:var(--shadow-md)}
.fcard .fico{width:46px;height:46px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:var(--bg-tint);color:var(--brand-dark);margin-bottom:16px}
.fcard h3{font-size:1.08rem;margin-bottom:8px}
.fcard p{color:var(--ink-soft);font-size:.92rem;line-height:1.6;margin:0}
.fcard .emoji{font-size:1.5rem;line-height:1;margin-bottom:12px;display:block}

/* two-column check lists */
.check-cols{display:grid;grid-template-columns:1fr 1fr;gap:12px 28px}
.check-cols li{display:flex;gap:11px;align-items:flex-start;color:var(--ink);line-height:1.5;font-size:.96rem}
.check-cols li::before{content:"✓";flex:none;width:22px;height:22px;margin-top:1px;border-radius:50%;background:var(--brand);color:#fff;display:inline-flex;align-items:center;justify-content:center;font-size:.72rem;font-weight:900}

/* numbered process */
.proc-flow{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(14px,2vw,20px);counter-reset:pf}
.proc-step{position:relative;background:#fff;border:1px solid var(--line);border-radius:var(--radius-md);padding:28px 22px 24px;box-shadow:var(--shadow-sm)}
.proc-step .pfn{counter-increment:pf;width:42px;height:42px;border-radius:12px;background:var(--brand-deeper);color:var(--accent);display:inline-flex;align-items:center;justify-content:center;font-family:var(--font-display);font-weight:800;margin-bottom:14px}
.proc-step .pfn::before{content:counter(pf)}
.proc-step h3{font-size:1.02rem;margin-bottom:7px}
.proc-step p{color:var(--ink-soft);font-size:.9rem;line-height:1.55;margin:0}

/* species / info cards with image */
.spec-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(16px,2vw,22px)}
.spec-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;transition:transform .25s ease,box-shadow .25s ease}
.spec-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md)}
.spec-card .spec-img{aspect-ratio:4/3;overflow:hidden;background:var(--bg-soft)}
.spec-card .spec-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.spec-card:hover .spec-img img{transform:scale(1.06)}
.spec-card .spec-body{padding:20px 20px 22px;flex:1;display:flex;flex-direction:column}
.spec-card h3{font-size:1.05rem;margin-bottom:6px}
.spec-card .sci{font-style:italic;color:var(--muted);font-size:.82rem;margin-bottom:10px}
.spec-card p{color:var(--ink-soft);font-size:.9rem;line-height:1.55;margin:0}
.spec-card .spec-meta{list-style:none;padding:0;margin:0 0 4px;display:grid;gap:5px}
.spec-card .spec-meta li{font-size:.85rem;color:var(--ink-soft)}
.spec-card .spec-meta b{color:var(--ink)}
.spec-tagline{display:inline-block;font-size:.7rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:var(--accent-ink,#8a5a00);background:#FFF3DC;border:1px solid #F3D98F;border-radius:99px;padding:4px 10px;margin-bottom:10px}

/* comparison table */
.cmp-table{width:100%;border-collapse:collapse;background:#fff;border:1px solid var(--line);border-radius:var(--radius-md);overflow:hidden;font-size:.93rem}
.cmp-table th,.cmp-table td{padding:13px 16px;text-align:left;border-bottom:1px solid var(--line)}
.cmp-table thead th{background:var(--brand-deeper);color:#fff;font-family:var(--font-display);font-weight:700}
.cmp-table tbody tr:last-child td{border-bottom:0}
.cmp-table tbody tr:nth-child(even){background:var(--bg-soft)}
.cmp-table td:first-child{font-weight:600;color:var(--ink)}

/* warning / alert callout */
.callout{border-radius:var(--radius-md);padding:20px 24px;margin-top:8px;display:flex;gap:14px;align-items:flex-start;line-height:1.6;font-size:.95rem}
.callout svg{flex:none;margin-top:2px}
.callout-warn{background:#FFF6E5;border:1px solid #F3D98F;color:#6b4e13}
.callout-warn svg{color:#E0A106}
.callout-info{background:var(--bg-tint);border:1px solid var(--line);color:var(--brand-deeper)}
.callout-info svg{color:var(--brand-dark)}

/* alt-band section */
.band{background:var(--bg-soft)}
.band-dark{background:var(--brand-deeper);color:#fff}
.band-dark h2{color:#fff}
.band-dark .lede{color:rgba(255,255,255,.85)}

/* FAQ accordion (self-contained) */
.svc-faq{max-width:820px;margin-inline:auto}
.faq-item{background:#fff;border:1px solid var(--line);border-radius:var(--radius-md);margin-bottom:12px;overflow:hidden}
.faq-q{width:100%;text-align:left;background:none;border:0;padding:18px 22px;font-family:var(--font-display);font-weight:700;font-size:1rem;color:var(--ink);display:flex;justify-content:space-between;align-items:center;gap:16px;cursor:pointer}
.faq-q .fqi{flex:none;transition:transform .25s ease;color:var(--brand)}
.faq-item.open .faq-q .fqi{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease}
.faq-a p{padding:0 22px 20px;color:var(--ink-soft);line-height:1.65;margin:0}
.faq-item.open .faq-a{max-height:400px}

/* areas served pills */
.area-pills{display:flex;flex-wrap:wrap;gap:10px;justify-content:center}
.area-pills li{background:#fff;border:1px solid var(--line);border-radius:99px;padding:9px 18px;font-weight:600;font-size:.9rem;color:var(--brand-dark)}
.band-dark .area-pills li{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.2);color:#fff}

@media (max-width:960px){
  .svcpage-lead .container{grid-template-columns:1fr}
  .feature-grid,.spec-grid{grid-template-columns:repeat(2,1fr)}
  .proc-flow{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:600px){
  .feature-grid,.feature-grid.cols-2,.spec-grid,.proc-flow,.check-cols{grid-template-columns:1fr}
  .cmp-table{font-size:.84rem}
  .cmp-table th,.cmp-table td{padding:10px 11px}
}

/* ============================================================
   Blog — listing & article pages
   ============================================================ */
.page-hero.blogpage { background: linear-gradient(135deg, var(--brand-deeper), #14532A); }
.post-meta { display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-top:18px; color:rgba(255,255,255,.85); font-size:.9rem; animation:heroUp .7s ease .24s both; }
@media (prefers-reduced-motion: reduce){ .post-meta{animation:none;} }

.blog-list { padding: clamp(48px,6vw,80px) 0; }
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:clamp(20px,3vw,32px); }
.blog-card { display:flex; flex-direction:column; background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; text-decoration:none; color:inherit; box-shadow:var(--shadow-sm); transition:transform .25s ease, box-shadow .25s ease; }
.blog-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.blog-card-img { position:relative; aspect-ratio:16/10; overflow:hidden; }
.blog-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.blog-card:hover .blog-card-img img { transform:scale(1.05); }
.blog-tag { position:absolute; top:12px; left:12px; background:var(--brand); color:#fff; font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:5px 11px; border-radius:999px; }
.blog-card-body { padding:22px 22px 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.blog-card-body time { font-size:.82rem; color:var(--muted); font-weight:600; text-transform:uppercase; letter-spacing:.05em; }
.blog-card-body h2 { font-size:1.15rem; line-height:1.35; margin:0; }
.blog-card-body p { margin:0; color:var(--ink-soft); font-size:.94rem; line-height:1.6; flex:1; }
.blog-readmore { color:var(--brand-dark); font-weight:700; font-size:.9rem; }
.blog-card:hover .blog-readmore { text-decoration:underline; }

.blog-article { padding: clamp(44px,5.5vw,72px) 0 clamp(56px,7vw,90px); }
.blog-container { max-width: 800px; }
.blog-article p { color:var(--ink-soft); line-height:1.78; margin:0 0 1.15em; font-size:1.02rem; }
.blog-article h2 { margin:1.8em 0 .6em; font-size:clamp(1.45rem,2.6vw,1.9rem); }
.blog-article h3 { margin:1.4em 0 .5em; font-size:1.18rem; color:var(--brand-deeper); }
.blog-article ul { margin:0 0 1.3em; padding-left:1.25em; color:var(--ink-soft); }
.blog-article ul li { margin-bottom:.55em; line-height:1.7; }
.blog-article ul li::marker { color:var(--brand); }
.blog-article a { color:var(--brand-dark); font-weight:600; text-decoration:underline; text-decoration-color:rgba(60,177,74,.4); text-underline-offset:3px; }
.blog-article a:hover { text-decoration-color:var(--brand-dark); }
.blog-article strong { color:var(--ink); }
.blog-cta { margin-top:clamp(40px,5vw,56px); background:linear-gradient(135deg,var(--brand-deeper),#1B5E33); border-radius:var(--radius-lg); padding:clamp(30px,4.5vw,48px); text-align:center; box-shadow:var(--shadow-md); }
.blog-cta h2 { color:#fff; margin:0 0 .4em; font-size:clamp(1.35rem,2.6vw,1.8rem); }
.blog-cta p { color:rgba(255,255,255,.88); max-width:56ch; margin:0 auto 22px; }
.blog-cta a { color:#fff; }
.blog-back { margin-top:32px; }
.blog-back a { color:var(--brand-dark); font-weight:700; text-decoration:none; }
.blog-back a:hover { text-decoration:underline; }

/* ---- Bedbug educational page extras ---- */
.info-split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(24px,4vw,48px);align-items:center}
.info-split.rev{direction:rtl}.info-split.rev>*{direction:ltr}
.info-split .fig{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg,18px);
  box-shadow:var(--shadow-md);padding:clamp(16px,2.5vw,28px);
  display:flex;align-items:center;justify-content:center;
}
.info-split .fig img{
  width:100%;max-width:460px;height:auto;object-fit:contain;
  border-radius:8px;display:block;
}
.info-split figcaption{margin-top:12px;text-align:center;font-size:.82rem;color:var(--muted);font-style:italic}
.info-split h3{font-size:clamp(1.2rem,2vw,1.5rem);margin-bottom:12px}
.info-split p{color:var(--ink-soft);line-height:1.7;margin-bottom:12px}
.info-split ul{list-style:none;padding:0;display:grid;gap:9px}
.info-split ul li{display:flex;gap:10px;align-items:flex-start;color:var(--ink);line-height:1.5}
.info-split ul li::before{content:"";flex:none;width:8px;height:8px;margin-top:8px;border-radius:50%;background:var(--brand)}
@media (max-width:820px){.info-split{grid-template-columns:1fr}.info-split.rev{direction:ltr}}
.mini-note{font-size:.82rem;color:var(--muted);text-align:center;margin-top:10px;font-style:italic}

/* ============================================================
   HOME-PAGE SECTION STYLES (merged from index.html)
   ============================================================ */
.svc-section{
  --spruce:#10312B; --spruce-soft:#1C4A3F;
  --mint:#EDF4EF; --card:#FFFFFF;
  --ink:#182420; --ink-soft:#4C5F58;
  --amber:#F2A007; --amber-ink:#5C3B00;
  --line:#D8E4DC; --radius:20px;
  --shadow:0 1px 2px rgba(16,49,43,.06),0 12px 32px -12px rgba(16,49,43,.18);
  --shadow-hover:0 2px 4px rgba(16,49,43,.08),0 24px 48px -12px rgba(16,49,43,.28);
  --font-display:"Sora","Segoe UI",system-ui,sans-serif;
  --font-body:"Inter",system-ui,-apple-system,sans-serif;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(242,160,7,.10), transparent 60%),
    var(--mint);
  padding:clamp(64px,8vw,112px) 0;
  font-family:var(--font-body);
  color:var(--ink);
}
.svc-section *{box-sizing:border-box;margin:0}
.svc-container{max-width:1180px;margin-inline:auto;padding-inline:clamp(16px,4vw,32px)}

/* Section head */
.svc-head{max-width:680px;margin:0 auto clamp(20px,3vw,28px);text-align:center}
.svc-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.78rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--spruce-soft);
  padding:6px 14px;border:1px solid var(--line);border-radius:999px;background:#fff;
}
.svc-eyebrow::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--amber)}
.svc-head h2{
  font-family:var(--font-display);
  font-size:clamp(2rem,4.4vw,3rem);
  font-weight:800;line-height:1.08;letter-spacing:-.02em;
  margin-top:16px;color:var(--spruce);
}
.svc-head h2 em{font-style:normal;color:var(--amber)}
.svc-lede{margin-top:14px;font-size:1.06rem;line-height:1.65;color:var(--ink-soft)}

/* Area chips */
.svc-areas{
  list-style:none;padding:0;
  display:flex;flex-wrap:wrap;justify-content:center;gap:8px;
  margin:22px 0 clamp(36px,5vw,56px);
}
.svc-areas li{
  font-size:.85rem;font-weight:600;color:var(--spruce);
  background:#fff;border:1px solid var(--line);border-radius:999px;
  padding:7px 16px;
}

/* Featured card */
.svc-featured{
  display:grid;grid-template-columns:1.05fr 1fr;
  background:var(--spruce);color:#fff;
  border-radius:calc(var(--radius) + 6px);overflow:hidden;
  box-shadow:var(--shadow);
  margin-bottom:clamp(24px,3vw,36px);
}
.svc-featured .svc-media{position:relative;min-height:320px}
.svc-featured .svc-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.svc-featured .svc-media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,transparent 55%,rgba(16,49,43,.55));
}
.svc-flag{
  position:absolute;top:18px;left:18px;z-index:2;
  background:var(--amber);color:var(--amber-ink);
  font-size:.74rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  padding:7px 14px;border-radius:999px;
}
.svc-featured .svc-body{padding:clamp(28px,4vw,52px);display:flex;flex-direction:column;justify-content:center}
.svc-tag{font-size:.78rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--amber)}
.svc-featured h3{
  color:#fff;
  font-family:var(--font-display);
  font-size:clamp(1.5rem,2.6vw,2.1rem);font-weight:700;line-height:1.15;letter-spacing:-.01em;
  margin:10px 0 18px;
}
.svc-checks{list-style:none;padding:0;display:grid;gap:10px;margin-bottom:18px}
.svc-checks li{position:relative;display:flex;gap:10px;align-items:flex-start;font-size:.98rem;line-height:1.5;color:#E4EFE9}
.svc-checks li::before{
  content:"✓";flex:none;width:20px;height:20px;margin-top:1px;border-radius:50%;
  background:var(--amber);color:var(--amber-ink);
  display:inline-flex;align-items:center;justify-content:center;
  font-size:.72rem;font-weight:900;
}
.svc-featured p{color:#C9DAD2;line-height:1.65;margin-bottom:26px}
.svc-featured .svc-actions{display:flex;flex-wrap:wrap;gap:12px}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-body);font-weight:700;font-size:.95rem;
  border:0;border-radius:12px;padding:14px 26px;cursor:pointer;
  text-decoration:none;transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.btn:focus-visible{outline:3px solid var(--amber);outline-offset:2px}
.btn-amber{background:var(--amber);color:var(--amber-ink)}
.btn-amber:hover{transform:translateY(-2px);box-shadow:0 10px 24px -8px rgba(242,160,7,.6)}
.btn-ghost{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.35)}
.btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,.08)}

/* Card grid */
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(16px,2.2vw,24px)}
.svc-card{
  display:flex;flex-direction:column;
  background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow);
  transition:transform .25s ease,box-shadow .25s ease;
}
.svc-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover)}
.svc-card .svc-media{position:relative;aspect-ratio:16/10;overflow:hidden}
.svc-card .svc-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.svc-card:hover .svc-media img{transform:scale(1.06)}
.svc-card .svc-body{padding:24px 24px 26px;display:flex;flex-direction:column;flex:1}
.svc-card .svc-tag{color:var(--spruce-soft)}
.svc-card h3{
  font-family:var(--font-display);
  font-size:1.18rem;font-weight:700;line-height:1.3;
  margin:8px 0 10px;color:var(--spruce);
}
.svc-card p{font-size:.95rem;line-height:1.65;color:var(--ink-soft);flex:1}
.svc-link{
  margin-top:18px;align-self:flex-start;
  display:inline-flex;align-items:center;gap:6px;
  background:none;border:0;padding:0 0 2px;cursor:pointer;
  font-family:var(--font-body);font-weight:700;font-size:.93rem;color:var(--spruce);
  text-decoration:none;border-bottom:2px solid var(--amber);
  transition:gap .18s ease,color .18s ease;
}
.svc-link:hover{gap:11px;color:var(--spruce-soft)}
.svc-link:focus-visible{outline:3px solid var(--amber);outline-offset:3px}

/* Bottom CTA bar */
.svc-cta{
  margin-top:clamp(32px,4vw,48px);
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:18px;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:clamp(20px,3vw,28px) clamp(20px,3vw,36px);box-shadow:var(--shadow);
}
.svc-cta strong{font-family:var(--font-display);font-size:1.15rem;color:var(--spruce);display:block}
.svc-cta span{font-size:.93rem;color:var(--ink-soft)}
.svc-cta .btn-amber{white-space:nowrap}

/* Scroll reveal */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease}
.reveal.is-in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  .svc-card,.svc-card .svc-media img,.btn,.svc-link{transition:none}
}

/* Responsive */
@media (max-width:960px){
  .svc-grid{grid-template-columns:repeat(2,1fr)}
  .svc-featured{grid-template-columns:1fr}
  .svc-featured .svc-media{min-height:240px}
  .svc-featured .svc-media::after{background:linear-gradient(180deg,transparent 55%,rgba(16,49,43,.5))}
}
@media (max-width:600px){
  .svc-grid{grid-template-columns:1fr}
}

.nps class use karte hain) ---------- */
.nps{
  --spruce:#10312B; --spruce-soft:#1C4A3F;
  --mint:#EDF4EF; --card:#FFFFFF;
  --ink:#182420; --ink-soft:#4C5F58;
  --amber:#F2A007; --amber-ink:#5C3B00;
  --line:#D8E4DC; --radius:20px;
  --shadow:0 1px 2px rgba(16,49,43,.06),0 12px 32px -12px rgba(16,49,43,.18);
  --shadow-hover:0 2px 4px rgba(16,49,43,.08),0 24px 48px -12px rgba(16,49,43,.28);
  --font-display:"Sora","Segoe UI",system-ui,sans-serif;
  --font-body:"Inter",system-ui,-apple-system,sans-serif;
  font-family:var(--font-body);color:var(--ink);
  padding:clamp(64px,8vw,104px) 0;
}
.nps *{box-sizing:border-box;margin:0}
.nps-alt{background:var(--mint)}
.nps-container{max-width:1180px;margin-inline:auto;padding-inline:clamp(16px,4vw,32px)}

.nps-head{max-width:660px;margin:0 auto clamp(36px,5vw,56px);text-align:center}
.nps-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.78rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--spruce-soft);
  padding:6px 14px;border:1px solid var(--line);border-radius:999px;background:#fff;
}
.nps-eyebrow::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--amber)}
.nps-head h2, .nps h2.nps-title{
  font-family:var(--font-display);
  font-size:clamp(1.8rem,3.8vw,2.6rem);
  font-weight:800;line-height:1.12;letter-spacing:-.02em;
  color:var(--spruce);margin-top:16px;
}
.nps-lede{margin-top:14px;font-size:1.04rem;line-height:1.65;color:var(--ink-soft)}

.nps .btn{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-body);font-weight:700;font-size:.95rem;
  border:0;border-radius:12px;padding:14px 26px;cursor:pointer;
  text-decoration:none;transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.nps .btn:focus-visible{outline:3px solid var(--amber);outline-offset:2px}
.nps .btn-amber{background:var(--amber);color:var(--amber-ink)}
.nps .btn-amber:hover{transform:translateY(-2px);box-shadow:0 10px 24px -8px rgba(242,160,7,.6)}
.nps .btn-outline{background:#fff;color:var(--spruce);border:1.5px solid var(--line)}
.nps .btn-outline:hover{border-color:var(--spruce);transform:translateY(-2px)}
.nps .btn-outline-light{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.4)}
.nps .btn-outline-light:hover{border-color:#fff;background:rgba(255,255,255,.08)}

/* ============ 1) PESTS WE HANDLE ============ */
.pest-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(14px,2vw,20px)}
.pest-card{
  position:relative;display:block;border-radius:var(--radius);overflow:hidden;
  aspect-ratio:3/4;box-shadow:var(--shadow);text-decoration:none;
  transition:transform .25s ease,box-shadow .25s ease;
}
.pest-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover)}
.pest-card:focus-visible{outline:3px solid var(--amber);outline-offset:3px}
.pest-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.pest-card:hover img{transform:scale(1.07)}
.pest-card .overlay{
  position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;
  padding:20px;
  background:linear-gradient(180deg,rgba(16,49,43,0) 40%,rgba(16,49,43,.88) 100%);
}
.pest-name{font-family:var(--font-display);font-weight:700;font-size:1.15rem;color:#fff;line-height:1.2}
.pest-sub{font-size:.84rem;color:#C9DAD2;margin-top:4px}
.pest-go{
  position:absolute;top:14px;right:14px;width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.14);backdrop-filter:blur(4px);color:#fff;
  font-weight:800;opacity:0;transform:translateY(-6px);
  transition:opacity .25s ease,transform .25s ease;
}
.pest-card:hover .pest-go{opacity:1;transform:none}
.nps-center-cta{text-align:center;margin-top:clamp(28px,4vw,40px)}

/* ============ 2) HOW IT WORKS ============ */
.steps{
  list-style:none;padding:0;counter-reset:step;
  display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(14px,2vw,20px);
}
.step{
  position:relative;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);padding:28px 22px 26px;box-shadow:var(--shadow);
}
.step-num{
  counter-increment:step;
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:14px;
  background:var(--spruce);color:var(--amber);
  font-family:var(--font-display);font-weight:800;font-size:1.05rem;
  margin-bottom:16px;
}
.step:not(:last-child)::after{                 /* connector line */
  content:"";position:absolute;top:50px;right:-11px;width:22px;height:2px;
  background:repeating-linear-gradient(90deg,var(--amber) 0 4px,transparent 4px 8px);
}
.step h3{font-family:var(--font-display);font-size:1.06rem;font-weight:700;color:var(--spruce);margin-bottom:8px;line-height:1.3}
.step p{font-size:.92rem;line-height:1.6;color:var(--ink-soft)}

/* ============ 3) WHY US ============ */
.why-split{display:grid;grid-template-columns:1.05fr 1fr;gap:clamp(28px,5vw,64px);align-items:center}
.why-collage{position:relative}
.why-collage .img-main{
  border-radius:calc(var(--radius) + 6px);overflow:hidden;box-shadow:var(--shadow);
  aspect-ratio:4/5;
}
.why-collage .img-main img{width:100%;height:100%;object-fit:cover;display:block}
.why-collage .img-small{
  position:absolute;right:-8px;bottom:64px;width:44%;
  border-radius:var(--radius);overflow:hidden;
  border:5px solid #fff;box-shadow:var(--shadow-hover);aspect-ratio:1/1;
}
.why-collage .img-small img{width:100%;height:100%;object-fit:cover;display:block}
.badge-float{
  position:absolute;left:-8px;bottom:-22px;
  display:flex;align-items:center;gap:12px;
  background:#fff;border:1px solid var(--line);border-radius:16px;
  padding:14px 18px;box-shadow:var(--shadow-hover);
}
.badge-float .icon-tile{
  width:42px;height:42px;border-radius:12px;flex:none;
  display:flex;align-items:center;justify-content:center;
  background:var(--spruce);color:var(--amber);
}
.badge-float strong{display:block;font-family:var(--font-display);font-size:.98rem;color:var(--spruce)}
.badge-float span{font-size:.82rem;color:var(--ink-soft)}
.why-copy h2{margin:14px 0 14px}
.check-list{list-style:none;padding:0;display:grid;gap:12px;margin:22px 0 28px}
.check-list li{display:flex;gap:12px;align-items:flex-start;font-size:.98rem;line-height:1.55;color:var(--ink)}
.check-list li::before{
  content:"✓";flex:none;width:22px;height:22px;margin-top:1px;border-radius:50%;
  background:var(--amber);color:var(--amber-ink);
  display:inline-flex;align-items:center;justify-content:center;
  font-size:.74rem;font-weight:900;
}

/* ============ 4) REVIEWS SLIDER ============ */
.rev-topbar{
  display:flex;align-items:flex-end;justify-content:space-between;gap:20px;
  margin-bottom:clamp(24px,3vw,36px);flex-wrap:wrap;
}
.rev-topbar .nps-head{margin:0;text-align:left;max-width:560px}
.rev-rating{
  display:flex;align-items:center;gap:12px;
  background:#fff;border:1px solid var(--line);border-radius:16px;
  padding:12px 18px;box-shadow:var(--shadow);
}
.rev-rating .big{font-family:var(--font-display);font-weight:800;font-size:1.6rem;color:var(--spruce)}
.rev-rating .stars{color:var(--amber);font-size:1rem;letter-spacing:2px}
.rev-rating small{display:block;font-size:.78rem;color:var(--ink-soft)}
.rev-viewport{overflow:hidden;margin-inline:-4px;padding:4px 4px 10px}
.rev-track{
  display:flex;gap:clamp(14px,2vw,20px);
  overflow-x:auto;scroll-snap-type:x mandatory;
  scrollbar-width:none;-webkit-overflow-scrolling:touch;
  padding-bottom:6px;
}
.rev-track::-webkit-scrollbar{display:none}
.rev-card{
  flex:0 0 calc((100% - 2*clamp(14px,2vw,20px))/3);   /* 3 per view desktop */
  scroll-snap-align:start;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:26px 24px;box-shadow:var(--shadow);
  display:flex;flex-direction:column;
}
.rev-stars{color:var(--amber);letter-spacing:2px;margin-bottom:14px}
.rev-card blockquote{font-size:.96rem;line-height:1.65;color:var(--ink);flex:1}
.rev-who{display:flex;align-items:center;gap:12px;margin-top:18px;font-size:.9rem;color:var(--ink-soft)}
.rev-who .avatar{
  width:40px;height:40px;border-radius:50%;flex:none;
  display:flex;align-items:center;justify-content:center;
  background:var(--spruce);color:var(--amber);
  font-family:var(--font-display);font-weight:800;
}
.rev-who strong{display:block;color:var(--spruce);font-size:.93rem}
.rev-controls{display:flex;align-items:center;justify-content:center;gap:18px;margin-top:22px}
.rev-btn{
  width:46px;height:46px;border-radius:50%;border:1.5px solid var(--line);
  background:#fff;color:var(--spruce);cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .18s ease,border-color .18s ease,transform .18s ease;
}
.rev-btn:hover{background:var(--spruce);color:#fff;border-color:var(--spruce);transform:translateY(-2px)}
.rev-btn:focus-visible{outline:3px solid var(--amber);outline-offset:2px}
.rev-dots{display:flex;gap:8px}
.rev-dot{width:8px;height:8px;border-radius:999px;border:0;padding:0;background:var(--line);cursor:pointer;transition:width .25s ease,background .25s ease}
.rev-dot.active{width:26px;background:var(--amber)}

/* ============ 5) CTA BANNER ============ */
.cta-banner{
  position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
  background:var(--spruce);color:#fff;
  border-radius:calc(var(--radius) + 6px);
  padding:clamp(28px,4.5vw,52px) clamp(24px,4.5vw,56px);
  box-shadow:var(--shadow-hover);
}
.cta-banner::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(600px 300px at 90% 0%, rgba(242,160,7,.18), transparent 60%);
}
.cta-banner h2{font-family:var(--font-display);font-size:clamp(1.4rem,2.6vw,1.9rem);font-weight:800;line-height:1.2;letter-spacing:-.01em}
.cta-banner p{margin-top:10px;color:#C9DAD2;max-width:46ch;line-height:1.6}
.cta-banner-actions{display:flex;gap:12px;flex-wrap:wrap;position:relative}


/* ============ DEALS (limited-time offers) ============ */
.deal-section{background:var(--spruce);position:relative;overflow:hidden}
.deal-section::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(900px 420px at 12% -10%, rgba(242,160,7,.20), transparent 60%);
}
.deal-section .nps-container{position:relative}
.deal-section .nps-head h2{color:#fff}
.deal-section .nps-lede{color:#C9DAD2}
.deal-section .nps-eyebrow{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.25);color:#fff;backdrop-filter:blur(4px)}
.deal-timerline{
  display:inline-flex;align-items:center;gap:8px;margin-top:14px;
  font-size:.82rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--amber);
}
.deal-timerline .dot{width:8px;height:8px;border-radius:50%;background:var(--amber);animation:dealPulse 1.4s ease infinite}
@keyframes dealPulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.45;transform:scale(.75)}}
.deal-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(16px,2.2vw,24px)}
.deal-card{
  position:relative;display:flex;flex-direction:column;
  background:#fff;border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow-hover);
  transition:transform .25s ease,box-shadow .25s ease;
}
.deal-card:hover{transform:translateY(-6px)}
.deal-media{position:relative;aspect-ratio:16/10;overflow:hidden;background:var(--mint)}
.deal-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.deal-card:hover .deal-media img{transform:scale(1.06)}
.deal-off{
  position:absolute;top:14px;left:14px;z-index:2;
  background:var(--amber);color:var(--amber-ink);
  font-family:var(--font-display);font-weight:800;font-size:1rem;line-height:1;
  padding:10px 14px;border-radius:12px;box-shadow:0 8px 20px -8px rgba(0,0,0,.4);
}
.deal-off small{display:block;font-family:var(--font-body);font-size:.6rem;font-weight:800;letter-spacing:.1em;margin-top:3px}
.deal-body{padding:22px 22px 24px;display:flex;flex-direction:column;flex:1}
.deal-body h3{font-family:var(--font-display);font-size:1.15rem;font-weight:700;color:var(--spruce);margin-bottom:8px}
.deal-body p{font-size:.9rem;line-height:1.6;color:var(--ink-soft);flex:1}
.deal-perks{list-style:none;padding:0;display:grid;gap:8px;margin:14px 0 4px}
.deal-perks li{display:flex;gap:9px;align-items:flex-start;font-size:.88rem;font-weight:600;color:var(--spruce)}
.deal-perks li::before{
  content:"\2713";flex:none;width:18px;height:18px;margin-top:1px;border-radius:50%;
  background:var(--mint);color:var(--spruce);border:1px solid var(--line);
  display:inline-flex;align-items:center;justify-content:center;font-size:.62rem;font-weight:900;
}
.deal-card .btn{margin-top:16px}
.deal-terms{margin-top:18px;text-align:center;font-size:.78rem;color:#9FBFAF;position:relative}
@media (max-width:1024px){.deal-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.deal-grid{grid-template-columns:1fr}}

/* ---------- Reveal ---------- */
.nps .reveal{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease}
.nps .reveal.is-in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .nps .reveal{opacity:1;transform:none;transition:none}
  .nps .btn,.pest-card,.pest-card img,.rev-btn{transition:none}
  .rev-track{scroll-behavior:auto}
}

/* ---------- Responsive ---------- */
@media (max-width:1024px){
  .pest-grid{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .step:not(:last-child)::after{display:none}
  .rev-card{flex-basis:calc((100% - clamp(14px,2vw,20px))/2)}  /* 2 per view */
}
@media (max-width:860px){
  .why-split{grid-template-columns:1fr}
  .why-collage{max-width:520px;margin-inline:auto}
}
@media (max-width:640px){
  .pest-grid{grid-template-columns:1fr 1fr}
  .steps{grid-template-columns:1fr}
  .rev-card{flex-basis:100%}                                    /* 1 per view */
  .rev-topbar{flex-direction:column;align-items:flex-start}
  .why-collage .img-small{bottom:auto;top:-14px;right:-4px;width:40%}
}
