.lang-switch{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: 4px;
}
.lang-switch button{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  border: none;
  background: transparent;
  color: var(--ink);
  padding: 7px 13px;
  border-radius: 100px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.lang-switch button:hover{
  background: rgba(20,24,10,0.08);
}
.lang-switch button.is-active{
  background: var(--ink);
  color: var(--lime);
}

/* На тёмном фоне (футер) переключатель наоборот */
footer .lang-switch{
  background: transparent;
  border-color: rgba(198,255,0,0.35);
}
footer .lang-switch button{
  color: var(--lime);
}
footer .lang-switch button:hover{
  background: rgba(198,255,0,0.1);
}
footer .lang-switch button.is-active{
  background: var(--lime);
  color: var(--ink);
}

.nav-right{
  display: flex;
  align-items: center;
  gap: 14px;
}

@media (max-width: 480px){
  .nav-right{ gap: 8px; }
  .nav-cta{ padding: 10px 16px; font-size: 13px; }
  .lang-switch button{ padding: 6px 9px; font-size: 11.5px; }
}

/* ---- общая обёртка для юридических страниц ---- */
.legal-hero{
  padding: 60px 0 20px;
}
.legal-hero .display{
  font-size: clamp(30px, 5vw, 48px);
}
.legal-updated{
  margin-top: 10px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 14px;
}
.legal-body{
  padding: 20px 0 80px;
  max-width: 780px;
}
.legal-body h2{
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  margin: 38px 0 14px;
}
.legal-body h3{
  font-size: 16px;
  font-weight: 800;
  margin: 22px 0 8px;
}
.legal-body p{
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-body ul{
  margin: 0 0 14px 20px;
}
.legal-body li{
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-body strong{ color: var(--ink); }
.legal-back{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 30px;
}
