/* ============================================================
   PRIVACY & COOKIES PAGE — LAYOUT WRAPPER
   ============================================================ */

.pc-page {
  width: 100%;
  padding: 32px 0 80px;
}

.pc-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================================
   HERO SECTION (аналог rules / privacy / terms)
   ============================================================ */

.pc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 40px;
}

/* Левая колонка — текст */

.pc-hero-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.pc-eyebrow {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
}

.pc-hero-main .page-title {
  margin: 4px 0 6px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  color: #f9fafb;
}

.pc-hero-subtitle {
  margin: 0;
  max-width: 540px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
  text-align: left;
}

/* Теги под сабтайтлом */

.pc-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.pc-tag {
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: rgba(226, 232, 240, 0.92);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.16), transparent 60%);
}

/* Правая колонка — карточка "At a glance" */

.pc-hero-aside {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.pc-hero-card {
  position: relative;
  isolation: isolate;

  width: 100%;
  max-width: 360px;

  padding: 20px 18px 20px;

  background:
    radial-gradient(130% 190% at 0% 0%, rgba(59,130,246,0.16), transparent 55%),
    radial-gradient(120% 180% at 100% 100%, rgba(139,92,246,0.22), rgba(15,23,42,0.96));

  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.28);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.75),
    inset 0 0 0.5px rgba(255,255,255,0.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pc-hero-card-title {
  margin: 0 0 6px;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(248,250,252,0.95);
}

.pc-hero-list {
  margin: 0;
  padding-left: 18px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e5e7eb;
}

.pc-hero-list li {
  margin-bottom: 4px;
}

/* ============================================================
   MAIN GRID (TOC + CONTENT)
   ============================================================ */

.pc-main {
  margin-top: 8px;
}

.pc-grid {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 26px;
}

/* ============================================================
   TOC (слева, как в rules / privacy / terms)
   ============================================================ */

.pc-toc {
  position: sticky;
  top: 96px;
  align-self: flex-start;
}

.pc-toc-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(148,163,184,0.9);
  margin-bottom: 10px;
}

.pc-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pc-toc li {
  margin-bottom: 4px;
}

.pc-toc-link {
  display: block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.88rem;
  text-decoration: none;
  color: rgba(209,213,219,0.92);
  border: 1px solid transparent;
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease;
}

.pc-toc-link:hover {
  background: rgba(30,64,175,0.45);
  border-color: rgba(59,130,246,0.7);
  color: #f9fafb;
}

.pc-toc-link.is-active {
  background: linear-gradient(135deg, rgba(59,130,246,0.85), rgba(139,92,246,0.85));
  border-color: rgba(191,219,254,0.9);
  color: #0b1120;
  font-weight: 600;
}

/* ============================================================
   CONTENT COLUMN
   ============================================================ */

.pc-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Карточка секции — стекло */

.pc-card {
  border-radius: 18px;
  padding: 20px 20px 22px;

  background:
    radial-gradient(130% 190% at 0% 0%, rgba(37,99,235,0.14), transparent 55%),
    radial-gradient(120% 180% at 100% 100%, rgba(139,92,246,0.16), rgba(15,23,42,0.97));

  border: 1px solid rgba(148,163,184,0.26);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.7),
    inset 0 0 0.5px rgba(255,255,255,0.06);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  text-align: left;
}

.pc-card:focus {
  outline: 2px solid rgba(59,130,246,0.8);
  outline-offset: 3px;
}

.pc-card .pc-meta {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0 0 12px;
}

/* Заголовок секции */

.pc-card-title {
  margin: 0 0 10px;
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(248,250,252,0.96);
}

/* Текст */

.pc-card p {
  margin: 0;
  color: #e5e7eb;
  font-size: 0.96rem;
  line-height: 1.65;
  text-align: left;
}

.pc-card p + p {
  margin-top: 8px;
}

.pc-muted {
  font-size: 0.86rem;
  color: rgba(148,163,184,0.92);
}

/* Метаданные "Last updated" */

.pc-meta {
  margin: 0 0 12px;
  font-size: 0.8rem;
  color: rgba(148,163,184,0.9);
}

/* ============================================================
   LISTS
   ============================================================ */

.pc-list {
  margin: 10px 0 0;
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e5e7eb;
  text-align: left;
}

.pc-list li {
  margin-bottom: 6px;
}

.pc-list strong {
  color: #f9fafb;
}

/* ============================================================
   LINKS
   ============================================================ */

.pc-card a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
}

.pc-card a:hover {
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .pc-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .pc-hero-aside {
    justify-content: flex-start;
  }

  .pc-hero-card {
    max-width: 100%;
  }

  .pc-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pc-toc {
    position: static;
    margin-bottom: 16px;
    order: -1;
  }
}

@media (max-width: 640px) {
  .pc-wrap {
    padding: 0 12px;
  }

  .pc-hero-main .page-title {
    font-size: 1.8rem;
  }

  .pc-card {
    padding: 16px 14px 18px;
  }

  .pc-card-title {
    font-size: 0.96rem;
  }

  .pc-card p,
  .pc-list {
    font-size: 0.9rem;
  }

  .pc-toc-link {
    padding: 5px 10px;
    font-size: 0.84rem;
  }
}

/* ============================================================
   REDUCE MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .pc-hero-card,
  .pc-toc-link,
  .pc-card {
    transition: none !important;
  }
}

/* ============================================================
   HERO CARD — Custom Bullets
   ============================================================ */

.pc-hero-card .bullets {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #e5e7eb; /* как в pc-hero-list */
}

.pc-hero-card .bullets li {
  position: relative;
  padding-left: 16px;
}

.pc-hero-card .bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #4ae3ff;         /* неоновый голубой маркер */
  font-size: 1.1rem;
  line-height: 1;
}