:root {
  --forest: #153a2c;
  --forest-deep: #0b261c;
  --forest-soft: #315c49;
  --moss: #d7e56a;
  --moss-dark: #bacb45;
  --paper: #f1eee4;
  --paper-light: #faf8f1;
  --clay: #c86a42;
  --ink: #183128;
  --muted: #68756e;
  --line: rgba(24, 49, 40, 0.16);
  --white: #fff;
  --container: 1240px;
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", Helvetica, sans-serif;
  --shadow: 0 28px 80px rgba(10, 35, 26, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
button, a, summary, input, select { touch-action: manipulation; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--moss);
  outline-offset: 4px;
}

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--forest);
  background: var(--moss);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(11, 38, 28, 0.94);
  backdrop-filter: blur(18px);
}
.header-row { display: flex; min-height: 82px; align-items: center; gap: 26px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 126px; height: 63px; object-fit: contain; }
.brand span {
  max-width: 72px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.main-nav { display: flex; align-items: center; gap: 23px; margin-left: auto; }
.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}
.main-nav a:hover { color: var(--moss); }
.header-contact {
  display: grid;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  line-height: 1.25;
}
.header-contact span { color: rgba(255, 255, 255, 0.54); font-size: 10px; }
.header-contact a { color: var(--white); font-size: 15px; font-weight: 800; text-decoration: none; }

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--moss);
  border-radius: 999px;
  color: var(--forest-deep);
  background: var(--moss);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button:hover {
  background: #e3ef84;
  box-shadow: 0 12px 30px rgba(215, 229, 106, 0.2);
  transform: translateY(-2px);
}
.button-small { min-height: 44px; padding: 10px 18px; font-size: 12px; }
.button-accent { border-color: var(--clay); color: var(--white); background: var(--clay); }
.button-accent:hover { background: #ad5433; box-shadow: 0 12px 30px rgba(200, 106, 66, 0.22); }
.button-light { border-color: var(--paper-light); color: var(--forest); background: var(--paper-light); }
.button-dark { border-color: var(--forest); color: var(--white); background: var(--forest); }
.button-dark:hover { border-color: var(--forest-deep); color: var(--white); background: var(--forest-deep); box-shadow: 0 12px 30px rgba(10, 35, 26, 0.18); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.menu-toggle span { display: block; width: 20px; height: 1px; margin: 5px 0; background: currentColor; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 12%, rgba(93, 149, 119, 0.2), transparent 28%),
    linear-gradient(135deg, var(--forest-deep), var(--forest) 58%, #1e4938);
}
.hero::before {
  position: absolute;
  top: -270px;
  left: -230px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}
.hero::after {
  position: absolute;
  top: -90px;
  left: -50px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.98fr);
  align-items: center;
  gap: 70px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.eyebrow > span { width: 38px; height: 1px; background: currentColor; }
.hero h1 {
  max-width: 750px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 4.6vw, 70px);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.048em;
}
h1 em, h2 em { color: var(--moss-dark); font-weight: 400; }
h1, h2, h3 { text-wrap: balance; }
.hero-lead {
  max-width: 665px;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.55;
}
.hero-principle {
  display: inline-flex;
  max-width: 660px;
  align-items: center;
  gap: 12px;
  margin: 22px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
}
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 36px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--white); font-size: 14px; font-weight: 800; text-decoration: none; }
.text-link span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform 160ms ease;
}
.text-link:hover span { transform: translate(3px, -3px); }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 52px 0 0; padding: 0; list-style: none; }
.hero-facts li { display: grid; padding: 0 23px; border-left: 1px solid rgba(255, 255, 255, 0.16); }
.hero-facts li:first-child { padding-left: 0; border-left: 0; }
.hero-facts strong { font-family: var(--display); font-size: 19px; font-weight: 600; }
.hero-facts span { margin-top: 3px; color: rgba(255, 255, 255, 0.54); font-size: 11px; }
.hero-visual { position: relative; min-height: 610px; }
.hero-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 92%;
  height: 535px;
  overflow: hidden;
  border-radius: 220px 220px 12px 12px;
  box-shadow: var(--shadow);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3, 20, 12, 0.08), rgba(3, 20, 12, 0.52)); }
