/* ════════════════════════════════════════
   ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ
   Dark premium content page
   ════════════════════════════════════════ */

/* ─── HERO ─────────────────────────────── */
.policy-hero {
  padding: calc(var(--header-h) + clamp(48px, 6vw, 80px)) 0 clamp(40px, 5vw, 64px);
  background: var(--bg);
}

.policy-hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.policy-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.025em;
}

/* ─── CONTENT COLUMN ────────────────────── */
.policy-col {
  max-width: 900px;
  margin: 0;
  padding: 0;
}

.policy-body {
  padding: 0 0 clamp(80px, 10vw, 120px);
  background: var(--bg);
}

/* H2 — первый заголовок после hero */
.policy-h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

/* H3 — подзаголовки */
.policy-h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-top: 40px;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.policy-h3:first-of-type {
  margin-top: 0;
}

.policy-h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-top: 28px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.policy-body .policy-meta {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.policy-body .policy-meta p {
  font-size: 14px;
  margin-bottom: 6px;
}

/* Абзацы */
.policy-body p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 22px;
}

.policy-body p:last-child {
  margin-bottom: 0;
}

/* Ссылки */
.policy-body a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}

.policy-body a:hover {
  color: var(--accent);
}

/* Списки */
.policy-list {
  list-style: none;
  margin: 18px 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-list li {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-left: 24px;
  position: relative;
}

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.65;
}

.policy-list--ordered {
  counter-reset: policy-num;
}

.policy-list--ordered li {
  counter-increment: policy-num;
  padding-left: 32px;
}

.policy-list--ordered li::before {
  content: counter(policy-num) '.';
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  opacity: 1;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent);
  top: 0;
}

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width: 960px) {
  .policy-hero {
    padding-top: calc(var(--header-h) + 40px);
  }
}

@media (max-width: 640px) {
  .policy-hero {
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: 36px;
  }

  .policy-hero__label {
    margin-bottom: 12px;
  }

  .policy-h2 {
    margin-bottom: 22px;
  }

  .policy-h3 {
    margin-top: 32px;
    margin-bottom: 14px;
    font-size: 15px;
  }

  .policy-body p,
  .policy-list li {
    font-size: 15px;
  }

  .policy-list {
    margin: 14px 0 20px;
    gap: 8px;
  }

  .policy-body {
    padding-bottom: 64px;
  }
}
