:root {
  color-scheme: light dark;
  --bg: #f7faf3;
  --surface: #ffffff;
  --surface-soft: #eef8df;
  --ink: #17210f;
  --muted: #5b6653;
  --line: #cad5bf;
  --brand: #477a00;
  --brand-strong: #315800;
  --accent: #79d900;
  --blue: #1565c0;
  --danger: #b3261e;
  --shadow: 0 22px 70px rgba(27, 50, 4, .14);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d130a;
    --surface: #172014;
    --surface-soft: #243817;
    --ink: #eef6e8;
    --muted: #b8c5b0;
    --line: #455340;
    --brand: #9be640;
    --brand-strong: #b4f466;
    --accent: #a7f24b;
    --blue: #82b1ff;
    --danger: #ffb4ab;
    --shadow: 0 22px 70px rgba(0, 0, 0, .36);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 4%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 30rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
}
.nav { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; text-decoration: none; }
.brand img { width: 42px; height: 42px; border-radius: 11px; box-shadow: 0 8px 20px rgba(71, 122, 0, .26); }
.links { display: flex; align-items: center; gap: 20px; color: var(--muted); font-size: 14px; }
.links a { text-decoration: none; }
.links a:hover, .links a:focus-visible { color: var(--ink); }
.lang { border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; color: var(--ink); font-weight: 750; }

.hero { padding: 80px 0 58px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .8fr); gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; background: var(--surface-soft); color: var(--brand-strong); font-size: 13px; font-weight: 800; }
h1 { margin: 20px 0 16px; font-size: clamp(46px, 7vw, 78px); line-height: .98; letter-spacing: -.035em; }
.lead { max-width: 680px; margin: 0; color: var(--muted); font-size: clamp(18px, 2vw, 21px); }
.hero-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.hero-points span { border: 1px solid var(--line); border-radius: 999px; padding: 7px 10px; background: var(--surface); font-size: 13px; font-weight: 750; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid var(--line); border-radius: 10px; padding: 0 19px; background: var(--surface); color: var(--ink); font-weight: 820; text-decoration: none; cursor: pointer; }
.button.primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.button.blue { background: var(--blue); border-color: var(--blue); color: #fff; }
.button:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 55%, transparent); outline-offset: 3px; }
.fine { margin-top: 12px; color: var(--muted); font-size: 12px; }

.hero-card { position: relative; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(155deg, var(--surface), var(--surface-soft)); padding: 30px; box-shadow: var(--shadow); overflow: hidden; }
.hero-card::after { content: ""; position: absolute; width: 250px; height: 250px; border-radius: 50%; right: -100px; bottom: -130px; background: color-mix(in srgb, var(--accent) 25%, transparent); }
.product-lockup { position: relative; z-index: 1; display: flex; align-items: center; gap: 18px; }
.product-lockup img { width: 94px; height: 94px; border-radius: 22px; box-shadow: 0 16px 32px rgba(0, 0, 0, .24); }
.product-lockup strong { display: block; font-size: 27px; }
.product-lockup span { color: var(--muted); }
.protection-card { position: relative; z-index: 1; margin-top: 28px; border: 1px solid color-mix(in srgb, var(--brand) 34%, var(--line)); border-radius: 16px; padding: 17px; background: color-mix(in srgb, var(--surface) 78%, var(--surface-soft)); }
.protection-row { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.status { color: var(--brand-strong); background: var(--surface-soft); border-radius: 999px; padding: 5px 9px; font-size: 12px; font-weight: 850; }
.protection-card p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }

section { padding: 62px 0; border-top: 1px solid color-mix(in srgb, var(--line) 80%, transparent); }
h2 { margin: 0 0 13px; font-size: clamp(30px, 4vw, 46px); line-height: 1.08; letter-spacing: -.025em; }
h3 { margin: 0 0 8px; line-height: 1.25; }
.section-lead { max-width: 780px; margin: 0 0 30px; color: var(--muted); font-size: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.feature, .price-card, .info-card { border: 1px solid var(--line); border-radius: 15px; padding: 22px; background: var(--surface); }
.feature { min-height: 190px; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; margin-bottom: 18px; background: var(--surface-soft); color: var(--brand-strong); font-weight: 900; }
.feature p, .price-card p, .info-card p { margin: 0; color: var(--muted); }
.price { margin: 12px 0 4px; font-size: 31px; font-weight: 900; }
.price small { color: var(--muted); font-size: 14px; font-weight: 600; }
.price-card.highlight { border-color: color-mix(in srgb, var(--blue) 65%, var(--line)); }
.tag { display: inline-block; margin-bottom: 12px; border-radius: 999px; padding: 5px 9px; background: color-mix(in srgb, var(--blue) 12%, var(--surface)); color: var(--blue); font-size: 12px; font-weight: 850; }

.slider-shell { border: 1px solid var(--line); border-radius: 22px; padding: 16px; background: var(--surface); box-shadow: var(--shadow); }
.slider { position: relative; overflow: hidden; border-radius: 15px; background: #070a05; }
.slides { display: flex; transition: transform .42s ease; }
.slide { flex: 0 0 100%; min-width: 0; display: grid; place-items: center; min-height: 360px; }
.slide img { width: 100%; max-height: 680px; object-fit: contain; }
.slider-control { position: absolute; top: 50%; translate: 0 -50%; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; background: rgba(0,0,0,.62); color: #fff; cursor: pointer; }
.slider-control.prev { left: 12px; }
.slider-control.next { right: 12px; }
.dots { display: flex; justify-content: center; gap: 7px; margin-top: 13px; }
.dot { width: 9px; height: 9px; border: 0; border-radius: 50%; background: var(--line); padding: 0; cursor: pointer; }
.dot.active { background: var(--brand); }

.notice { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 22px; border: 1px solid var(--line); border-radius: 16px; padding: 24px; background: var(--surface); }
.notice p { margin: 0; color: var(--muted); }

.page-head { padding: 66px 0 34px; }
.page-head h1 { font-size: clamp(38px, 6vw, 62px); }
.form-shell { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; align-items: start; padding-bottom: 70px; }
.report-form { border: 1px solid var(--line); border-radius: 18px; padding: 24px; background: var(--surface); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 760; }
label small { color: var(--muted); font-weight: 500; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px; background: var(--bg); color: var(--ink); }
textarea { min-height: 128px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid color-mix(in srgb, var(--accent) 42%, transparent); border-color: var(--brand); }
.checkbox { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: 14px; }
.checkbox input { width: auto; margin-top: 4px; }
.honeypot { position: absolute; left: -10000px; opacity: 0; pointer-events: none; }
.form-status { min-height: 24px; margin: 14px 0 0; font-weight: 700; }
.form-status.ok { color: var(--brand-strong); }
.form-status.error { color: var(--danger); }
.side-stack { display: grid; gap: 15px; }
.info-card ul { margin: 10px 0 0; padding-left: 20px; color: var(--muted); }
.turnstile-wrap { margin-top: 16px; min-height: 65px; }

footer { border-top: 1px solid var(--line); padding: 34px 0 46px; color: var(--muted); font-size: 14px; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-row a { color: var(--ink); font-weight: 720; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .slides { transition: none; }
}
@media (max-width: 880px) {
  .hero-grid, .form-shell, .notice { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .wrap { width: min(100% - 28px, 1120px); }
  .links a:not(.lang) { display: none; }
  .hero { padding-top: 50px; }
  .grid-3, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .slide { min-height: 230px; }
  .product-lockup img { width: 76px; height: 76px; }
  .product-lockup strong { font-size: 23px; }
}
