:root {
  --green-900: #17362d;
  --green-800: #21473a;
  --green-700: #24463a;
  --green-200: #dce8de;
  --green-100: #edf4ee;
  --gray-100: #fafcf9;
  --gray-150: #fbfcfb;
  --gray-200: #f7faf7;
  --gray-300: #e3e9e4;
  --gray-400: #dde5de;
  --gray-500: #dce4de;
  --text-soft: #62756d;
  --text-mid: #64776e;
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.18);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.05);
  --radius-xl: 28px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--green-900);
  background: #fff;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button, input { font: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-500);
}
.header-inner, .footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-badge {
  width: 40px; height: 40px; border-radius: 999px; display:flex; align-items:center; justify-content:center;
  background: var(--green-800); color: white; font-weight: 700;
}
.brand-name { font-size: 1.65rem; font-weight: 700; line-height: 1; }
.brand-sub { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .28em; color: #6d7d76; margin-top: 2px; }
.header-actions { display: flex; gap: 12px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 999px; font-weight: 700; transition: .2s ease;
  border: 1px solid transparent; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green-800); color: white; }
.btn-outline { border-color: #d7e0da; color: var(--green-800); background: white; }
.btn-full { width: 100%; border-radius: 18px; padding: 16px 20px; }
.btn-small { padding: 12px 18px; font-size: 0.95rem; }
.desktop-only { display: inline-flex; }

.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #244d3f 0%, #19362d 100%); color: white;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 40px;
  padding: 32px 0 64px;
}
.hero-blur {
  position: absolute; border-radius: 999px; filter: blur(72px); opacity: .2;
}
.blur-1 { width: 256px; height: 256px; left: -12%; top: -12%; background: #95b7a4; }
.blur-2 { width: 288px; height: 288px; right: -8%; bottom: -18%; background: #749281; }
.hero-copy h1 {
  margin: 16px 0 0; max-width: 640px; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05;
}
.hero-sub { max-width: 620px; margin: 16px 0 0; font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,.86); }
.eyebrow {
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: #72847d;
}
.eyebrow.alert {
  display: inline-flex; padding: 8px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.1); color: rgba(255,255,255,.9);
}
.eyebrow.green { color: #72867c; }
.price-pill {
  display: inline-flex; margin-top: 20px; padding: 10px 16px; border-radius: 999px;
  background: var(--green-200); color: var(--green-900); font-size: .95rem; font-weight: 700;
}
.trust-inline {
  display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 20px; font-size: .95rem; color: rgba(255,255,255,.9);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 24px;
}
.trust-card {
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.08);
  border-radius: 18px; padding: 14px 16px; font-size: .95rem;
}
.card-glass {
  margin-top: 24px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.1);
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: 260px; object-fit: cover; }