.hero-note { position: absolute; z-index: 2; display: flex; align-items: center; color: var(--white); backdrop-filter: blur(12px); }
.hero-note-top {
  top: 44px;
  left: 50%;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(8, 38, 26, 0.42);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transform: translateX(-50%);
}
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--moss); box-shadow: 0 0 0 5px rgba(215, 229, 106, 0.18); }
.hero-note-bottom {
  right: 24px;
  bottom: 24px;
  display: grid;
  max-width: 250px;
  padding: 18px 20px;
  border-left: 3px solid var(--moss);
  background: rgba(7, 32, 22, 0.72);
}
.hero-note-bottom strong { font-family: var(--display); font-size: 18px; }
.hero-note-bottom span { color: rgba(255, 255, 255, 0.66); font-size: 11px; }

.coverage-card {
  position: absolute;
  z-index: 3;
  right: 52%;
  bottom: 8px;
  width: 280px;
  padding: 17px;
  color: var(--forest);
  background: var(--paper-light);
  box-shadow: var(--shadow);
  transform: rotate(-2.5deg);
}
.coverage-head { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.coverage-head span { font-family: var(--display); font-size: 18px; font-weight: 700; }
.coverage-head small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; }
.coverage-map {
  position: relative;
  height: 165px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(21, 58, 44, 0.2);
  background:
    linear-gradient(rgba(21, 58, 44, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 58, 44, 0.05) 1px, transparent 1px),
    #eef0df;
  background-size: 15px 15px;
}
.zone { position: absolute; border: 1px dashed var(--forest-soft); border-radius: 50%; background: rgba(85, 142, 109, 0.16); }
.zone::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clay);
  content: "";
  transform: translate(-50%, -50%);
}
.zone-a { top: 14px; left: 14px; width: 110px; height: 110px; }
.zone-b { right: -20px; bottom: -12px; width: 150px; height: 150px; }
.zone-c { bottom: -36px; left: 30px; width: 95px; height: 95px; }
.map-house {
  position: absolute;
  top: 20px;
  right: 23px;
  display: grid;
  width: 76px;
  height: 60px;
  place-items: center;
  color: var(--paper-light);
  background: var(--forest);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.map-path { position: absolute; right: 89px; bottom: -30px; width: 18px; height: 130px; background: rgba(200, 106, 66, 0.24); transform: rotate(22deg); }
.map-tree { position: absolute; width: 9px; height: 9px; border: 2px solid var(--forest); border-radius: 50%; }
.tree-one { top: 116px; left: 17px; }
.tree-two { top: 12px; left: 130px; }
.tree-three { top: 94px; right: 16px; }
.coverage-legend { display: flex; gap: 17px; margin-top: 11px; color: var(--muted); font-size: 9px; }
.coverage-legend span { display: flex; align-items: center; gap: 5px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-lawn { background: var(--forest-soft); }
.legend-drops { background: var(--clay); }

.hero-form-shell {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 40px;
  margin-top: 38px;
  margin-bottom: 38px;
  padding: 34px 38px;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 0 22px 60px rgba(5, 28, 19, 0.2);
}
.form-intro { display: block; }
.form-intro h2 { margin: 0; font-family: var(--display); font-size: 27px; font-weight: 600; line-height: 1.1; letter-spacing: -0.025em; }
.form-intro p { max-width: 440px; margin: 8px 0 0; color: var(--muted); font-size: 12px; }
.lead-form { display: grid; min-width: 0; grid-template-columns: minmax(145px, 1fr) minmax(175px, 1fr) minmax(165px, auto); align-items: end; gap: 12px; }
.lead-form label:not(.consent), .final-form label:not(.consent) { display: grid; gap: 7px; }
.lead-form label > span, .final-form label > span { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
input, select {
  width: 100%;
  min-height: 54px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}
input::placeholder { color: #949d98; }
.lead-form .button { min-width: 180px; }
.consent { display: flex; grid-column: 1 / -1; align-items: flex-start; gap: 8px; color: var(--muted); font-size: 10px; line-height: 1.35; }
.consent input { flex: 0 0 auto; width: 15px; min-height: 15px; margin: 0; }
.form-status { grid-column: 1 / -1; margin: 0; padding: 12px 14px; color: var(--forest); background: rgba(215, 229, 106, 0.36); font-size: 12px; font-weight: 700; }

.trust-strip { padding: 35px 0; background: var(--paper); }
.trust-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.trust-strip p { margin: 0; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.13em; }
.brand-logos { display: flex; align-items: center; gap: 36px; }
.brand-logos img { width: 110px; height: 36px; object-fit: contain; filter: grayscale(1); opacity: 0.67; transition: filter 160ms ease, opacity 160ms ease; }
.brand-logos img:hover { filter: grayscale(0); opacity: 1; }

.section { padding: 112px 0; }
.section-index { margin: 0; color: var(--forest-soft); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; }
.section-index-light { color: var(--moss); }
.section-kicker {
  margin: 0;
  color: var(--forest-soft);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.section-kicker-light { color: var(--moss); }
.simple-heading {
  display: grid;
  grid-template-columns: 0.34fr 1.66fr;
  gap: 55px;
  align-items: end;
  margin-bottom: 46px;
}
.simple-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4.1vw, 62px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.042em;
}
.split-heading { display: grid; grid-template-columns: 0.34fr 1.66fr; gap: 55px; margin-bottom: 58px; }
.split-heading h2, .system-sticky h2, .proof-copy h2, .faq-intro h2, .archive-copy h2, .final-copy h2 {
  max-width: 930px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4.1vw, 62px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.042em;
}
.split-heading > div > p { max-width: 680px; margin: 22px 0 0; color: var(--muted); font-size: 17px; }

.audience-section {
  padding-top: 85px;
  padding-bottom: 95px;
  background: var(--paper-light);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.audience-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  min-height: 145px;
  align-content: center;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}
.audience-grid article > span {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border: 2px solid var(--clay);
  border-radius: 50%;
}
.audience-grid p {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
}
.fear-section { background: var(--paper); }
.risk-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 0.9fr); gap: 12px; }
.risk-card { min-height: 280px; padding: 30px; border: 1px solid var(--line); background: rgba(250, 248, 241, 0.72); }
.risk-card-main { display: grid; min-height: 510px; grid-row: span 2; align-content: space-between; padding: 0; overflow: hidden; color: var(--white); background: var(--forest); }
.risk-card-main > div:last-child { padding: 30px; }
.risk-card h3 { margin: 28px 0 10px; font-family: var(--display); font-size: 25px; font-weight: 600; line-height: 1.12; }
.risk-card p { margin: 0; color: var(--muted); font-size: 13px; }
.risk-card-main p { color: rgba(255, 255, 255, 0.62); }
.card-label { color: var(--moss); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.13em; }
.risk-card:not(.risk-card-main) .card-label { color: var(--clay); }
.risk-visual {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 50% 120%, rgba(215, 229, 106, 0.2), transparent 45%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
}
.dry-zone { position: absolute; right: 56px; bottom: 30px; width: 95px; height: 40px; border-radius: 50%; background: rgba(200, 106, 66, 0.35); filter: blur(10px); }
.spray { position: absolute; bottom: 35px; width: 210px; height: 120px; border: 1px dashed rgba(215, 229, 106, 0.68); border-bottom: 0; border-radius: 210px 210px 0 0; transform-origin: bottom center; }
.spray-one { left: -18px; }
.spray-two { right: -25px; width: 165px; transform: rotate(-5deg); }
.sprinkler { position: absolute; bottom: 27px; width: 10px; height: 24px; background: var(--moss); }
.sprinkler-one { left: 82px; }
.sprinkler-two { right: 55px; }

.system-section { color: var(--white); background: var(--forest-deep); }
.system-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 90px; }
.system-sticky { position: sticky; top: 120px; align-self: start; }
.system-sticky .section-kicker { color: var(--moss); }
.system-sticky > p:not(.section-kicker) { max-width: 560px; margin: 24px 0 34px; color: rgba(255, 255, 255, 0.6); font-size: 17px; }
.system-photo { position: relative; margin: 0; }
.system-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(0.78) contrast(1.02); }
.system-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 250px;
  padding: 12px 15px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(7, 31, 21, 0.78);
  font-size: 10px;
  backdrop-filter: blur(10px);
}
.system-steps { display: grid; }
.system-steps article { display: grid; grid-template-columns: 45px 1fr; gap: 25px; padding: 34px 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.system-steps article:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.system-steps .step-marker {
  width: 31px;
  height: 31px;
  margin-top: 2px;
  border: 1px solid rgba(215, 229, 106, 0.55);
  border-radius: 50%;
  background: radial-gradient(circle, var(--moss) 0 3px, transparent 4px);
}
.system-steps h3 { margin: 0; font-family: var(--display); font-size: 28px; font-weight: 600; }
.system-steps p { max-width: 570px; margin: 8px 0 0; color: rgba(255, 255, 255, 0.68); font-size: 14px; }

.season-section {
  padding: 76px 0;
  background: var(--paper-light);
}
.season-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 65px;
  overflow: hidden;
  padding: 54px 60px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 18%, rgba(215, 229, 106, 0.35), transparent 23%),
    var(--paper);
}
.season-panel::after {
  position: absolute;
  right: 12%;
  bottom: -120px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(21, 58, 44, 0.11);
  border-radius: 50%;
  content: "";
}
.season-panel > * { position: relative; z-index: 1; }
.season-panel h2 {
  max-width: 820px;
  margin: 13px 0 0;
  font-family: var(--display);
  font-size: clamp(36px, 3.4vw, 51px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.038em;
}
.season-panel p:not(.section-kicker) {
  max-width: 860px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.price-section { padding-bottom: 0; background: var(--paper); }
.price-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  padding: 72px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(200, 106, 66, 0.14), transparent 34%), var(--forest);
}
.price-copy h2 { max-width: 690px; margin: 16px 0 0; font-family: var(--display); font-size: clamp(42px, 4vw, 62px); font-weight: 500; line-height: 1; letter-spacing: -0.04em; }
.price-lead { max-width: 620px; margin: 25px 0 0; color: rgba(255, 255, 255, 0.72); font-size: 17px; }
.price-note { max-width: 620px; margin: 16px 0 0; color: rgba(255, 255, 255, 0.52); font-size: 13px; }
.price-cta { display: flex; align-items: center; gap: 20px; margin-top: 38px; }
.price-cta span { max-width: 250px; color: rgba(255, 255, 255, 0.48); font-size: 11px; }
.estimate-sheet { align-self: center; padding: 34px; color: var(--ink); background: var(--paper-light); box-shadow: 18px 18px 0 rgba(215, 229, 106, 0.17); transform: rotate(1.4deg); }
.estimate-head { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 20px; border-bottom: 2px solid var(--ink); }
.estimate-head span { font-family: var(--display); font-size: 23px; font-weight: 700; }
.estimate-head strong { color: var(--clay); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; }
.price-scenarios { display: grid; }
.price-scenario {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.price-scenario strong { font-family: var(--display); font-size: 18px; font-weight: 600; }
.price-scenario span { color: var(--muted); font-size: 12px; }

.compare-section { background: var(--paper); }
.compare-table { border-top: 2px solid var(--ink); }
.compare-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; padding: 23px 18px; border-bottom: 1px solid var(--line); transition: background 160ms ease; }
.compare-row:not(.compare-header):hover { background: rgba(250, 248, 241, 0.9); }
.compare-header { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; }
.compare-row strong { font-family: var(--display); font-size: 18px; font-weight: 600; }
.compare-row span { font-size: 13px; }
.compare-row span:last-child { color: var(--forest-soft); font-weight: 700; }
.proof-numbers, .compare-table { font-variant-numeric: tabular-nums; }

