/* ===== Legal Pages ===== */
.legal-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.legal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 16px;
}

.legal-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.legal-content {
  padding: 64px 0 100px;
}

.legal-container {
  max-width: 780px;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.legal-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--primary-light);
}

.legal-section p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section a {
  color: var(--primary-light);
  transition: var(--transition);
}

.legal-section a:hover {
  color: var(--text);
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.legal-list li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 120px 0 40px;
  }

  .legal-content {
    padding: 40px 0 64px;
  }

  .legal-section {
    margin-bottom: 36px;
  }
}
