/* ============================================
   PRINT-FRIENDLY (Week 3, Day 1-2)
   Lets users "Print / Save as PDF" cleanly.
   ============================================ */

@media print {
  /* Hide navigation / overlays / sticky layers */
  .site-header,
  .micro-nav,
  .sticky-cta-bar,
  .exit-intent-overlay,
  #ukbpm-ai-chat-container,
  .floating-consult {
    display: none !important;
  }

  /* Avoid dark gradients for printing */
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .section,
  .section-alt,
  .cta-panel-deepblue,
  .demo-dashboard,
  .live-metrics,
  .comparison-tool-wrapper,
  .testimonials-carousel-container {
    box-shadow: none !important;
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #dddddd !important;
  }

  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 10px;
    color: #555;
  }

  /* Hide share bars themselves */
  .share-actions {
    display: none !important;
  }
}