.proof-section { background: var(--paper-light); }
.proof-layout { display: grid; grid-template-columns: 0.88fr 1.12fr; align-items: center; gap: 90px; }
.proof-copy > p:not(.section-kicker) { max-width: 570px; margin: 24px 0 0; color: var(--muted); font-size: 17px; }
.proof-numbers { display: grid; grid-template-columns: repeat(3, 1fr); margin: 38px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-numbers > div { display: grid; align-content: center; min-height: 130px; padding: 20px; border-left: 1px solid var(--line); }
.proof-numbers > div:first-child { padding-left: 0; border-left: 0; }
.proof-numbers strong { color: var(--clay); font-family: var(--display); font-size: 28px; font-weight: 600; }
.proof-numbers span { margin-top: 4px; color: var(--muted); font-size: 10px; }
.text-link-dark { color: var(--forest); }
.certificate-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 58px 35px 35px;
  background: var(--forest);
  box-shadow: var(--shadow);
}
.certificate-wall::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  transform: translate(12px, 12px);
  pointer-events: none;
}
.certificate-caption { position: absolute; top: 16px; left: 35px; right: 35px; display: flex; justify-content: space-between; color: var(--white); }
.certificate-caption span { font-family: var(--display); font-size: 18px; }
.certificate-caption small { color: rgba(255, 255, 255, 0.48); font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; }
.certificate-wall button {
  position: relative;
  z-index: 1;
  padding: 7px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  cursor: zoom-in;
  transition: transform 160ms ease, background 160ms ease;
}
.certificate-wall button:hover { z-index: 2; background: var(--moss); transform: translateY(-6px) rotate(-1deg); }
.certificate-wall img { width: 100%; aspect-ratio: 0.7; object-fit: cover; }

