/* ── Legal Pages Styles ── */

.legal {
  padding: 120px 0 80px;
}
.legal .container {
  max-width: 760px;
}
.legal h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.legal section {
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.legal h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.legal p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}
.legal li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.legal li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 14px;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.legal a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal a:hover {
  color: var(--accent);
}
.legal strong {
  color: var(--text-primary);
  font-weight: 600;
}
