:root {
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --text: #14161a;
  --muted: #6b7280;
  --accent: #2653ff;
  --accent-dark: #1c3fd1;
  --accent-soft: #e9eeff;
  --ok: #1a9e55;
  --warn: #d97706;
  --err: #dc2626;
  --info: #6b7280;
  --border: #e5e7eb;
  --radius: 14px;
  --maxw: 1320px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text); background: var(--bg); line-height: 1.55; font-size: 16px;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
a { color: var(--accent); }
h1 { font-size: clamp(34px, 4vw, 52px); line-height: 1.12; letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 2.6vw, 34px); letter-spacing: -0.01em; margin-bottom: 30px; text-align: center; }
h3 { font-size: 18px; margin-bottom: 10px; }
.sec { padding: 72px 0; }
.sec--soft { background: var(--bg-soft); }
.sec__lead { color: var(--muted); font-size: 17px; text-align: center; max-width: 640px; margin: -14px auto 40px; }

/* Header */
.hd { border-bottom: 1px solid var(--border); position: sticky; top: 0; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); z-index: 50; }
.hd__in { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.hd__logo { font-weight: 800; font-size: 20px; letter-spacing: -0.01em; color: var(--text); text-decoration: none; }
.hd__logo span { color: var(--accent); }
.hd__nav { display: flex; gap: 24px; align-items: center; }
.hd__nav a { color: var(--text); text-decoration: none; font-size: 14.5px; }
.hd__nav a:hover { color: var(--accent); }
@media (max-width: 760px) { .hd__nav { display: none; } }

/* Hero */
.hero { text-align: center; padding: 88px 0 72px; background: linear-gradient(180deg, var(--bg-soft), var(--bg)); }
.hero__label { display: inline-block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); background: var(--accent-soft); padding: 6px 14px; border-radius: 20px; margin-bottom: 22px; }
.hero h1 { max-width: 900px; margin: 0 auto; }
.hero__sub { color: var(--muted); font-size: 19px; margin: 20px auto 36px; max-width: 720px; }
.checkform { display: flex; gap: 10px; max-width: 680px; margin: 0 auto; }
.checkform input[type="text"]:not(.hp) {
  flex: 1; padding: 17px 20px; font-size: 17px; border: 2px solid var(--border);
  border-radius: var(--radius); outline: none; min-width: 0; font-family: inherit;
}
.checkform input:focus { border-color: var(--accent); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.checkform button {
  padding: 17px 36px; font-size: 17px; font-weight: 700; color: #fff; background: var(--accent);
  border: 0; border-radius: var(--radius); cursor: pointer; transition: background .15s; font-family: inherit;
}
.checkform button:hover { background: var(--accent-dark); }
.checkform button:disabled { opacity: .6; cursor: wait; }
@media (max-width: 560px) { .checkform { flex-direction: column; } }
.progress { max-width: 680px; margin: 26px auto 0; }
.progress__bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.progress__bar i { display: block; height: 100%; width: 0; background: var(--accent); transition: width .8s ease; }
.progress__step { margin-top: 10px; color: var(--muted); font-size: 14px; }
.checkerr { max-width: 680px; margin: 20px auto 0; color: var(--err); background: #fef2f2; border: 1px solid #fecaca; padding: 12px 16px; border-radius: var(--radius); font-size: 15px; }
.hero__nums { display: flex; justify-content: center; gap: 56px; margin-top: 52px; flex-wrap: wrap; }
.hero__nums b { display: block; font-size: 32px; font-weight: 800; letter-spacing: -0.02em; }
.hero__nums span { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
@media (max-width: 560px) { .hero__nums { gap: 28px; } }

/* Cards */
.cards { display: grid; gap: 20px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .cards--3, .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cards--2, .cards--3, .cards--4 { grid-template-columns: 1fr; } }
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.card ul { list-style: none; }
.card ul li { padding: 4px 0 4px 24px; position: relative; font-size: 14.5px; color: var(--muted); }
.card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 700; }
.card__num { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card p { font-size: 14.5px; color: var(--muted); }

/* Stakes (штрафы и риски) */
.stake { padding: 30px; }
.stake__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.stake__icon svg { width: 28px; height: 28px; }
.stake__num { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; color: var(--accent); margin-bottom: 8px; }
.stake p { font-size: 14.5px; }

/* Pricing */
.price { display: flex; flex-direction: column; position: relative; }
.price__num { font-size: 36px; font-weight: 800; margin: 4px 0 16px; letter-spacing: -0.02em; }
.price__num span { font-size: 15px; font-weight: 400; color: var(--muted); }
.price ul { flex: 1; margin-bottom: 20px; }
.price--hit { border: 2px solid var(--accent); }
.price__badge { position: absolute; top: -13px; right: 18px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; padding: 3px 12px; border-radius: 20px; }
.pricing__note { color: var(--muted); font-size: 14px; margin-top: 22px; text-align: center; }
.btn { display: inline-block; text-align: center; padding: 12px 26px; background: var(--accent); color: #fff; border: 2px solid var(--accent); border-radius: var(--radius); text-decoration: none; font-weight: 700; font-size: 15px; cursor: pointer; transition: .15s; font-family: inherit; }
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn--ghost { background: transparent; color: var(--accent); }
.btn--ghost:hover { background: var(--accent); color: #fff; }
.btn--big { padding: 16px 36px; font-size: 17px; white-space: nowrap; }
.btn--small { padding: 8px 18px; font-size: 14px; white-space: nowrap; }

/* Monitor + CTA */
.monitor { background: var(--text); color: #fff; padding: 64px 0; }
.monitor h2, .cta h2 { text-align: left; margin-bottom: 0; }
.monitor__in, .cta__in { display: flex; align-items: center; gap: 40px; justify-content: space-between; }
.monitor p, .cta p { opacity: .8; max-width: 640px; margin-top: 12px; }
.cta { background: var(--accent); color: #fff; padding: 64px 0; }
.cta .btn { background: #fff; color: var(--accent); border-color: #fff; }
.cta .btn:hover { background: var(--text); border-color: var(--text); color: #fff; }
@media (max-width: 760px) { .monitor__in, .cta__in { flex-direction: column; align-items: flex-start; } }

/* FAQ */
.faq__list { max-width: 860px; margin: 0 auto; }
.faq__list details { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq__list summary { font-weight: 700; cursor: pointer; font-size: 17px; }
.faq__list details p { margin-top: 10px; color: var(--muted); }

/* SEO text */
.seotext h2 { text-align: left; }
.seotext p { margin-bottom: 14px; color: var(--muted); max-width: 860px; }

/* Footer */
.ft { border-top: 1px solid var(--border); padding: 40px 0; font-size: 14px; color: var(--muted); }
.ft__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 700px) { .ft__cols { grid-template-columns: 1fr; } }
.ft__logo { font-weight: 800; color: var(--text); margin-bottom: 8px; font-size: 17px; }
.ft__logo span { color: var(--accent); }
.ft__small { font-size: 12.5px; }
.ft__bottom { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 13px; }

/* ===== Report ===== */
.rep { padding: 48px 0 80px; }
.rep h1 { text-align: left; }
.rep__label { text-transform: uppercase; letter-spacing: .08em; font-size: 12px; color: var(--muted); }
.rep__head { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 34px; flex-wrap: wrap; }
.rep__head h1 { overflow-wrap: anywhere; }
.rep__meta { margin-top: 10px; color: var(--muted); font-size: 14px; }
.st--error { color: var(--err); font-weight: 600; }
.st--warning { color: var(--warn); font-weight: 600; }
.st--ok { color: var(--ok); font-weight: 600; }
.score { width: 116px; height: 116px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 6px solid; flex-shrink: 0; }
.score--good { border-color: var(--ok); color: var(--ok); }
.score--mid { border-color: var(--warn); color: var(--warn); }
.score--bad { border-color: var(--err); color: var(--err); }
.score__num { font-size: 36px; font-weight: 800; line-height: 1; }
.score__label { font-size: 12px; color: var(--muted); }
.tabs { display: flex; gap: 6px; border-bottom: 2px solid var(--border); margin-bottom: 22px; overflow-x: auto; }
.tabs__btn { padding: 12px 18px; background: none; border: 0; border-bottom: 3px solid transparent; font-size: 15px; font-weight: 600; cursor: pointer; color: var(--muted); white-space: nowrap; margin-bottom: -2px; font-family: inherit; }
.tabs__btn._active { color: var(--text); border-bottom-color: var(--accent); }
.badge { display: inline-block; min-width: 20px; padding: 0 6px; border-radius: 10px; font-size: 12px; color: #fff; margin-left: 4px; }
.badge--error { background: var(--err); }
.badge--warning { background: var(--warn); }
.tabpane { display: none; }
.tabpane._active { display: block; }
.tabpane__score { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.res { display: flex; gap: 14px; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; }
.res__icon { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: #fff; }
.res--ok .res__icon { background: var(--ok); }
.res--warning .res__icon { background: var(--warn); }
.res--error .res__icon { background: var(--err); }
.res--info .res__icon, .res--skipped .res__icon { background: var(--info); }
.res--error { border-color: #fecaca; background: #fff8f8; }
.res--warning { border-color: #fde9c8; background: #fffcf5; }
.res__title { font-weight: 700; }
.res__summary { color: var(--muted); font-size: 14.5px; margin-top: 2px; overflow-wrap: anywhere; }
.res__rec { font-size: 14px; margin-top: 8px; padding: 10px 12px; background: var(--bg-soft); border-radius: 8px; }
.res__det { margin-top: 8px; font-size: 13px; }
.res__det summary { cursor: pointer; color: var(--accent); }
.res__det ul { margin: 8px 0 0 18px; color: var(--muted); overflow-wrap: anywhere; }
.res__empty { color: var(--muted); }
.rep__cta { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px; background: var(--bg-soft); border-radius: var(--radius); margin-top: 18px; font-size: 15px; flex-wrap: wrap; }
.rep__foot { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.rep__fail { color: var(--err); }
.rep__disclaimer { margin-top: 26px; font-size: 12.5px; color: var(--muted); }
@media (max-width: 700px) {
  .sec { padding: 48px 0; }
  .hero { padding: 60px 0 52px; }
  .rep__head { flex-direction: column; align-items: flex-start; }
}

/* Cookie bar */
.cookiebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; padding: 0 16px 16px; }
.cookiebar__in { max-width: 860px; margin: 0 auto; background: var(--text); color: #fff; border-radius: var(--radius); padding: 18px 22px; display: flex; align-items: center; gap: 22px; box-shadow: 0 8px 30px rgba(0,0,0,.25); }
.cookiebar__in p { font-size: 13.5px; opacity: .9; }
.cookiebar__in a { color: #fff; }
.cookiebar__btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookiebar .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.cookiebar .btn--ghost:hover { background: #fff; color: var(--text); border-color: #fff; }
@media (max-width: 640px) { .cookiebar__in { flex-direction: column; align-items: flex-start; gap: 12px; } }

/* Billing toggle */
.billing { display: flex; justify-content: center; gap: 0; margin: -6px 0 34px; }
.billing__btn { padding: 10px 22px; font-size: 15px; font-weight: 700; font-family: inherit; cursor: pointer; background: var(--bg); color: var(--muted); border: 2px solid var(--border); transition: .15s; }
.billing__btn:first-child { border-radius: var(--radius) 0 0 var(--radius); border-right-width: 0; }
.billing__btn:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.billing__btn._active { background: var(--accent); border-color: var(--accent); color: #fff; }
.billing__btn em { font-style: normal; font-size: 12px; background: rgba(255,255,255,.25); padding: 1px 7px; border-radius: 10px; margin-left: 4px; }
.billing__btn:not(._active) em { background: var(--accent-soft); color: var(--accent); }
.price__old { color: var(--muted); font-size: 18px; font-weight: 400; margin-left: 8px; }
