/* ── Checklist page styles ── */

.checklist-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.checklist-hero {
  text-align: center;
  margin-bottom: 36px;
}
.checklist-hero h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #1a202c;
  margin-bottom: 12px;
}
.checklist-hero p {
  font-size: 15px;
  color: #4a5568;
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.7;
}
.checklist-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
fieldset {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
legend {
  font-weight: 700;
  font-size: 15px;
  color: #1565c0;
  padding: 0 8px;
}
label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
  cursor: pointer;
  line-height: 1.5;
}
input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.compliance-note {
  margin-top: 32px;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
  text-align: center;
}
@media print {
  header, footer, .no-print { display: none !important; }
  body { background: white; color: black; }
  fieldset { break-inside: avoid; }
}
