:root {
  --ink: #0d1117;
  --muted: #657086;
  --blue: #1595df;
  --line: rgba(100, 130, 165, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  padding: 22px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(202, 246, 249, 0.72), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(211, 230, 255, 0.78), transparent 42%),
    #f5f7fa;
  font-family: Inter, "Noto Sans Georgian", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.privacy-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto 28px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 50px rgba(52, 80, 118, 0.12);
  backdrop-filter: blur(24px) saturate(160%);
}

.privacy-brand img {
  display: block;
  width: 76px;
  height: 54px;
  object-fit: contain;
}

.language-switcher {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.lang-btn {
  min-width: 42px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.lang-btn.active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 6px 18px rgba(44, 72, 110, 0.12);
}

.privacy-shell {
  width: min(920px, 100%);
  margin: 0 auto 50px;
  padding: clamp(28px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: clamp(28px, 5vw, 52px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 90px rgba(48, 74, 110, 0.13);
  backdrop-filter: blur(26px);
}

[hidden] { display: none !important; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 8vw, 78px);
  line-height: 0.98;
  letter-spacing: 0.008em;
}

.updated {
  margin: 20px 0 34px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.006em;
}

h2 {
  margin: 38px 0 10px;
  font-size: clamp(21px, 3vw, 28px);
  letter-spacing: 0.012em;
}

p {
  margin: 0 0 16px;
  color: #4f5b70;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.75;
}

a { color: var(--blue); }

.back-link {
  display: inline-flex;
  justify-content: center;
  margin-top: 32px;
  padding: 16px 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

html[lang="ka"] h1,
html[lang="ka"] h2 {
  letter-spacing: 0.015em;
}

@media (max-width: 600px) {
  body { padding: 10px; }
  .privacy-header { top: 8px; padding: 8px 10px 8px 14px; }
  .privacy-brand img { width: 62px; height: 46px; }
  .privacy-shell { padding: 30px 20px 40px; }
}
