:root {
  --ink: #0b1220;
  --ink-soft: #4f596d;
  --ink-mute: #5f6b7f;
  --line: #e5eaf1;
  --bg: #fff;
  --primary: #0a84ff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
nav {
  border-bottom: 1px solid #eef1f6;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner {
  max-width: 1336px;
  margin: 0 auto;
  padding: 14px 24px;
  /* высота как у шапки главной: контент CTA 0.9rem*1.55 + 20px паддинга */
  min-height: calc(0.9rem * 1.55 + 48px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.nav-inner > a:first-child {
  margin-right: auto;
}
.nav-inner > a {
  display: inline-flex;
  align-items: center;
}
.logo-img {
  width: 151px;
  height: 21px;
}
.back {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.back:hover {
  color: var(--ink);
  text-decoration: none;
}
main {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
h1 {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 10px;
}
.updated {
  color: var(--ink-mute);
  font-size: 14px;
  margin-bottom: 48px;
  font-weight: 600;
}
h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 42px 0 14px;
  color: var(--ink);
}
p {
  margin-bottom: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
ul {
  padding-left: 22px;
  margin-bottom: 14px;
  color: var(--ink-soft);
}
li {
  margin-bottom: 8px;
  line-height: 1.6;
}
strong {
  color: var(--ink);
}
footer {
  padding: 36px 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
  color: var(--ink-mute);
  background: #fafbfd;
}
footer a {
  color: var(--ink-soft);
  margin: 0 14px;
}
footer .copy {
  margin-top: 14px;
}

/* Language selector */
.lang-wrap { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; color: var(--ink); font-family: inherit;
  font-size: 0.88rem; font-weight: 700; cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.lang-btn:hover { background: #f4f6f9; border-color: var(--ink-mute); }
.lang-btn svg { flex-shrink: 0; display: block; }
.lang-btn > svg:first-child { width: 15px; height: 15px; color: var(--ink-soft); }
.lang-caret { width: 10px; height: 10px; color: var(--ink-mute); transition: transform 0.2s; }
.lang-wrap.open .lang-caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 170px; background: #fff; border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px -12px rgba(14,23,38,.2), 0 4px 12px rgba(14,23,38,.08);
  padding: 6px; display: none; flex-direction: column; gap: 2px; z-index: 70;
}
.lang-wrap.open .lang-menu { display: flex; }
.lang-opt {
  display: flex; align-items: center; gap: 10px; padding: 8px 12px;
  border: none; border-radius: 8px; background: transparent;
  color: var(--ink); font-family: inherit; font-size: 0.88rem;
  font-weight: 600; cursor: pointer; text-align: left; width: 100%;
  transition: background 0.12s;
}
.lang-opt:hover { background: #f4f6f9; }
.lang-opt.active { background: #eef5ff; color: var(--primary); }
.lang-opt .fl { font-size: 1rem; line-height: 1; flex-shrink: 0; }
.lang-opt .cd { margin-left: auto; font-size: 0.73rem; font-weight: 700; color: var(--ink-mute); letter-spacing: 0.04em; }
.lang-cur { font-size: 0.88rem; }
@media (max-width: 600px) {
  .lang-btn .lang-cur { display: none; }
  .lang-btn { padding: 7px 10px; }
}

.list-lead { margin-bottom: 8px; }
.legal-company {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-mute);
  font-size: 14px;
}
.legal-company p { margin-bottom: 4px; color: var(--ink-mute); line-height: 1.6; }
