/* ================================================================
   TAP TAP TEC — Legal Pages Styles (legal.css)
   Shared by privacy.html and terms.html
   ================================================================ */

.legal-hero {
  padding: 140px 6% 60px;
  border-bottom: 1px solid var(--purple-border);
}
.legal-date {
  color: var(--faint);
  font-size: 14px;
  margin-top: 12px;
  font-weight: 400;
}

.legal-content { padding: 80px 6%; }

.legal-body {
  max-width: 760px;
  margin: 0 auto;
}

/* ── Legal Section ── */
.legal-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--purple-border);
}
.legal-section:last-child { border-bottom: none; }

.legal-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.legal-section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 14px;
}
.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
  padding-left: 4px;
}
.legal-section ul li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  padding-left: 20px;
  position: relative;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
}
.legal-section a {
  color: var(--pink-light);
  text-decoration: none;
}
.legal-section a:hover { text-decoration: underline; }
.legal-section strong { color: var(--text); font-weight: 600; }

@media (max-width: 640px) {
  .legal-hero    { padding: 120px 4% 48px; }
  .legal-content { padding: 60px 4%; }
}
