:root {
  --ink: #0e2a3b;
  --ink-2: #3d5566;
  --muted: #6b7f8c;
  --line: #e3e9ed;
  --bg: #ffffff;
  --tint: #f3f7f5;
  --dark: #0e2a3b;
  --green: #1f9d55;
  --green-hi: #22b061;
  --green-lo: #187f45;
  --accent: #34c26b;
  --warn: #b4452e;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(14, 42, 59, .12);
  --font: 'Figtree', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font: 400 17px/1.55 var(--font); color: var(--ink); background: var(--bg); }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -.02em; }
p { margin: 0; }
a { color: inherit; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 16px; }
.wrap--narrow { max-width: 800px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 64px; padding: 0 30px; border-radius: 999px;
  font: 800 21px/1 var(--font); text-decoration: none; white-space: nowrap;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.btn svg { width: 24px; height: 24px; fill: currentColor; flex: none; }
.btn--call { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(31, 157, 85, .38); }
.btn--call:hover { background: var(--green-hi); transform: translateY(-1px); }
.btn--call:active { background: var(--green-lo); transform: none; }
.btn--sm { min-height: 54px; font-size: 18px; padding: 0 24px; margin-top: 26px; }

/* ---------- Top bar ---------- */
.topbar { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.96); backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid var(--line); }
.topbar__in { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 21px; text-decoration: none; letter-spacing: -.02em; }
.brand b { color: var(--green); font-weight: 800; }
.brand__mark { width: 32px; height: 32px; }
.brand__mark rect { fill: var(--ink); }
.brand__mark path { fill: none; stroke: var(--accent); stroke-width: 3; stroke-linejoin: round; }
.brand--light { color: #fff; }
.brand--light .brand__mark rect { fill: rgba(255,255,255,.1); }
.topbar__call { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 19px; text-decoration: none; color: var(--ink); }
.topbar__call svg { width: 34px; height: 34px; padding: 8px; border-radius: 50%; background: var(--green); fill: #fff; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--dark); color: #fff; }
.hero__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: 20% 50%; }
.hero__in { padding-top: 26px; padding-bottom: 34px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: #bfe9cf; margin-bottom: 12px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(52,194,107,.25); }
.hero h1 { font-size: clamp(32px, 8.4vw, 58px); font-weight: 800; margin-bottom: 14px; }
.hero__sub { font-size: clamp(17px, 2.2vw, 20px); color: #d9e6ee; max-width: 560px; margin-bottom: 24px; }
.hero .btn { width: 100%; max-width: 420px; }
.hero__ticks { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 8px; font-size: 16px; color: #e8f1f6; }
.hero__ticks li { display: flex; align-items: center; gap: 10px; }
.hero__ticks li::before { content: ""; width: 20px; height: 20px; flex: none; border-radius: 50%; background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m5.5 10.5 3 3 6-7' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% no-repeat; }

@media (min-width: 860px) {
  .hero { min-height: 640px; display: flex; align-items: center; overflow: hidden; }
  .hero__media { position: absolute; inset: 0; }
  .hero__media img { height: 100%; aspect-ratio: auto; object-position: 30% 50%; }
  .hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,42,59,0) 0%, rgba(14,42,59,.55) 42%, rgba(14,42,59,.92) 62%, rgba(14,42,59,.96) 100%); }
  .hero__in { position: relative; z-index: 1; width: 100%; display: flex; flex-direction: column; align-items: flex-start; padding: 70px 16px 70px calc(50% + 16px); }
  .hero__in > * { max-width: 540px; }
  .hero h1 { font-size: 52px; }
}
@media (min-width: 1160px) {
  .hero__in { padding-left: 600px; }
}

/* ---------- Fit strip ---------- */
.fit { background: var(--tint); border-bottom: 1px solid var(--line); }
.fit__in { display: grid; gap: 14px; padding-top: 22px; padding-bottom: 22px; }
.fit__col { padding-left: 42px; position: relative; }
.fit__col::before { content: ""; position: absolute; left: 0; top: 2px; width: 28px; height: 28px; border-radius: 50%; background-position: center; background-repeat: no-repeat; background-size: 16px; }
.fit__col--yes::before { background-color: var(--green); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m4 10.5 4 4 8-9' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.fit__col--no::before { background-color: #d9dfe3; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m5 5 10 10M15 5 5 15' stroke='%233d5566' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E"); }
.fit h2 { font-size: 17px; margin-bottom: 3px; letter-spacing: 0; }
.fit p { font-size: 15.5px; color: var(--ink-2); }
.fit__note { margin-top: 4px; font-weight: 600; color: var(--ink) !important; }
@media (min-width: 860px) { .fit__in { grid-template-columns: 1.4fr 1fr; gap: 40px; } }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section--tint { background: var(--tint); }
.section--dark { background: var(--dark); color: #fff; }
.head { max-width: 720px; margin-bottom: 32px; }
.kicker { font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.kicker--light { color: var(--accent); }
.section h2 { font-size: clamp(28px, 5.4vw, 42px); font-weight: 800; }
@media (min-width: 860px) { .section { padding: 96px 0; } }

/* ---------- Pests ---------- */
.pests { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.pest { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease; }
.pest:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: transparent; }
.pest img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.pest__body { display: block; padding: 12px 14px 16px; }
.pest strong { display: flex; align-items: center; justify-content: space-between; font-size: 18px; }
.pest strong::after { content: ""; width: 26px; height: 26px; border-radius: 50%; flex: none; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.25 11.4 11.4 0 0 0 3.6.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.45.57 3.57a1 1 0 0 1-.25 1z'/%3E%3C/svg%3E") center/14px no-repeat; }
.pest small { display: block; margin-top: 4px; font-size: 14px; line-height: 1.35; color: var(--muted); }
.pest.is-active { border: 2px solid var(--green); box-shadow: var(--shadow); }
.pest.is-active:first-child { grid-column: 1 / -1; }
.pest.is-active:first-child img { aspect-ratio: 16 / 9; }
@media (min-width: 860px) {
  .pests { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .pest.is-active:first-child { grid-column: auto; }
  .pest.is-active:first-child img { aspect-ratio: 4 / 3; }
}

/* ---------- Split ---------- */
.split { display: grid; gap: 30px; align-items: center; }
.split__media img { width: 100%; border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; }
.split__text h2 { margin-bottom: 18px; }
.split__text > p { color: var(--ink-2); }
.section--dark .split__text > p { color: #cfdde6; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split--rev .split__media { order: 2; }
}

.checks, .facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 36px; font-size: 17px; }
.checks li::before { content: ""; position: absolute; left: 0; top: 1px; width: 24px; height: 24px; border-radius: 50%; background: #dff3e7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m5 10.5 3.2 3.2L15 6.5' fill='none' stroke='%231f9d55' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/16px no-repeat; }
.facts li { padding: 16px 18px; background: var(--tint); border-radius: 12px; font-size: 16px; color: var(--ink-2); }
.facts strong { color: var(--ink); }

/* ---------- Steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.steps li { position: relative; padding: 24px 22px 24px 84px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.steps__n { position: absolute; left: 22px; top: 22px; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; font-weight: 800; font-size: 20px; }
.steps h3 { font-size: 20px; margin-bottom: 6px; }
.steps p { color: var(--ink-2); font-size: 16px; }
@media (min-width: 860px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .steps li { padding: 84px 26px 28px; }
  .steps__n { left: 26px; top: 26px; }
}

/* ---------- Local ---------- */
.cities { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.cities:empty { display: none; }
.cities li { padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); font-size: 14.5px; font-weight: 600; }
.avail { margin-top: 12px; font-size: 14px; color: #9fb4c1 !important; }
.tip { margin-top: 24px; padding: 16px 18px; border-radius: 12px; background: rgba(52,194,107,.12); border: 1px solid rgba(52,194,107,.35); font-size: 15.5px; color: #e3eef4; }
.tip strong { color: #fff; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 52px 18px 20px; position: relative; font-weight: 700; font-size: 17.5px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 20px; top: 50%; width: 12px; height: 12px; margin-top: -8px; border-right: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(45deg); transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details p { padding: 0 20px 18px; color: var(--ink-2); font-size: 16px; }

/* ---------- Final CTA ---------- */
.final { position: relative; overflow: hidden; background: var(--dark); color: #fff; text-align: center; }
.final__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.final__in { position: relative; padding-top: 80px; padding-bottom: 88px; display: flex; flex-direction: column; align-items: center; }
.final h2 { font-size: clamp(30px, 6vw, 46px); font-weight: 800; margin-bottom: 12px; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.final p { color: #e5eef3; font-size: 18px; margin-bottom: 26px; max-width: 520px; }
.final .btn { width: 100%; max-width: 420px; }

/* ---------- Footer ---------- */
.footer { background: #0a1f2c; color: #a9bbc6; padding: 40px 0 110px; font-size: 14px; }
.footer__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 22px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__nav a { color: #dce6ec; text-decoration: none; }
.footer__nav a:hover { text-decoration: underline; }
.disclaimer { font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.disclaimer strong { color: #dce6ec; }
#legal { font-size: 13px; }
#legal:empty { display: none; }
#legal a { color: #dce6ec; }
.copy { margin-top: 14px; font-size: 13px; }
@media (min-width: 860px) { .footer { padding-bottom: 44px; } }

/* ---------- Sticky call (mobile) ---------- */
.stickycall {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 40;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 58px; border-radius: 999px; background: var(--green); color: #fff; text-decoration: none;
  font: 800 19px/1 var(--font); box-shadow: 0 10px 30px rgba(14,42,59,.35);
  transform: translateY(140%); transition: transform .25s ease;
}
.stickycall svg { width: 22px; height: 22px; fill: #fff; }
.stickycall.is-on { transform: none; }
@media (min-width: 860px) { .stickycall { display: none; } }

@media (max-width: 380px) {
  .btn { font-size: 19px; padding: 0 18px; }
  .topbar__call span { font-size: 16px; }
  .brand { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