.process-section { background: var(--paper); }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.timeline::before { position: absolute; top: 8px; left: 0; right: 0; height: 1px; background: var(--line); content: ""; }
.timeline article { position: relative; padding-top: 38px; }
.timeline-dot { position: absolute; z-index: 2; top: 0; left: 0; width: 17px; height: 17px; border: 4px solid var(--paper); border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 1px var(--clay); }
.timeline small { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; }
.timeline h3 { max-width: 240px; margin: 15px 0 10px; font-family: var(--display); font-size: 25px; font-weight: 600; line-height: 1.12; }
.timeline p { max-width: 255px; margin: 0; color: var(--muted); font-size: 13px; }

.archive-section { padding: 0; background: var(--forest-deep); }
.archive-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; min-height: 780px; color: var(--white); }
.archive-visual { position: relative; min-height: 780px; margin-left: calc((100vw - min(calc(100vw - 48px), var(--container))) / -2); }
.archive-visual::after { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, var(--forest-deep)); content: ""; }
.archive-visual img { width: 100%; height: 100%; object-fit: cover; }
.archive-visual > span {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 30px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(8, 35, 24, 0.38);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(10px);
}
.archive-copy { align-self: center; padding: 80px 0 80px 75px; }
.archive-copy > p:not(.section-kicker) { max-width: 650px; margin: 20px 0 30px; color: rgba(255, 255, 255, 0.68); font-size: 15px; }
.object-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.object-grid article {
  min-height: 175px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.object-grid h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
}
.object-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.faq-section { background: var(--paper-light); }
.faq-layout { display: grid; grid-template-columns: 0.65fr 1.35fr; align-items: start; gap: 100px; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro > p:not(.section-kicker) { margin-top: 24px; color: var(--muted); }
.faq-list { border-top: 2px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 50px 25px 0; cursor: pointer; font-family: var(--display); font-size: 22px; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  content: "+";
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; margin: -8px 0 25px; padding-right: 50px; color: var(--muted); font-size: 14px; }

.final-section { padding: 0 0 90px; background: var(--paper-light); }
.final-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  overflow: hidden;
  padding: 70px;
  color: var(--white);
  background: var(--forest);
}
.final-panel::before, .final-panel::after { position: absolute; border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 50%; content: ""; }
.final-panel::before { right: -130px; bottom: -220px; width: 560px; height: 560px; }
.final-panel::after { right: -15px; bottom: -115px; width: 310px; height: 310px; }
.final-copy, .final-form { position: relative; z-index: 2; }
.eyebrow-light { color: var(--moss); }
.final-copy > p:not(.eyebrow) { max-width: 570px; margin: 24px 0 34px; color: rgba(255, 255, 255, 0.6); font-size: 17px; }
.final-contacts { display: grid; }
.final-contacts a { font-family: var(--display); font-size: 30px; text-decoration: none; }
.final-contacts span { color: rgba(255, 255, 255, 0.48); font-size: 11px; }
.final-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; align-self: center; padding: 34px; color: var(--ink); background: var(--paper-light); }
.final-form label:nth-child(3), .final-form .button { grid-column: 1 / -1; }
.consent-light { color: var(--muted); }

