.privacy-page {
  color: #f4f6fb;
}

.privacy-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 124px) 0 32px;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(246, 206, 31, 0.18), transparent 18%),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.08), transparent 15%),
    linear-gradient(180deg, rgba(6, 10, 18, 0.78), rgba(6, 10, 18, 0.28));
  pointer-events: none;
}

.privacy-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: center;
}

.privacy-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(246, 206, 31, 0.28);
  background: rgba(246, 206, 31, 0.08);
  color: #f6ce1f;
  font: 800 11px/1 Inter, system-ui, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.privacy-title {
  margin: 0;
  font: 400 clamp(50px, 9vw, 96px)/0.94 "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.privacy-lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(244, 246, 251, 0.84);
  font: 500 clamp(16px, 2vw, 21px)/1.7 Inter, system-ui, sans-serif;
}

.privacy-meta {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.56);
  font: 700 12px/1.4 Inter, system-ui, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.privacy-shell {
  padding: 14px 0 64px;
}

.privacy-grid {
  display: grid;
  gap: 18px;
}

.privacy-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(13, 19, 32, 0.96), rgba(8, 12, 21, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 38px rgba(0, 0, 0, 0.28);
}

.privacy-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(246, 206, 31, 0.52), transparent);
  opacity: 0.75;
}

.privacy-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font: 700 clamp(22px, 3vw, 30px)/1.1 Oswald, sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.privacy-card p,
.privacy-card li {
  color: rgba(228, 233, 242, 0.84);
  font: 500 15px/1.8 Inter, system-ui, sans-serif;
}

.privacy-card p {
  margin: 0 0 14px;
}

.privacy-card p:last-child {
  margin-bottom: 0;
}

.privacy-card ul {
  margin: 0;
  padding-left: 18px;
}

.privacy-card li + li {
  margin-top: 6px;
}

.privacy-contact a {
  color: #f6ce1f;
  font-weight: 800;
  text-decoration: none;
}

.privacy-contact a:hover,
.privacy-contact a:focus-visible {
  text-decoration: underline;
}

@media (min-width: 900px) {
  .privacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