.quote-card {
  overflow: hidden; border-radius: var(--radius-xl); background: white; color: var(--green-900); box-shadow: var(--shadow-lg);
}
.quote-top { padding: 20px 28px; background: var(--gray-200); border-bottom: 1px solid var(--gray-300); }
.quote-top h2 { margin: 10px 0 0; font-size: 2rem; line-height: 1.1; }
.quote-top p { margin: 10px 0 0; color: var(--text-soft); line-height: 1.6; }
.quote-form { padding: 24px 28px 28px; }
.progress-card { background: #f3f7f4; border-radius: 18px; padding: 14px; margin-bottom: 16px; }
.progress-row {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: #658077;
}
.progress-bar { margin-top: 12px; height: 8px; border-radius: 999px; background: #dce6df; overflow: hidden; }
.progress-fill { width: 33.333%; height: 100%; background: var(--green-800); border-radius: 999px; }
.quote-form input {
  width: 100%; border: 2px solid #d8dfda; border-radius: 18px; padding: 16px; color: var(--green-900);
  margin-bottom: 12px; outline: none; transition: .2s ease;
}
.quote-form input:focus { border-color: var(--green-800); }
.field-label { margin-bottom: 10px; font-size: .95rem; font-weight: 600; color: #50645c; }
.pest-group { margin: 8px 0 16px; }
.pest-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.pest-grid button {
  border: 2px solid #d8dfda; background: var(--gray-100); color: var(--green-700); border-radius: 18px;
  padding: 14px 10px; font-weight: 600; cursor: pointer; transition: .18s ease;
}
.pest-grid button:hover, .pest-grid button.active { border-color: var(--green-800); background: #f0f6f1; }
.micro-copy {
  display: flex; flex-wrap: wrap; gap: 6px 10px; margin-top: 16px; font-size: .8rem; font-weight: 600; color: #5e7369;
}
.legal { margin: 10px 0 0; font-size: .72rem; line-height: 1.6; color: #6a7b73; }

.trust-strip-section { background: var(--gray-150); border-bottom: 1px solid var(--gray-300); }
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 16px 0;
}
.trust-strip > div {
  text-align: center; font-weight: 700; font-size: .95rem; color: var(--green-700);
  background: white; border-radius: 18px; padding: 14px 12px; box-shadow: var(--shadow-sm);
}

.section { padding: 28px 0 36px; background: #fff; }
.white-section { background: white; }
.intro-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 20px; align-items: center; margin-bottom: 28px;
}
.intro-grid h2, .section-title h2 { margin: 8px 0 0; font-size: clamp(2rem, 4vw, 2.7rem); line-height: 1.15; }
.intro-grid p, .section-title p { margin: 16px 0 0; color: var(--text-mid); line-height: 1.75; }
.image-card {
  overflow: hidden; border-radius: 32px; border: 1px solid var(--gray-400); background: #f8faf8; box-shadow: var(--shadow-sm);
}
.image-card img, .wide-image img { width: 100%; height: 320px; object-fit: cover; }
.section-title { text-align: center; margin-bottom: 24px; }

.service-grid, .steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.service-card, .step-card {
  text-align: center; background: #fafbf9; border: 1px solid #dfe6e0; border-radius: 28px; padding: 24px; box-shadow: var(--shadow-sm);
}
.service-icon {
  width: 56px; height: 56px; margin: 0 auto; display:flex; align-items:center; justify-content:center;
  border-radius: 18px; background: var(--green-100); font-size: 2rem;
}
.service-card h3, .step-card h3, .feature-copy h3 { margin: 16px 0 0; font-size: 1.35rem; }
.service-card p, .step-card p, .feature-copy p { margin: 10px 0 0; color: var(--text-mid); line-height: 1.7; }

.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  overflow: hidden; border: 1px solid var(--gray-400); border-radius: 30px; background: white;
}
.feature-card.muted { background: #f4f8f5; }
.feature-copy { padding: 26px 28px; }
.feature-card img { width: 100%; height: 176px; object-fit: cover; }

.wide-image { margin-bottom: 32px; }
.step-num {
  width: 48px; height: 48px; margin: 0 auto; display:flex; align-items:center; justify-content:center;
  border-radius: 999px; background: var(--green-800); color: white; font-weight: 700;
}
.steps-grid { grid-template-columns: repeat(3, 1fr); }
.final-cta { margin-top: 40px; text-align: center; }
.final-cta p { margin: 0; font-size: 1.1rem; font-weight: 600; color: var(--green-700); }
.final-cta .btn { margin-top: 20px; }

.site-footer {
  border-top: 1px solid var(--gray-400); padding-bottom: 24px; background: white;
}
.footer-inner { color: #697b73; font-size: .95rem; padding-top: 24px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--green-900); }

.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 12px 16px; background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-top: 1px solid #d9e2dc;
}
.mobile-cta .btn { border-radius: 18px; width: 100%; padding: 14px 16px; }

@media (max-width: 1024px) {
  .hero-grid,
  .intro-grid,
  .feature-grid,
  .service-grid,
  .trust-strip,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { width: min(100% - 24px, 1120px); }
  .desktop-only { display: none; }
  .hero-grid,
  .intro-grid,
  .service-grid,
  .trust-grid,
  .trust-strip,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 28px; padding: 24px 0 40px; }
  .quote-top { padding: 18px 20px; }
  .quote-top h2 { font-size: 1.65rem; }
  .quote-form { padding: 20px; }
  .pest-grid { grid-template-columns: repeat(2, 1fr); }
  .image-card img, .wide-image img { height: 240px; }
  .feature-copy { padding: 22px; }
  .header-inner, .footer-inner { flex-direction: column; align-items: flex-start; }
  .header-inner { flex-direction: row; }
  .site-footer { padding-bottom: 84px; }
  .mobile-cta { display: grid; }
}
