:root {
  --bg: #edf4ef;
  --surface: #ffffff;
  --surface-soft: #e3eee6;
  --dark: #102f28;
  --dark-2: #173d34;
  --text: #17362f;
  --muted: #5b726b;
  --accent: #67ad83;
  --accent-dark: #286a43;
  --accent-soft: #dcecdf;
  --line: rgba(17, 62, 50, 0.12);
  --shadow: 0 22px 54px rgba(16, 47, 40, 0.11);
  --shadow-strong: 0 32px 78px rgba(16, 47, 40, 0.17);
  --radius: 26px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 0 0, rgba(111, 173, 134, 0.13), transparent 25%),
    linear-gradient(180deg, #edf4ef 0%, #f5f8f5 42%, #e8f0ea 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  letter-spacing: -0.01em;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0 0 .75rem; line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.65rem, 5.4vw, 5.2rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.45rem); }
h3 { font-size: 1.25rem; }
button, input, textarea, select { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 104px 0; }
.section-soft { background: linear-gradient(180deg, rgba(255,255,255,.46), rgba(222,235,225,.72)); }
.section-dark { color: #f2faf5; background: linear-gradient(135deg, #102f28 0%, #1b493d 100%); }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head > p:last-child { color: var(--muted); font-size: 1.06rem; max-width: 64ch; }
.section-head--light > p:last-child { color: #cce0d5; }

.eyebrow,
.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 1rem;
  color: #1f6840;
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.eyebrow {
  padding: .46rem .78rem;
  border-radius: 999px;
  background: var(--accent-soft);
}
.section-dark .eyebrow { color: #bce9ca; background: rgba(255,255,255,.09); }

.topbar { background: var(--dark); color: #edf7f1; font-size: .91rem; }
.topbar-inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar a { color: #b9ebc8; font-weight: 800; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(16,47,40,.06);
  backdrop-filter: blur(18px) saturate(135%);
}
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; }
.brand img { width: 218px; height: 66px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: clamp(14px, 1.45vw, 24px); font-weight: 700; }
.main-nav > a:not(.btn) { position: relative; font-size: .91rem; white-space: nowrap; }
.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-dark);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav > a:hover::after,
.main-nav > a:focus-visible::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; border-radius: 4px; background: var(--dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #4e9b6c 0%, #286a43 100%);
  box-shadow: 0 16px 34px rgba(40,106,67,.22);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 21px 42px rgba(40,106,67,.28); }
.btn-sm { min-height: 44px; padding-inline: 18px; }
.btn-secondary { color: var(--dark); background: rgba(255,255,255,.82); border: 1px solid var(--line); box-shadow: 0 11px 24px rgba(16,47,40,.07); }
.text-link { color: var(--accent-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

.hero {
  position: relative;
  min-height: calc(100svh - 126px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #dce8df;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.9) contrast(1.03); }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(235,243,237,.96) 0%, rgba(235,243,237,.88) 38%, rgba(235,243,237,.35) 70%, rgba(235,243,237,.12) 100%);
}
.hero-grid { position: relative; z-index: 1; padding: 76px 0 100px; }
.hero-copy {
  width: min(690px, 100%);
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(244,249,245,.71));
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(15px) saturate(120%);
}
.hero h1 span { color: #2e8054; }
.lead { max-width: 56ch; color: #31544a; font-size: clamp(1.08rem, 1.8vw, 1.3rem); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 9px; margin: 1.4rem 0 1.6rem; }
.hero-badges span { padding: .62rem .88rem; border-radius: 999px; background: rgba(16,47,40,.07); border: 1px solid rgba(16,47,40,.06); font-size: .9rem; font-weight: 800; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-note { margin: 1.15rem 0 0; color: var(--muted); font-size: .9rem; }

.trust-band { position: relative; z-index: 3; padding: 0 0 36px; }
.trust-grid { margin-top: -44px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.trust-grid article { position: relative; overflow: hidden; padding: 25px; border: 1px solid var(--line); border-radius: 23px; background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
.trust-grid article::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--accent-dark), #9bcbaa); }
.trust-grid strong { display: block; margin-bottom: 8px; font-size: 1.04rem; }
.trust-grid p { margin: 0; color: var(--muted); font-size: .95rem; }

.audience-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.audience-card { display: grid; grid-template-columns: minmax(180px, .9fr) minmax(0, 1.25fr); overflow: hidden; min-height: 285px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); transition: transform .22s ease, box-shadow .22s ease; }
.audience-card:hover { transform: translateY(-4px); box-shadow: 0 28px 62px rgba(16,47,40,.15); }
.audience-card > img { width: 100%; height: 100%; object-fit: cover; }
.audience-card__body { padding: 28px; display: flex; flex-direction: column; align-items: flex-start; }
.audience-card__body p:not(.card-kicker) { color: var(--muted); }
.audience-card__body a { margin-top: auto; color: var(--accent-dark); font-weight: 800; }
.audience-card__body a::after { content: " →"; }
.pest-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 34px; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.55); }
.pest-list span { padding: .55rem .8rem; border-radius: 999px; color: #35574c; background: var(--surface); border: 1px solid var(--line); font-size: .9rem; font-weight: 700; }

.business-section { background: #f7faf7; }
.business-grid,
.about-grid,
.reviews-grid,
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 56px; align-items: center; }
.business-copy > p:not(.eyebrow),
.about-section p,
.reviews-section p,
.contact-section p { color: var(--muted); font-size: 1.03rem; }
.check-list { list-style: none; padding: 0; margin: 1.45rem 0 2rem; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 29px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-dark); font-weight: 900; }
.business-visual { position: relative; }
.business-visual > img,
.about-visual img { width: 100%; min-height: 520px; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow-strong); }
.business-stat { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 20px 22px; border-radius: 20px; color: #fff; background: rgba(16,47,40,.9); backdrop-filter: blur(10px); }
.business-stat strong, .business-stat span { display: block; }
.business-stat span { margin-top: 4px; color: #cce0d5; font-size: .9rem; }

.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 19px; }
.step-card { padding: 28px 22px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.06)); }
.step-card span { display: inline-flex; width: 45px; height: 45px; margin-bottom: 17px; align-items: center; justify-content: center; border-radius: 50%; color: #c8f1d4; background: rgba(186,235,202,.14); font-weight: 900; }
.step-card p { margin: 0; color: #cce0d5; font-size: .95rem; }

.credential-card { margin-top: 1.8rem; display: flex; align-items: center; gap: 18px; padding: 20px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface-soft); }
.credential-card img { width: 132px; border-radius: 14px; box-shadow: 0 12px 28px rgba(16,47,40,.13); }
.credential-card strong { display: block; margin-bottom: 5px; }
.credential-card p { margin-bottom: 8px; font-size: .94rem; }
.credential-card a { color: var(--accent-dark); font-weight: 800; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.gallery-card { margin: 0; overflow: hidden; min-height: 320px; border-radius: 25px; background: var(--surface); box-shadow: var(--shadow); }
.gallery-card.wide { grid-column: span 2; }
.gallery-card img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; transition: transform .35s ease; }
.gallery-card:hover img { transform: scale(1.035); }

.reviews-grid { align-items: start; }
.review-actions-inline { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 1.7rem; }
.review-box,
.contact-form { padding: 28px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow); }
.review-form,
.contact-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.field-group { display: grid; gap: 7px; color: var(--text); font-size: .93rem; font-weight: 750; }
input, textarea, select { width: 100%; padding: 14px 15px; color: var(--text); border: 1px solid rgba(17,62,50,.15); border-radius: 15px; background: #fff; }
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { outline: none; border-color: rgba(40,106,67,.42); box-shadow: 0 0 0 4px rgba(103,173,131,.14); }
.consent { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .87rem; }
.consent input { width: auto; margin-top: 4px; }

.faq-section { background: #f6faf7; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
details { padding: 20px 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: 0 13px 28px rgba(16,47,40,.06); }
summary { cursor: pointer; font-weight: 800; }
details p { margin: 14px 0 0; color: var(--muted); }

.contact-section { background: linear-gradient(180deg, #e8f1ea, #f3f7f4); }
.contact-grid { align-items: start; }
.contact-cards { display: grid; gap: 12px; margin-top: 1.5rem; }
.contact-card { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 76px; padding: 16px 19px; border: 1px solid var(--line); border-radius: 19px; background: rgba(255,255,255,.82); box-shadow: 0 12px 28px rgba(16,47,40,.06); }
.contact-card strong { font-size: .98rem; }
.contact-card span { color: var(--muted); text-align: right; }

.site-footer { color: #edf6f0; background: radial-gradient(circle at 90% 0, rgba(104,174,123,.18), transparent 28%), linear-gradient(145deg, #102d24, #091f18); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr 1fr; gap: 46px; padding: 64px 0 46px; }
.footer-grid > div + div { padding-left: 34px; border-left: 1px solid rgba(235,246,239,.13); }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.footer-brand img { width: 244px; padding: 8px 12px; border-radius: 15px; background: rgba(255,255,255,.96); }
.footer-brand span { max-width: 340px; color: #c7dbd0; }
.site-footer h3 { margin-bottom: 17px; color: #a9d486; font-size: .8rem; letter-spacing: .09em; text-transform: uppercase; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a:hover { color: #bde19e; }
.footer-bottom { padding: 18px 16px 22px; border-top: 1px solid rgba(235,246,239,.11); color: rgba(235,246,239,.67); text-align: center; font-size: .84rem; }

.floating-wa { position: fixed; right: 20px; bottom: 20px; z-index: 35; min-height: 55px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; color: #fff; background: linear-gradient(135deg, #29d267, #1cbf59); box-shadow: 0 20px 44px rgba(0,0,0,.19); font-weight: 900; }

@media (max-width: 1080px) {
  .brand img { width: 196px; }
  .main-nav { gap: 13px; }
  .main-nav > a:not(.btn) { font-size: .83rem; }
  .audience-card { grid-template-columns: 1fr; }
  .audience-card > img { height: 230px; }
  .steps-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 82px; }
  .topbar-inner { min-height: 38px; }
  .nav-wrap { min-height: 80px; }
  .brand img { width: 198px; height: 60px; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav > a:not(.btn) { padding: 7px 4px; font-size: .96rem; }
  .main-nav > a:not(.btn)::after { display: none; }
  .hero { min-height: auto; }
  .hero-media::after { background: linear-gradient(180deg, rgba(235,243,237,.88), rgba(235,243,237,.74)); }
  .hero-grid { padding: 70px 0 86px; }
  .hero-copy { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; margin-top: -30px; }
  .audience-grid,
  .business-grid,
  .about-grid,
  .reviews-grid,
  .contact-grid,
  .faq-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .business-visual > img,
  .about-visual img { min-height: 390px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-card.wide { grid-column: span 2; }
  .footer-grid { gap: 28px; padding: 52px 0 38px; }
  .footer-grid > div + div { padding-left: 0; padding-top: 27px; border-left: 0; border-top: 1px solid rgba(235,246,239,.13); }
  .section { padding: 84px 0; }
}

@media (max-width: 560px) {
  :root { --container: min(100%, calc(100% - 28px)); }
  .topbar { display: none; }
  h1 { font-size: 2.42rem; }
  h2 { font-size: 1.92rem; }
  .nav-wrap { min-height: 78px; }
  .brand img { width: 180px; height: 58px; }
  .hero-grid { padding: 54px 0 70px; }
  .hero-copy { padding: 23px; border-radius: 26px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-badges span { width: 100%; text-align: center; }
  .audience-card > img { height: 205px; }
  .audience-card__body { padding: 23px; }
  .pest-list { justify-content: flex-start; padding: 18px; }
  .steps-grid,
  .gallery-grid,
  .form-row { grid-template-columns: 1fr; }
  .gallery-card.wide { grid-column: auto; }
  .gallery-card,
  .gallery-card img { min-height: 260px; }
  .credential-card { align-items: flex-start; flex-direction: column; }
  .credential-card img { width: 155px; }
  .business-visual > img,
  .about-visual img { min-height: 310px; }
  .business-stat { left: 14px; right: 14px; bottom: 14px; }
  .review-actions-inline { align-items: stretch; flex-direction: column; }
  .review-actions-inline .btn { width: 100%; }
  .contact-card { align-items: flex-start; flex-direction: column; }
  .contact-card span { text-align: left; }
  .floating-wa { right: 14px; bottom: 14px; min-height: 51px; padding-inline: 17px; font-size: .92rem; }
}
