/* Заметно: общие стили. Тема одна, светлая. Радиусы: кнопки pill, карточки 14px, поля 10px. Акцент один: зелёный. */
:root {
  --bg: #F4F7F5; --card: #FFFFFF; --ink: #182420; --muted: #5A6A64; --line: #DFE7E3;
  --accent: #0B8A63; --accent-deep: #076C4D; --accent-soft: #E4F2EC;
  --problem: #C0472E; --problem-soft: #FAEDE8;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: "Golos Text", "Segoe UI", Arial, sans-serif; font-size: 16.5px; line-height: 1.6; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }
h1, h2, h3 { font-family: "Unbounded", "Golos Text", sans-serif; font-weight: 600; line-height: 1.15; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: var(--accent-deep); }
img { max-width: 100%; height: auto; }
.muted { color: var(--muted); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Шапка и меню */
.site-head { display: flex; align-items: center; gap: 28px; height: 68px; }
.logo { font-family: "Unbounded", sans-serif; font-weight: 600; font-size: 19px; text-decoration: none; color: var(--ink); white-space: nowrap; }
.logo b { color: var(--accent); font-weight: 600; }
.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a { color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 500; white-space: nowrap; }
.nav a:hover { color: var(--accent-deep); }
.nav-cta { font-weight: 600; font-size: 15px; text-decoration: none; color: var(--accent-deep); border: 1.5px solid var(--accent); border-radius: 999px; padding: 9px 20px; white-space: nowrap; transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--accent); color: #fff; }
.burger { display: none; position: relative; margin-left: auto; }
.burger summary { list-style: none; cursor: pointer; width: 40px; height: 40px; display: flex; flex-direction: column; justify-content: center; gap: 5px; align-items: center; border-radius: 10px; }
.burger summary::-webkit-details-marker { display: none; }
.burger summary span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.burger[open] summary { background: var(--accent-soft); }
.burger-menu { position: absolute; right: 0; top: 48px; z-index: 20; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 12px; width: min(300px, 88vw); display: flex; flex-direction: column; gap: 2px; box-shadow: 0 16px 40px rgba(24, 63, 50, .12); }
.burger-menu a { text-decoration: none; color: var(--ink); padding: 10px 12px; border-radius: 10px; font-weight: 500; }
.burger-menu a:hover { background: var(--accent-soft); }
.burger-menu .btn { margin-top: 8px; color: #fff; }
@media (max-width: 900px) {
  .nav, .site-head .nav-cta { display: none; }
  .burger { display: block; }
}

/* Кнопки */
.btn { display: inline-block; text-align: center; cursor: pointer; font: inherit; font-weight: 700; font-size: 16px; color: #fff; background: var(--accent); border: none; border-radius: 999px; padding: 14px 28px; text-decoration: none; transition: background .2s, transform .1s; }
.btn:hover { background: var(--accent-deep); color: #fff; }
.btn:active { transform: scale(.98); }
.btn.full { width: 100%; }
.btn.ghost { background: transparent; color: var(--accent-deep); border: 1.5px solid var(--accent); }
.btn.ghost:hover { background: var(--accent); color: #fff; }

/* Hero главной */
.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding: 56px 0 72px; }
.hero h1 { font-size: clamp(30px, 4.6vw, 46px); }
.hero .sub { margin-top: 18px; font-size: 18.5px; color: var(--muted); max-width: 42ch; }
.hero .facts { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; font-size: 15.5px; }
.hero .facts span { display: block; }
.hero .facts b { margin-right: 4px; color: var(--accent-deep); font-weight: 700; }

/* Форма проверки */
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 26px 28px 24px; box-shadow: 0 12px 32px rgba(24, 63, 50, .08); }
.form-card h3 { font-size: 17px; margin-bottom: 4px; }
.form-card .fc-sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.field input { width: 100%; font: inherit; font-size: 15.5px; color: var(--ink); border: 1.5px solid var(--line); border-radius: 10px; padding: 11px 14px; background: #fff; transition: border-color .15s; }
.field input:focus { outline: none; border-color: var(--accent); }
.consent { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: var(--muted); margin: 4px 0 14px; }
.consent input { margin-top: 3px; accent-color: var(--accent); }
.form-card .btn { width: 100%; }
.form-note { margin-top: 12px; font-size: 13px; color: var(--muted); text-align: center; }
.hp { position: absolute; left: -6000px; }

/* Секции */
section { padding: 64px 0; }
section.tint { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { max-width: 62ch; margin-bottom: 36px; }
.sec-head h2 { font-size: clamp(23px, 3vw, 30px); }
.sec-head p { margin-top: 12px; color: var(--muted); }

/* Главная: что проверяем, находки, шаги, цены, ИИ, о нас, FAQ */
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.check { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.check:nth-last-child(-n+2) { border-bottom: none; }
.check svg { flex: none; margin-top: 3px; }
.check b { display: block; font-size: 16px; }
.check span { font-size: 14.5px; color: var(--muted); }
.findings { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.finding { background: var(--problem-soft); border-radius: 14px; padding: 20px 22px; font-size: 15.5px; }
.finding .tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--problem); margin-bottom: 8px; }
.finding p b { font-weight: 700; }
.finding .cost { display: block; margin-top: 10px; font-size: 13.5px; color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: st; }
.stepc { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 24px; counter-increment: st; }
.stepc::before { content: counter(st); display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; background: var(--accent-soft); color: var(--accent-deep); font-weight: 700; border-radius: 999px; margin-bottom: 14px; }
.stepc b { display: block; font-size: 17px; margin-bottom: 8px; }
.stepc p { font-size: 14.5px; color: var(--muted); }
.prices { display: flex; flex-direction: column; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 6px 24px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: none; }
.price-row .pname { font-weight: 700; font-size: 17px; }
.price-row .pdesc { grid-column: 1; color: var(--muted); font-size: 14.5px; max-width: 58ch; }
.price-row .pval { font-weight: 700; font-size: 17.5px; color: var(--accent-deep); white-space: nowrap; font-variant-numeric: tabular-nums; }
.pay-note { margin-top: 18px; font-size: 14px; color: var(--muted); }
.ai-band { background: var(--ink); color: #F2F5F3; border-radius: 14px; padding: 40px 44px; display: grid; grid-template-columns: 1.4fr auto; gap: 28px; align-items: center; }
.ai-band h2 { font-size: clamp(21px, 2.6vw, 27px); color: #fff; }
.ai-band p { margin-top: 12px; color: #B9C6C0; font-size: 15.5px; max-width: 56ch; }
.ai-band .btn { white-space: nowrap; }
.about { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center; }
.about .photo { aspect-ratio: 3/3.4; border-radius: 14px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; color: var(--accent-deep); font-size: 14px; text-align: center; padding: 20px; overflow: hidden; }
.about .photo img { width: 100%; height: 100%; object-fit: cover; }
.about h2 { font-size: 24px; margin-bottom: 12px; }
.about p { color: var(--muted); margin-bottom: 10px; max-width: 60ch; }
.about p b { color: var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-weight: 700; font-size: 16.5px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--accent); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 18px; color: var(--muted); max-width: 65ch; }
.final { background: var(--card); border-top: 1px solid var(--line); }
.final .inner { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.final h2 { font-size: clamp(22px, 3vw, 28px); }

/* Внутренние страницы */
.page-hero { padding: 48px 0 40px; }
.page-hero h1 { font-size: clamp(28px, 4vw, 40px); max-width: 24ch; }
.page-hero .sub { margin-top: 16px; font-size: 18px; color: var(--muted); max-width: 58ch; }
.page-hero .actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.crumbs { font-size: 13.5px; color: var(--muted); padding-top: 18px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.prose { max-width: 70ch; }
.prose h2 { font-size: clamp(21px, 2.6vw, 26px); margin: 40px 0 12px; }
.prose h3 { font-size: 18px; margin: 26px 0 8px; }
.prose p { margin: 12px 0; }
.prose ul, .prose ol { margin: 12px 0; padding-left: 22px; }
.prose li { margin: 6px 0; }
.prose li::marker { color: var(--accent); }
.prose .lead { font-size: 18px; color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cards.two { grid-template-columns: 1fr 1fr; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; }
.card b { display: block; font-size: 16.5px; margin-bottom: 6px; }
.card p { font-size: 14.5px; color: var(--muted); }
.card .num { font-family: "Unbounded", sans-serif; font-weight: 600; font-size: 22px; color: var(--accent-deep); display: block; margin-bottom: 6px; }
.tablebox { overflow-x: auto; }
.ptable { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.ptable th { text-align: left; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); padding: 12px 16px; border-bottom: 2px solid var(--line); background: #F6F8F7; }
.ptable td { padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 15px; }
.ptable tr:last-child td { border-bottom: none; }
.ptable td.n { text-align: right; white-space: nowrap; font-weight: 700; color: var(--accent-deep); font-variant-numeric: tabular-nums; }
.ptable td.d { white-space: nowrap; color: var(--muted); }
.ptable td small { display: block; color: var(--muted); font-size: 13px; font-weight: 400; }
.cta-band { background: var(--accent-soft); border-radius: 14px; padding: 32px 36px; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; margin: 48px 0 0; }
.cta-band h2 { font-size: clamp(20px, 2.4vw, 25px); }
.cta-band p { margin-top: 8px; color: var(--muted); max-width: 56ch; }
.quote { background: var(--accent-soft); border-radius: 14px; padding: 16px 20px; margin: 20px 0; color: var(--ink); font-size: 16.5px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.preview { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; box-shadow: 0 12px 32px rgba(24, 63, 50, .08); }
.preview img { display: block; width: 100%; }
.pill { display: inline-block; font-size: 12.5px; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-deep); }
.pill.red { background: var(--problem-soft); color: var(--problem); }

/* Статьи */
.article { max-width: 720px; }
.article h1 { font-size: clamp(26px, 3.6vw, 36px); }
.article .date { font-size: 13.5px; color: var(--muted); margin-top: 10px; }
.article h2 { font-size: 22px; margin: 36px 0 10px; }
.article p { margin: 12px 0; }
.article table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
.article th, .article td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.article th { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.post-list { display: grid; gap: 14px; }
.post-list a { display: block; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 20px 24px; text-decoration: none; color: var(--ink); }
.post-list a b { display: block; font-size: 17px; margin-bottom: 4px; }
.post-list a span { color: var(--muted); font-size: 14.5px; }

/* Подвал */
.site-foot { padding: 36px 0 44px; border-top: 1px solid var(--line); margin-top: 48px; }
.foot-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; font-size: 14.5px; }
.foot-cols > div > b { display: block; margin-bottom: 8px; }
.foot-cols .logo b { display: inline; margin: 0; }
.foot-cols a { display: block; color: var(--muted); text-decoration: none; margin: 4px 0; }
.foot-cols a:hover { color: var(--accent-deep); }
.foot-cols p { max-width: 34ch; font-size: 14px; margin-top: 8px; }
.copy { margin-top: 26px; font-size: 13.5px; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding: 32px 0 48px; }
  .checks, .findings, .cards, .cards.two, .two-col { grid-template-columns: 1fr; }
  .check:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; }
  .ai-band, .cta-band { grid-template-columns: 1fr; padding: 30px 26px; }
  .about { grid-template-columns: 1fr; }
  .about .photo { max-width: 300px; }
  .final .inner { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  section { padding: 48px 0; }
}
@media (max-width: 520px) { .foot-cols { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn, .nav-cta { transition: none; } }