.site-footer { padding: 68px 0 25px; color: rgba(255, 255, 255, 0.7); background: var(--forest-deep); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 65px; }
.footer-grid > div { display: grid; align-content: start; gap: 8px; }
.footer-brand img { width: 154px; height: auto; }
.footer-brand p, .footer-grid p { max-width: 280px; margin: 10px 0 0; font-size: 12px; }
.footer-grid a { font-size: 12px; text-decoration: none; }
.footer-grid a:hover { color: var(--moss); }
.footer-label { margin-bottom: 8px; color: var(--white); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 10px; }
.footer-bottom a { text-decoration: none; }
.mobile-cta { display: none; }

.lightbox { width: min(92vw, 640px); padding: 48px 25px 25px; border: 0; background: var(--paper-light); box-shadow: var(--shadow); }
.lightbox { overscroll-behavior: contain; }
.lightbox::backdrop { background: rgba(5, 25, 18, 0.78); backdrop-filter: blur(8px); }
.lightbox img { width: auto; max-height: 78vh; margin: auto; }
.lightbox-close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  cursor: pointer;
  font-size: 24px;
}

.legal-page { min-height: 100vh; background: var(--paper-light); }
.legal-wrap { width: min(calc(100% - 40px), 850px); margin: 0 auto; padding: 70px 0 100px; }
.legal-wrap > .text-link { margin-bottom: 55px; }
.legal-wrap h1 { margin: 16px 0 30px; font-family: var(--display); font-size: clamp(40px, 6vw, 68px); font-weight: 500; line-height: 1; letter-spacing: -0.04em; }
.legal-wrap h2 { margin: 38px 0 10px; font-family: var(--display); font-size: 26px; font-weight: 600; }
.legal-wrap p { color: var(--muted); }
.legal-note { margin-top: 45px; padding: 18px; border-left: 3px solid var(--clay); background: var(--paper); font-size: 13px; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .main-nav { gap: 15px; }
  .main-nav a { font-size: 12px; }
  .header-contact { display: none; }
  .hero-grid { grid-template-columns: 1fr 0.9fr; gap: 40px; }
  .hero h1 { font-size: clamp(45px, 5.2vw, 60px); }
  .hero-visual { min-height: 570px; }
  .risk-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .risk-card:nth-child(4) { grid-column: 2 / -1; }
  .proof-layout { gap: 55px; }
  .price-panel, .final-panel { gap: 48px; padding: 55px; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 34px), var(--container)); }
  .header-button { display: none; }
  .main-nav {
    position: fixed;
    z-index: 90;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 15px 17px 24px;
    background: var(--forest-deep);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }
  .main-nav a { padding: 14px 8px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); font-size: 14px; }
  .menu-open .main-nav { transform: translateY(0); }
  .menu-toggle { display: block; margin-left: auto; }
  .hero { padding-top: 48px; }
  .hero-grid, .system-layout, .proof-layout, .faq-layout, .price-panel, .final-panel, .archive-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 530px; }
  .hero-image-wrap { left: 8%; width: 92%; height: 480px; }
  .coverage-card { right: auto; bottom: 0; left: 0; }
  .hero-form-shell { grid-template-columns: 1fr; gap: 25px; }
  .split-heading, .simple-heading { grid-template-columns: 1fr; gap: 18px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .risk-grid { grid-template-columns: 1fr 1fr; }
  .risk-card-main { grid-row: span 2; }
  .risk-card:nth-child(4) { grid-column: 2; }
  .system-sticky, .faq-intro { position: static; }
  .season-panel { grid-template-columns: 1fr; gap: 30px; padding: 48px; }
  .season-panel .button { justify-self: start; }
  .price-panel { gap: 55px; }
  .proof-layout { gap: 60px; }
  .timeline { grid-template-columns: 1fr 1fr; row-gap: 45px; }
  .timeline::before { display: none; }
  .archive-grid { min-height: auto; }
  .archive-visual { min-height: 430px; margin: 0; }
  .archive-visual::after { background: linear-gradient(180deg, transparent 55%, var(--forest-deep)); }
  .archive-copy { padding: 20px 0 75px; }
  .final-panel { padding: 55px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
}

@media (max-width: 640px) {
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-header .container { width: calc(100% - 24px); }
  .header-row { min-height: 68px; }
  .brand img { width: 108px; height: 54px; }
  .brand span { display: none; }
  .main-nav { top: 68px; }
  .hero { padding-top: 38px; }
  .hero h1 { font-size: clamp(39px, 10.7vw, 47px); }
  .hero-lead { font-size: 16px; }
  .hero-principle { align-items: flex-start; border-radius: 18px; font-size: 11px; }
  .hero-principle .pulse { margin-top: 5px; }
  .hero-actions { display: grid; align-items: stretch; gap: 18px; }
  .hero-actions .text-link { justify-self: start; }
  .hero-facts { grid-template-columns: 1fr; margin-top: 36px; border-top: 1px solid rgba(255, 255, 255, 0.16); }
  .hero-facts li, .hero-facts li:first-child { display: grid; grid-template-columns: 1fr 1fr; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .hero-facts span { text-align: right; }
  .hero-visual { min-height: 440px; margin-top: 12px; }
  .hero-image-wrap { left: 4%; width: 96%; height: 380px; border-radius: 150px 150px 8px 8px; }
  .hero-note-top { top: 38px; max-width: calc(100% - 82px); justify-content: center; padding: 9px 11px; font-size: 9px; }
  .hero-note-bottom { display: none; }
  .coverage-card { width: 210px; padding: 12px; transform: rotate(-2deg) scale(0.88); transform-origin: bottom left; }
  .coverage-map { height: 120px; }
  .hero-form-shell { margin-top: 20px; margin-bottom: 20px; padding: 25px 19px; }
  .lead-form, .final-form { grid-template-columns: 1fr; }
  .lead-form .button, .lead-form label, .final-form label, .final-form .button { grid-column: 1; }
  .trust-strip { padding: 30px 0; }
  .trust-strip-inner { display: grid; }
  .brand-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .brand-logos img { width: 105px; }
  .section { padding: 78px 0; }
  .audience-section { padding: 68px 0; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid article { min-height: 108px; padding: 21px; }
  .audience-grid p { font-size: 18px; }
  .split-heading { margin-bottom: 40px; }
  .simple-heading { margin-bottom: 34px; }
  .split-heading h2, .simple-heading h2, .system-sticky h2, .proof-copy h2, .faq-intro h2, .archive-copy h2, .final-copy h2 { font-size: 39px; }
  .split-heading > div > p, .system-sticky > p:not(.section-kicker), .proof-copy > p:not(.section-kicker), .final-copy > p:not(.eyebrow) { font-size: 15px; }
  .risk-grid { grid-template-columns: 1fr; }
  .risk-card-main { min-height: 460px; grid-row: auto; }
  .risk-card:nth-child(4) { grid-column: auto; }
  .risk-card { min-height: 230px; }
  .system-layout { gap: 45px; }
  .system-steps article { grid-template-columns: 35px 1fr; gap: 13px; }
  .system-steps .step-marker { width: 27px; height: 27px; }
  .system-steps h3 { font-size: 23px; }
  .season-section { padding: 55px 0; }
  .season-panel { width: calc(100% - 24px); padding: 38px 22px; }
  .season-panel h2 { font-size: 37px; }
  .season-panel .button { width: 100%; }
  .price-section { padding-bottom: 0; }
  .price-section .container, .final-section .container { width: 100%; }
  .price-panel, .final-panel { padding: 55px 20px; }
  .price-copy h2 { font-size: 42px; }
  .price-cta { display: grid; }
  .estimate-sheet { padding: 25px 20px; box-shadow: 9px 9px 0 rgba(215, 229, 106, 0.17); }
  .compare-table { border-top: 0; }
  .compare-row { display: grid; grid-template-columns: 1fr; gap: 8px; padding: 22px 0; border-top: 1px solid var(--line); }
  .compare-header { display: none; }
  .compare-row span:nth-child(2)::before {
    display: block;
    margin-bottom: 3px;
    color: var(--clay);
    content: "Риск";
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .compare-row span:last-child::before {
    display: block;
    margin-bottom: 3px;
    color: var(--forest-soft);
    content: "Что проверить";
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .proof-numbers { grid-template-columns: 1fr; }
  .proof-numbers > div, .proof-numbers > div:first-child { min-height: 92px; padding: 16px 0; border: 0; border-top: 1px solid var(--line); }
  .certificate-wall { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 58px 20px 20px; }
  .certificate-caption { right: 20px; left: 20px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline article { padding: 0 0 0 32px; }
  .timeline-dot { top: 4px; }
  .archive-grid { width: 100%; }
  .archive-visual { min-height: 350px; }
  .archive-copy { padding: 30px 20px 60px; }
  .object-grid { grid-template-columns: 1fr; }
  .object-grid article { min-height: auto; padding: 20px; }
  .faq-layout { gap: 42px; }
  .faq-list summary { font-size: 19px; }
  .final-section { padding-bottom: 0; }
  .final-panel { gap: 45px; }
  .final-form { padding: 25px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { gap: 20px; }
  .mobile-cta {
    position: fixed;
    z-index: 150;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: calc(58px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -10px 30px rgba(5, 28, 19, 0.2);
  }
  .mobile-cta a { display: grid; place-items: center; color: var(--white); background: var(--forest); font-size: 13px; font-weight: 800; text-decoration: none; }
  .mobile-cta a:last-child { color: var(--forest); background: var(--moss); }
}
