#privacy-page,
#terms-page,
#files-page {
  min-height: 100vh;
  background: var(--navy);
  padding: 110px 48px 100px;
}

.privacy-inner {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.privacy-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.privacy-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.privacy-meta {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.privacy-section {
  margin-bottom: 52px;
}

.privacy-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}

.privacy-section p {
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--off-white);
  opacity: 0.85;
  margin-bottom: 14px;
}

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

.privacy-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.privacy-section ul li {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--off-white);
  opacity: 0.85;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.privacy-section ul li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--accent);
  margin-top: 12px;
  flex-shrink: 0;
}

.privacy-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-highlight {
  background: rgba(62,207,191,0.05);
  border: 1px solid rgba(62,207,191,0.15);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--off-white);
}

.privacy-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 52px;
}

.privacy-contact {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-contact p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  opacity: 1;
}

.privacy-contact a {
  color: var(--accent);
}

@media (max-width: 640px) {
  #privacy-page,
  #terms-page,
  #files-page { padding: 120px 20px 80px; }
}
