/* ============================================================
   PDA — Legal page styles (Privacy Policy, Terms of Service)
   ============================================================ */

/* ===== Hero ===== */
.legal-hero {
  padding: 180px 0 72px;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pda-gradient-radial);
  opacity: 0.5;
  pointer-events: none;
}
.legal-hero .container-narrow { position: relative; z-index: 1; }
.legal-hero .eyebrow { display: block; margin-bottom: 16px; }
.legal-hero h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.07;
  margin: 0 0 20px;
}
.legal-hero .lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 600px;
  margin: 0 0 20px;
}
.legal-meta {
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 500;
  letter-spacing: .01em;
}

/* ===== Body ===== */
.legal-body {
  padding: 64px 0 0;
}

/* ===== Sections ===== */
.legal-section {
  padding: 0 0 52px;
  border-bottom: 1px solid var(--border-1);
  margin-bottom: 52px;
}
.legal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--fg-1);
}
.legal-section h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--pda-teal);
  margin: 28px 0 10px;
}
.legal-section p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg-2);
  margin: 0 0 14px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { color: var(--fg-1); font-weight: 600; }
.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.legal-section ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-2);
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--border-1);
  position: relative;
}
.legal-section ul li:last-child { border-bottom: none; }
.legal-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--pda-teal);
  font-weight: 700;
  font-size: 13px;
  top: 12px;
}

/* ===== Contact block ===== */
.legal-contact-block {
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 16px;
}
.legal-contact-block p {
  margin: 0;
  line-height: 1.8;
  color: var(--fg-2);
  font-size: 15px;
}

/* ===== Inline link ===== */
.inline-link {
  color: var(--pda-teal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease-out);
}
.inline-link:hover { border-bottom-color: var(--pda-teal); }

@media (max-width: 640px) {
  .legal-hero { padding: 140px 0 56px; }
  .legal-section { padding-bottom: 36px; margin-bottom: 36px; }
}
