/* My Smart Business Builder — print stylesheet.
   Clean black-on-white package: hide chrome, keep content. */

@media print {
  /* hide interactive / navigation chrome */
  .site-header,
  .site-footer,
  .btn-row,
  .builder-nav,
  .builder-tools,
  .handoff,
  .next-steps,
  .copy-fallback,
  .no-print,
  .skip,
  .modal-backdrop {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
    line-height: 1.45;
  }

  .wrap { max-width: none; padding: 0; }
  main { padding: 0; }

  .card,
  .result-section,
  .post,
  .notice,
  .example-card {
    border: 0;
    border-radius: 0;
    padding: 0;
    margin: 0 0 1.2rem;
    background: #fff;
  }

  h1, h2, h3 { color: #000; }

  /* never split a post or a checklist item across pages */
  .post,
  ul.checklist li,
  ol.tight li,
  .review-list li {
    page-break-inside: avoid;
    break-inside: avoid;
  }
  h2, h3 {
    page-break-after: avoid;
    break-after: avoid;
  }

  a { color: #000; text-decoration: none; }
}
