/* Estilos específicos para páginas legales (privacy, terms, refund) */
.policy {
  max-width: 760px;
  padding-top: var(--space-6);
  padding-bottom: var(--space-7);
}
.policy h1 {
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.policy__updated {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-light);
  margin-bottom: var(--space-5);
}
.policy h2 {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
  padding-left: 14px;
  border-left: 3px solid var(--blue);
}
.policy p { margin-bottom: var(--space-2); font-size: 0.95rem; }
.policy__list { margin: 0 0 var(--space-2); padding-left: 0; }
.policy__list li {
  position: relative;
  font-size: 0.95rem;
  color: var(--gray);
  padding: 6px 0 6px 24px;
}
.policy__list li::before {
  content: '';
  position: absolute;
  left: 2px; top: 15px;
  width: 6px; height: 6px;
  background: var(--blue);
}
.policy a { color: var(--blue); font-weight: 600; }
.policy a:hover { text-decoration: underline; }
.policy strong { color: var(--ink); }
