/* Praxdeus — общий стиль статических страниц (бренд 2026-07-20). */
:root {
  --navy: #111a2e;
  --navy-2: #16223c;
  --cream: #f4efe3;
  --gold: #e3b54d;
  --text: #e8e9ee;
  --muted: #9aa3b5;
  --up: #35c26a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}
.wrap { max-width: 880px; margin: 0 auto; padding: 24px 20px; }
header.site { padding: 28px 0 8px; text-align: center; }
.logo { font-size: 30px; font-weight: 800; letter-spacing: 4px; }
.logo .p1 { color: var(--cream); }
.logo .p2 { color: var(--gold); }
h1 { font-size: 30px; line-height: 1.25; margin: 18px 0 10px; color: var(--cream); }
h2 { font-size: 21px; margin: 34px 0 10px; color: var(--gold); }
h3 { font-size: 16px; margin: 18px 0 6px; color: var(--cream); }
p, li { color: var(--text); font-size: 15px; }
.muted { color: var(--muted); font-size: 13px; }
a { color: var(--gold); }
.cta {
  display: inline-block; background: var(--gold); color: #14181f;
  font-weight: 700; font-size: 17px; padding: 14px 30px;
  border-radius: 10px; text-decoration: none; margin: 18px 0 6px;
}
.cta:hover { filter: brightness(1.07); }
.card {
  background: var(--navy-2); border-radius: 12px; padding: 18px 20px;
  margin: 12px 0;
}
.steps { counter-reset: n; list-style: none; }
.steps li { counter-increment: n; margin: 12px 0; padding-left: 44px; position: relative; }
.steps li::before {
  content: counter(n); position: absolute; left: 0; top: 2px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); color: #14181f; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
table { width: 100%; border-collapse: collapse; margin: 10px 0; }
td, th { padding: 8px 10px; border-bottom: 1px solid #263352; font-size: 14px; text-align: left; }
th { color: var(--muted); font-weight: 600; }
ul.plain { list-style: none; }
ul.plain li { margin: 8px 0; padding-left: 26px; position: relative; }
ul.plain li::before { content: "✓"; position: absolute; left: 0; color: var(--up); }
footer { margin: 40px 0 20px; border-top: 1px solid #263352; padding-top: 16px; }
.legal pre, .legal .doc { white-space: pre-wrap; font-family: inherit; font-size: 14px; }
/* Модал выбора языка/страны (2026-07-21). */
.px-locale-overlay {
  position: fixed; inset: 0; background: rgba(6, 10, 20, .82);
  display: flex; align-items: center; justify-content: center; z-index: 50;
}
.px-locale-box {
  background: var(--navy-2); border-radius: 14px; padding: 24px;
  width: min(92vw, 360px); text-align: center;
}
.px-locale-box h3 { margin-bottom: 14px; color: var(--cream); }
.px-lang-row { display: flex; gap: 10px; margin-bottom: 12px; }
.px-lang-row button {
  flex: 1; padding: 10px; border-radius: 8px; border: 1px solid #35486e;
  background: transparent; color: var(--text); font-size: 15px; cursor: pointer;
}
.px-lang-row button.on { background: var(--gold); color: #14181f; font-weight: 700; border-color: var(--gold); }
.px-country {
  width: 100%; padding: 10px; border-radius: 8px; margin-bottom: 14px;
  background: var(--navy); color: var(--text); border: 1px solid #35486e; font-size: 14px;
}
.px-continue {
  width: 100%; padding: 12px; border: 0; border-radius: 8px;
  background: var(--gold); color: #14181f; font-weight: 700; font-size: 16px; cursor: pointer;
}
.px-cookie-note { margin-top: 10px; font-size: 11px; color: var(--muted); }
.notice {
  border-left: 3px solid var(--gold); padding: 10px 14px;
  background: var(--navy-2); margin: 14px 0; font-size: 14px;
}
