/* ============================================================
   CleanWatch — Privacy Policy page styles
   Extends the shared style.css design system
   ============================================================ */

.privacy-policy {
  min-height: calc(100vh - var(--header-h));
}

.privacy-policy .section-inner {
  max-width: 760px;
  padding-top: 64px;
  padding-bottom: 64px;
}

/* Header */
.policy-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.policy-header h1 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 780;
  letter-spacing: -0.03em;
  color: var(--text);
}

.policy-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.policy-intro {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 640px;
}

/* Sections */
.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.policy-section h3 {
  font-size: 14px;
  font-weight: 650;
  color: var(--text);
  margin-top: 20px;
  margin-bottom: 10px;
}

.policy-section p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.policy-section p code {
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
}

.policy-section a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s var(--ease);
}

.policy-section a:hover {
  opacity: 0.8;
}

/* Lists */
.policy-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.policy-list li::before {
  content: '';
  display: flex;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 640px) {
  .policy-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .privacy-policy .section-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
