/* ============================================================
   YOURSALESMACHINE — LEGAL PAGES CSS (Privacy + Terms)
   ============================================================ */

.legal-main {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 96px;
  min-height: 80vh;
}

.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.legal-header .label { margin-bottom: 10px; }
.legal-header h1 { margin-bottom: 16px; }
.legal-meta {
  font-size: 16px; color: var(--text3);
}
.legal-meta a { color: var(--text2); transition: color var(--t-fast); }
.legal-meta a:hover { color: var(--text); }

.legal-body {
  display: flex; flex-direction: column; gap: 40px;
}

.legal-body section h2 {
  font-size: 18px; font-weight: 600;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-body section h3 {
  font-size: 16px; font-weight: 600;
  margin-top: 20px; margin-bottom: 10px;
  color: var(--text);
}
.legal-body section p {
  font-size: 16px; line-height: 1.85; color: var(--text2);
  margin-bottom: 12px;
}
.legal-body section p:last-child { margin-bottom: 0; }
.legal-body section a { color: var(--accent2); }
.legal-body section a:hover { color: var(--accent); }
.legal-body section strong { color: var(--text); font-weight: 600; }

.legal-body section ul {
  padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin: 12px 0;
}
.legal-body section ul li {
  font-size: 16px; line-height: 1.7; color: var(--text2);
  padding-left: 20px; position: relative;
}
.legal-body section ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--text3); font-size: 16px;
  top: 3px;
}
