/* Общие стили для юридических/справочных страниц (privacy/terms/refunds/faq) —
   переиспользуют токены из landing/index.html, чтобы страницы визуально не
   выбивались из основного лендинга, но с более утилитарной, текстовой вёрсткой. */
:root{
  color-scheme:light;
  --bg:#FFFFFF; --surface:#F4F4F6; --surface-alt:#EFEFF1;
  --text-primary:#1D1D1F; --text-secondary:#6E6E73; --text-tertiary:#8E8E93;
  --border:#E3E3E6; --accent:#C2185B; --accent-subtle:rgba(194,24,91,.10);
  --header-bg:rgba(255,255,255,.88);
}
@media (prefers-color-scheme:dark){
  :root{
    color-scheme:dark;
    --bg:#000000; --surface:#161616; --surface-alt:#1E1E1E;
    --text-primary:#F2F2F0; --text-secondary:#9A9CA3; --text-tertiary:#6B6D74;
    --border:#2E2E2C; --accent:#E0397A; --accent-subtle:rgba(224,57,122,.18);
    --header-bg:rgba(0,0,0,.86);
  }
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth; background:var(--bg);}
body{
  font-family:'Inter',sans-serif; background:var(--bg); color:var(--text-primary);
  -webkit-font-smoothing:antialiased;
}
a{ color:inherit; text-decoration:none; }
.wrap{ max-width:760px; margin:0 auto; padding:0 24px; }
header{
  position:sticky; top:0; z-index:40; background:var(--header-bg);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); border-bottom:1px solid var(--border);
}
.header-row{ display:flex; align-items:center; justify-content:space-between; padding:16px 24px; max-width:760px; margin:0 auto; }
.logo{ display:flex; align-items:center; gap:7px; font-weight:800; font-size:19px; letter-spacing:-.01em; }
.logo svg{ width:28px; height:28px; flex:none; }
.back-link{ font-size:14px; font-weight:600; color:var(--text-secondary); }
.back-link:hover{ color:var(--accent); }

main{ padding:56px 0 80px; }
.eyebrow{
  display:inline-block; font-size:13px; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  color:var(--accent); background:var(--accent-subtle); padding:6px 12px; border-radius:100px; margin-bottom:20px;
}
h1{ font-size:clamp(28px,4.5vw,40px); font-weight:800; letter-spacing:-.02em; line-height:1.1; margin-bottom:12px; }
.updated{ font-size:14px; color:var(--text-tertiary); margin-bottom:8px; }
.draft-note{
  background:var(--accent-subtle); color:var(--accent); border-radius:12px; padding:14px 18px;
  font-size:14px; font-weight:600; margin:24px 0 40px; line-height:1.5;
}
h2{ font-size:20px; font-weight:700; letter-spacing:-.01em; margin:36px 0 12px; }
h2:first-of-type{ margin-top:0; }
p, li{ font-size:15.5px; color:var(--text-secondary); line-height:1.65; }
p{ margin-bottom:14px; }
ul, ol{ margin:0 0 14px 22px; }
li{ margin-bottom:6px; }
strong{ color:var(--text-primary); font-weight:600; }
.toc{ background:var(--surface); border-radius:16px; padding:20px 22px; margin-bottom:40px; }
.toc-title{ font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--text-tertiary); margin-bottom:10px; }
.toc ol{ margin-left:18px; }
.toc a{ color:var(--text-secondary); font-size:14.5px; }
.toc a:hover{ color:var(--accent); }
details{ background:var(--surface); border-radius:16px; padding:18px 22px; margin-bottom:12px; }
summary{ font-size:16px; font-weight:600; cursor:pointer; list-style:none; }
summary::-webkit-details-marker{ display:none; }
summary::after{ content:'+'; float:right; color:var(--text-tertiary); font-weight:400; }
details[open] summary::after{ content:'−'; }
details p{ margin-top:12px; margin-bottom:0; }
.faq-section-title{ font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--text-tertiary); margin:32px 0 12px; }
.faq-section-title:first-child{ margin-top:0; }
footer{ border-top:1px solid var(--border); padding:32px 0; }
.footer-row{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-tagline{ font-size:13.5px; color:var(--text-tertiary); }
.footer-links{ display:flex; gap:20px; flex-wrap:wrap; }
.footer-links a{ font-size:13.5px; color:var(--text-secondary); }
.footer-links a:hover{ color:var(--text-primary); }
