/* Uplift — стили лендинга. Бумажно-терракотовая тема и фирменные шрифты
   как на demo.smittmediagroup.ru (Unbounded — заголовки, Golos Text — текст,
   self-hosted). Без внешних CDN. */
@font-face { font-family:"Unbounded"; font-style:normal; font-display:swap; font-weight:200 900;
  src:url(/assets/fonts/unbounded-cyrillic-wght-normal-C627f1f8.woff2) format("woff2-variations");
  unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116; }
@font-face { font-family:"Unbounded"; font-style:normal; font-display:swap; font-weight:200 900;
  src:url(/assets/fonts/unbounded-latin-wght-normal-D5afBTBx.woff2) format("woff2-variations");
  unicode-range:U+0-FF,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }
@font-face { font-family:"Golos Text"; font-style:normal; font-display:swap; font-weight:400 900;
  src:url(/assets/fonts/golos-text-cyrillic-wght-normal-mKek_fSS.woff2) format("woff2-variations");
  unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116; }
@font-face { font-family:"Golos Text"; font-style:normal; font-display:swap; font-weight:400 900;
  src:url(/assets/fonts/golos-text-latin-wght-normal-BS5oQT7X.woff2) format("woff2-variations");
  unicode-range:U+0-FF,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }

:root {
  --bg: #ede7dc;          /* paper */
  --bg2: #e3dbcc;         /* paper-deep */
  --card: #f8f4ec;
  --card2: #ffffff;
  --text: #14181a;        /* ink */
  --muted: #6b6f6b;       /* stone */
  --accent: #c1462b;      /* sandstone */
  --accent2: #1f2a2e;     /* deep */
  --cta: #c1462b;
  --cta-h: #a83a22;
  --good: #1e7d4f;
  --warn: #b07d10;
  --bad: #c0392b;
  --line: rgba(20,24,26,.1);
  --radius: 14px;
  --maxw: 1120px;
  --font-display: "Unbounded", "Segoe UI", sans-serif;
  --font-body: "Golos Text", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  background-image: radial-gradient(120% 80% at 12% 0%, #fff6 0%, transparent 60%),
                    linear-gradient(180deg, transparent 55%, #6b6f6b12 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
.small { font-size: 13px; }

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(237, 231, 220, .88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; height: 62px; }
.logo { display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text); }
.logo:hover { text-decoration: none; }
.logo svg { width: 28px; height: 28px; }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: 15px; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.lang-switch { border: 1px solid rgba(20,24,26,.25); border-radius: 8px;
  padding: 4px 10px; font-size: 13px; color: var(--muted); }
.lang-switch:hover { color: var(--text); text-decoration: none; }
.burger { display: none; margin-left: auto; background: transparent;
  border: 1px solid rgba(20,24,26,.25); border-radius: 8px; width: 40px;
  height: 34px; cursor: pointer; color: var(--text); font-size: 18px; }
.mnav { display: none; background: var(--card2); border-top: 1px solid var(--line); }
.mnav a { display: block; padding: 13px 20px; color: var(--text);
  border-bottom: 1px solid var(--line); font-size: 15px; }
.mnav a:hover { text-decoration: none; color: var(--accent); }
.mnav.open { display: block; }
@media (max-width: 720px) { .burger { display: block; }
  .lang-switch { margin-left: 0; } }

/* ---------- hero ---------- */
.hero { padding: 72px 0 40px; text-align: center; position: relative;
  overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -40% -20% auto; height: 130%;
  background:
    radial-gradient(600px 300px at 30% 20%, rgba(193,70,43,.10), transparent 70%),
    radial-gradient(500px 260px at 70% 10%, rgba(31,42,46,.08), transparent 70%);
  pointer-events: none;
}
.hero > .wrap { position: relative; }
.badge { display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: rgba(193,70,43,.08); border: 1px solid rgba(193,70,43,.35);
  color: var(--accent); font-size: 13px; font-weight: 600;
  margin-bottom: 22px; }
h1 { font-family: var(--font-display);
  font-size: clamp(26px, 4.4vw, 46px); line-height: 1.16; font-weight: 700;
  letter-spacing: -.3px; max-width: 880px; margin: 0 auto 18px; }
h1 .grad { color: var(--accent); }
.sub { font-size: clamp(16px, 2vw, 19px); color: var(--muted);
  max-width: 640px; margin: 0 auto 34px; }

.url-form { display: flex; gap: 10px; max-width: 640px; margin: 0 auto;
  background: var(--card2); padding: 10px; border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(31,42,46,.14); }
.url-form input { flex: 1; min-width: 0; background: transparent; border: 0;
  outline: 0; color: var(--text); font-size: 17px; padding: 12px 14px;
  font-family: var(--font-body); }
.url-form input::placeholder { color: #9a9789; }
.btn {
  display: inline-block; border: 0; cursor: pointer; border-radius: 12px;
  background: var(--cta);
  color: #fff; font-weight: 700; font-size: 16px; padding: 14px 26px;
  font-family: var(--font-body);
  transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); background: var(--cta-h);
  box-shadow: 0 10px 26px rgba(193,70,43,.3); text-decoration: none; }
.btn:disabled { opacity: .6; cursor: wait; transform: none; }
.btn-ghost { background: transparent; border: 1.5px solid rgba(20,24,26,.35);
  color: var(--text); }
.btn-ghost:hover { background: transparent; box-shadow: none;
  border-color: var(--text); }
.hero-note { margin-top: 14px; font-size: 13px; color: var(--muted); }
.hero-strip { display: flex; gap: 26px; justify-content: center;
  flex-wrap: wrap; margin-top: 44px; color: var(--muted); font-size: 14px; }
.hero-strip b { color: var(--text); }

/* ---------- summary box (AEO: BLUF above the fold) ---------- */
.summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  background: var(--card2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; margin: 6px 0 10px; box-shadow: 0 8px 26px rgba(31,42,46,.06); }
.summary div { font-size: 14px; color: var(--muted); }
.summary b { display: block; font-family: var(--font-display); font-size: 12px;
  color: var(--text); margin-bottom: 4px; letter-spacing: .02em; }
@media (max-width: 720px) { .summary { grid-template-columns: 1fr; gap: 12px; } }

/* ---------- analysis ---------- */
#result { display: none; padding: 20px 0 60px; }
#result.open { display: block; }
.panel { background: var(--card2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; margin-top: 22px;
  box-shadow: 0 8px 30px rgba(31,42,46,.06); }
.progress-steps { list-style: none; max-width: 520px; margin: 0 auto; }
.progress-steps li { display: flex; align-items: center; gap: 12px;
  padding: 9px 0; color: var(--muted); font-size: 15px; opacity: .35;
  transition: opacity .3s; }
.progress-steps li.active { opacity: 1; color: var(--text); }
.progress-steps li.done { opacity: .8; color: var(--good); }
.spinner { width: 17px; height: 17px; border-radius: 50%;
  border: 2px solid rgba(20,24,26,.15); border-top-color: var(--accent);
  animation: spin .8s linear infinite; flex: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.check-ico { width: 17px; text-align: center; flex: none; }

.score-grid { display: grid; grid-template-columns: 220px 1fr; gap: 34px;
  align-items: center; }
@media (max-width: 720px) { .score-grid { grid-template-columns: 1fr; } }
.score-ring { position: relative; width: 200px; height: 200px; margin: 0 auto; }
.score-ring svg { transform: rotate(-90deg); }
.score-num { position: absolute; inset: 0; display: flex;
  flex-direction: column; align-items: center; justify-content: center; }
.score-num b { font-family: var(--font-display); font-size: 46px;
  line-height: 1; }
.score-num span { font-size: 13px; color: var(--muted); }
.cat-row { display: flex; align-items: center; gap: 14px; margin: 10px 0; }
.cat-name { width: 170px; font-size: 14px; color: var(--muted); flex: none; }
.cat-bar { flex: 1; height: 10px; border-radius: 6px;
  background: rgba(20,24,26,.08); overflow: hidden; }
.cat-fill { height: 100%; border-radius: 6px; width: 0;
  transition: width 1s ease; }
.cat-val { width: 36px; text-align: right; font-size: 14px; font-weight: 700; }

.issues { margin-top: 6px; }
.issue { display: flex; gap: 12px; padding: 12px 0;
  border-top: 1px solid var(--line); font-size: 15px; }
.issue:first-child { border-top: 0; }
.issue .sev { flex: none; width: 22px; text-align: center; }
.issue b { display: block; font-size: 15px; }
.issue p { color: var(--muted); font-size: 14px; margin-top: 2px; }

.variants { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 22px; }
@media (max-width: 860px) { .variants { grid-template-columns: 1fr; } }
.variant { background: var(--card2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; display: flex;
  flex-direction: column; box-shadow: 0 8px 30px rgba(31,42,46,.06); }
.variant .vletter { width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  margin-bottom: 14px; }
.variant.va .vletter { background: rgba(193,70,43,.12); color: var(--accent); }
.variant.vb .vletter { background: rgba(31,42,46,.1); color: var(--accent2); }
.variant.vc .vletter { background: rgba(30,125,79,.12); color: var(--good); }
.variant h4 { font-family: var(--font-display); font-size: 16px;
  font-weight: 600; margin-bottom: 8px; }
.variant .hyp { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.variant ul { list-style: none; font-size: 14px; }
.variant li { padding: 7px 0 7px 24px; position: relative;
  border-top: 1px solid var(--line); }
.variant li::before { content: "→"; position: absolute; left: 2px;
  color: var(--accent); }
.headline-idea { margin-top: 12px; padding: 10px 14px; border-radius: 10px;
  background: rgba(193,70,43,.07); font-size: 14px; font-style: italic; }

.gate { text-align: center; margin-top: 30px; }
.gate .panel { max-width: 620px; margin: 22px auto 0; text-align: left; }
.lead-form input[type=text] { width: 100%; background: var(--card);
  border: 1px solid rgba(20,24,26,.2); border-radius: 10px;
  color: var(--text); font-size: 16px; padding: 13px 15px; margin-top: 12px;
  outline: none; font-family: var(--font-body); }
.lead-form input[type=text]:focus { border-color: var(--accent); }
.consent { display: flex; gap: 10px; align-items: flex-start;
  margin-top: 14px; font-size: 13px; color: var(--muted); }
.consent input { margin-top: 3px; }
.lead-form .btn { width: 100%; margin-top: 18px; }
.form-msg { margin-top: 12px; font-size: 14px; text-align: center; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ---------- sections ---------- */
section { padding: 70px 0; }
h2 { font-family: var(--font-display);
  font-size: clamp(21px, 3vw, 32px); font-weight: 700;
  letter-spacing: -.2px; text-align: center; margin-bottom: 14px; }
.sec-sub { text-align: center; color: var(--muted); max-width: 620px;
  margin: 0 auto 46px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--card2); border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--line); box-shadow: 0 8px 30px rgba(31,42,46,.05); }
.step .n { width: 34px; height: 34px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-weight: 700;
  font-family: var(--font-display); color: #fff;
  background: var(--accent); margin-bottom: 14px; font-size: 14px; }
.step h3 { font-family: var(--font-display); font-size: 15px;
  font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }
.cycle-note { text-align: center; margin-top: 26px; color: var(--muted);
  font-size: 15px; }
.cycle-note b { color: var(--text); }

/* ---------- process visual (3 этапа) ---------- */
.process { display: grid; grid-template-columns: 1fr 56px 1fr 56px 1fr;
  gap: 0; align-items: stretch; margin-top: 10px; }
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; }
  .flow { transform: rotate(90deg); margin: -8px auto; }
}
.stage { background: var(--card2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 18px 18px; text-align: center;
  box-shadow: 0 10px 34px rgba(31,42,46,.08); position: relative; }
.stage .cap { font-family: var(--font-display); font-size: 14px;
  font-weight: 600; margin-top: 16px; }
.stage .sub2 { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.stage-num { position: absolute; top: -13px; left: 50%;
  transform: translateX(-50%); background: var(--accent); color: #fff;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  padding: 3px 12px; border-radius: 999px; letter-spacing: .06em;
  white-space: nowrap; }
.stage { padding-top: 26px; }
.stage .scene { margin-top: 4px; }

/* сцена внутри этапа */
.scene { height: 200px; display: flex; align-items: center;
  justify-content: center; position: relative; }
.stage-num { z-index: 3; }

/* этап 1: скриншот страницы + чек-лист находок */
.s1 { display: flex; gap: 12px; align-items: center; }
.shot { width: 112px; flex: none; background: #fff; border-radius: 10px;
  overflow: hidden; border: 1px solid var(--line); position: relative;
  box-shadow: 0 10px 24px rgba(31,42,46,.14); }
.shot img { width: 100%; height: 62px; object-fit: cover; display: block; }
.shot .ln { height: 6px; background: rgba(20,24,26,.12); border-radius: 4px;
  margin: 7px 9px 0; }
.shot .ln.sh { width: 55%; }
.shot .btnln { height: 11px; background: rgba(193,70,43,.5);
  border-radius: 5px; margin: 9px auto 10px; width: 62%; }
.scan { position: absolute; left: 0; right: 0; top: -30px; height: 30px;
  background: linear-gradient(180deg, transparent,
    rgba(193,70,43,.2) 70%, rgba(193,70,43,.55));
  border-bottom: 2px solid var(--accent); opacity: 0; }
.go .scan { animation: scan 2.8s ease-in-out infinite; }
@keyframes scan {
  0% { transform: translateY(0); opacity: 0; }
  12% { opacity: 1; }
  80% { transform: translateY(150px); opacity: 1; }
  100% { transform: translateY(150px); opacity: 0; }
}
.checks1 { display: flex; flex-direction: column; gap: 7px;
  text-align: left; }
.chk { background: #fff; border: 1px solid var(--line); border-radius: 9px;
  padding: 5px 10px; font-size: 11.5px; font-weight: 600; display: flex;
  gap: 6px; align-items: center; opacity: 0; transform: translateX(14px);
  box-shadow: 0 6px 16px rgba(31,42,46,.08); white-space: nowrap; }
.go .chk { animation: chkin .5s ease forwards; }
.go .chk:nth-child(1) { animation-delay: .4s; }
.go .chk:nth-child(2) { animation-delay: 1s; }
.go .chk:nth-child(3) { animation-delay: 1.6s; }
.go .chk:nth-child(4) { animation-delay: 2.2s; }
@keyframes chkin { to { opacity: 1; transform: none; } }
.chk.badc { color: #c0392b; }
.chk.goodc { color: #1e7d4f; }
.chk.score { background: var(--accent2); color: #fff; font-size: 12px; }
.chk.score b { font-family: var(--font-display); font-size: 17px;
  color: #ffb59f; margin-right: 2px; }

/* этап 2: три конкретных мини-варианта */
.s2 { display: flex; gap: 10px; align-items: flex-start;
  justify-content: center; }
.vmini { width: 84px; opacity: 0; transform: translateY(18px) scale(.92);
  text-align: center; }
.go .vmini { animation: pop .6s cubic-bezier(.2,.7,.3,1.2) forwards; }
.go .vmini:nth-child(1) { animation-delay: .2s; }
.go .vmini:nth-child(2) { animation-delay: .55s; }
.go .vmini:nth-child(3) { animation-delay: .9s; }
@keyframes pop { to { opacity: 1; transform: translateY(0) scale(1); } }
.card2x { background: #fff; border: 1px solid var(--line); border-radius: 9px;
  overflow: hidden; box-shadow: 0 10px 22px rgba(31,42,46,.14); }
.card2x img { width: 100%; height: 42px; object-fit: cover; display: block; }
.card2x .price-b { margin: 6px auto 8px; width: 74%; border-radius: 6px;
  background: var(--accent); color: #fff; font-size: 10px; font-weight: 800;
  padding: 3px 0; }
.card2x .stars2 { color: #e8a13c; font-size: 10px; letter-spacing: 1px;
  padding: 5px 0 1px; }
.card2x .ln { height: 5px; background: rgba(20,24,26,.12); border-radius: 3px;
  margin: 4px 8px; }
.card2x .num { font-family: var(--font-display); font-size: 13px;
  font-weight: 700; color: var(--accent2); padding-bottom: 6px; }
.card2x .play { position: relative; }
.card2x .play::after { content: "▶"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-size: 15px; text-shadow: 0 2px 10px rgba(0,0,0,.7); }
.vmini .vlbl { margin-top: 7px; font-size: 10.5px; font-weight: 700;
  color: var(--muted); line-height: 1.25; }
.vmini .vlbl b { display: inline-block; width: 15px; height: 15px;
  line-height: 15px; border-radius: 4px; color: #fff; font-size: 9.5px;
  text-align: center; margin-right: 3px; }
.vmini:nth-child(1) .vlbl b { background: var(--accent); }
.vmini:nth-child(2) .vlbl b { background: var(--accent2); }
.vmini:nth-child(3) .vlbl b { background: var(--good); }
.visits { white-space: nowrap; font-size: 11px; }
.vmini .vlbl b { color: var(--text); }

/* этап 3: трафик и заявки */
.race { width: 214px; }
.visits { font-size: 11.5px; font-weight: 700; color: var(--muted);
  text-align: center; margin-bottom: 10px; background: rgba(20,24,26,.05);
  border-radius: 8px; padding: 4px 8px; }
.lane { display: flex; align-items: center; gap: 8px; margin: 11px 0; }
.lane .tag { width: 20px; height: 20px; border-radius: 6px; color: #fff;
  font-family: var(--font-display); font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex: none; }
.lane.la .tag { background: var(--accent); }
.lane.lb .tag { background: var(--accent2); }
.lane.lc .tag { background: var(--good); }
.track { flex: 1; height: 13px; border-radius: 7px;
  background: rgba(20,24,26,.07); overflow: hidden; position: relative; }
.fill2 { height: 100%; width: 0; border-radius: 7px; }
.lane.la .fill2 { background: rgba(193,70,43,.45); }
.lane.lb .fill2 { background: var(--accent2); }
.lane.lc .fill2 { background: rgba(30,125,79,.45); }
.go .lane.la .fill2 { animation: grow 2.2s .3s ease forwards; --w: 37%; }
.go .lane.lb .fill2 { animation: grow 2.2s .3s ease forwards; --w: 100%; }
.go .lane.lc .fill2 { animation: grow 2.2s .3s ease forwards; --w: 52%; }
@keyframes grow { to { width: var(--w); } }
.track::after { content: ""; position: absolute; top: 50%; left: -20%;
  width: 7px; height: 7px; margin-top: -3.5px; border-radius: 50%;
  background: var(--accent); opacity: 0; }
.go .track::after { animation: dots 1.6s linear infinite; }
.lane.lb .track::after { background: var(--accent2); }
@keyframes dots { 0% { left: -6%; opacity: 0; } 15% { opacity: .8; }
  85% { opacity: .8; } 100% { left: 100%; opacity: 0; } }
.lane .cnt { width: 72px; font-size: 11.5px; font-weight: 700;
  text-align: left; color: var(--muted); flex: none; }
.lane.lb .cnt { color: var(--accent2); }
.win-badge { display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px; background: rgba(30,125,79,.1); color: var(--good);
  border: 1px solid rgba(30,125,79,.3); border-radius: 999px;
  padding: 4px 12px; font-size: 12px; font-weight: 700; opacity: 0;
  transform: scale(.85); transition: opacity .5s 2.4s, transform .5s 2.4s; }
.go .win-badge { opacity: 1; transform: none; }

/* стрелки между этапами */
.flow { display: flex; align-items: center; justify-content: center; }
.flow svg { width: 44px; height: 24px; overflow: visible; }
.flow path { stroke: var(--accent); stroke-width: 2.5; fill: none;
  stroke-dasharray: 6 7; }
.go2 .flow path { animation: dash 1.1s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -13; } }

.loop-note { text-align: center; margin-top: 26px; color: var(--muted);
  font-size: 15px; }
.loop-note b { color: var(--text); }
.loop-ico { display: inline-block; margin-right: 6px; }
.go2 .loop-ico { animation: spin2 5s linear infinite; }
@keyframes spin2 { to { transform: rotate(360deg); } }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1),
    transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.inview { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; } .reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .go .scan, .go .track::after, .go2 .flow path, .go2 .loop-ico,
  .go .vmini, .go .chk { animation: none; }
  /* контент не должен исчезать: показываем финальное состояние статично */
  .go .vmini, .go .chk { opacity: 1; transform: none; }
  .go .lane .fill2 { animation: none; width: var(--w); }
  .go .score-chip, .go .win-badge { opacity: 1; transform: none;
    transition: none; }
}

/* pricing */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .plans { grid-template-columns: 1fr; } }
.plan { background: var(--card2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; display: flex;
  flex-direction: column; box-shadow: 0 8px 30px rgba(31,42,46,.05); }
.plan.popular { border: 2px solid var(--accent); position: relative; }
.plan.popular::before { content: attr(data-label); position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 700; padding: 3px 14px; border-radius: 999px; }
.plan h3 { font-family: var(--font-display); font-size: 16px;
  font-weight: 600; }
.price { font-family: var(--font-display); font-size: 28px;
  font-weight: 700; margin: 12px 0 2px; }
.price span { font-family: var(--font-body); font-size: 14px;
  color: var(--muted); font-weight: 400; }
.plan ul { list-style: none; margin: 18px 0 22px; font-size: 14px;
  color: var(--muted); flex: 1; }
.plan li { padding: 6px 0 6px 24px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 2px;
  color: var(--good); font-weight: 700; }
.plan .btn, .plan .btn-ghost { text-align: center; }
.pricing-note { text-align: center; color: var(--muted); font-size: 13px;
  margin-top: 26px; max-width: 720px; margin-left: auto; margin-right: auto; }

/* faq */
.faq-list { max-width: 760px; margin: 0 auto; }
details { background: var(--card2); border: 1px solid var(--line);
  border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
summary { cursor: pointer; padding: 18px 22px; font-weight: 600;
  font-size: 16px; list-style: none; position: relative; padding-right: 46px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 20px; top: 14px;
  font-size: 22px; color: var(--accent); transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
details .a { padding: 0 22px 18px; color: var(--muted); font-size: 15px; }

/* footer */
footer { border-top: 1px solid var(--line); padding: 44px 0 34px;
  color: var(--muted); font-size: 14px; background: var(--bg2); }
.foot { display: flex; flex-wrap: wrap; gap: 30px;
  justify-content: space-between; }
.foot-col { max-width: 340px; }
.foot h5 { color: var(--text); font-size: 14px; margin-bottom: 10px;
  font-family: var(--font-display); font-weight: 600; }
.foot a { display: block; color: var(--muted); padding: 3px 0; }
.foot a:hover { color: var(--text); }
.disclaimer { margin-top: 30px; padding-top: 20px;
  border-top: 1px solid var(--line); font-size: 12px;
  color: #8a8d85; line-height: 1.6; }

/* cookie banner */
#cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  background: var(--card2); border: 1px solid rgba(20,24,26,.2);
  border-radius: 14px; padding: 18px 20px; max-width: 560px; margin: 0 auto;
  box-shadow: 0 20px 50px rgba(31,42,46,.25); display: none; }
#cookie.show { display: block; }
#cookie p { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
#cookie .row { display: flex; gap: 10px; }
#cookie button { flex: 1; padding: 10px; font-size: 14px; }

/* ---------- mobile ---------- */
@media (max-width: 720px) {
  body { overflow-x: clip; }
  .nav { gap: 12px; }
  .nav-links { display: none; }
  .logo { font-size: 13px; letter-spacing: .1em; }
  .hero { padding: 44px 0 30px; }
  .url-form { flex-direction: column; padding: 8px; }
  .url-form input { padding: 12px 10px; font-size: 16px; }
  .url-form .btn { width: 100%; }
  .hero-strip { gap: 10px; margin-top: 28px; }
  .steps[style] { grid-template-columns: 1fr !important; }
  .process { grid-template-columns: 1fr; gap: 12px; }
  .flow { transform: rotate(90deg); margin: 2px auto; height: 28px; }
  .stage { padding: 26px 14px 18px; }
  .scene { height: auto; min-height: 150px; padding: 8px 0; }
  .s1 { gap: 10px; }
  .shot { width: 96px; }
  .shot img { height: 52px; }
  .chk { font-size: 10.5px; padding: 4px 8px; white-space: normal;
    text-align: left; }
  .checks1 { max-width: 210px; }
  .s2 { gap: 8px; }
  .vmini { width: 78px; }
  .race { width: 100%; max-width: 250px; }
  .lane .cnt { width: 66px; font-size: 11px; }
  .win-badge { font-size: 11px; }
  .plans, .variants { grid-template-columns: 1fr; }
  .plan.popular::before { top: -11px; }
  .score-grid { gap: 20px; }
  .cat-name { width: 120px; font-size: 13px; }
  .foot { flex-direction: column; gap: 22px; }
  .foot-col { max-width: none; }
  #cookie { left: 10px; right: 10px; bottom: 10px; padding: 14px; }
  #cookie .row { flex-direction: column; }
  section { padding: 48px 0; }
}

/* legal pages */
.legal { max-width: 800px; margin: 0 auto; padding: 50px 20px 80px; }
.legal h1 { font-size: 26px; text-align: left; margin: 0 0 8px; }
.legal .date { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.legal h2 { font-size: 19px; text-align: left; margin: 30px 0 10px; }
.legal p, .legal li { color: #3c4145; font-size: 15px; margin-bottom: 10px; }
.legal ul, .legal ol { padding-left: 24px; margin-bottom: 14px; }
.legal .ph { background: rgba(176,125,16,.1); border: 1px dashed
  rgba(176,125,16,.55); border-radius: 6px; padding: 1px 7px;
  color: #8a6208; font-family: monospace; font-size: 13px; }
