/* ── Privacy Policy Page Styles ────────────────────────────── */

/* Decorative section numbering — large, translucent, behind heading */
.section-number {
  color: rgba(10, 36, 99, 0.06);
  font-weight: 800;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Gradient divider between sections (Tailwind can't do angled gradients well) */
.section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(10, 36, 99, 0.12) 20%,
    rgba(232, 124, 30, 0.18) 50%,
    rgba(10, 36, 99, 0.12) 80%,
    transparent 100%
  );
  border: none;
  margin: 0;
}

/* Summary card accent ring */
.summary-ring {
  box-shadow: 0 0 0 1px rgba(232, 124, 30, 0.15), 0 4px 24px rgba(10, 36, 99, 0.04);
}

/* Left accent line for section headings */
.accent-line {
  width: 3px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, #E87C1E, rgba(232, 124, 30, 0.2));
  flex-shrink: 0;
}

/* Security highlight section — subtle glow */
.security-highlight {
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.03) 0%, rgba(10, 36, 99, 0.01) 100%);
  border: 1px solid rgba(10, 36, 99, 0.08);
}

/* Accordion chevron animation */
.accordion-chevron {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-open .accordion-chevron {
  transform: rotate(180deg);
}

/* Accordion body animation */
.accordion-body {
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
}
.accordion-body.open {
  max-height: 2000px;
  opacity: 1;
}

/* Print styles — hide accordion behavior, show all content */
@media print {
  .accordion-body {
    max-height: none !important;
    opacity: 1 !important;
  }
  .accordion-chevron {
    display: none;
  }
  .section-divider {
    background: #e5e7eb;
  }
}
