@media print {
  /* Hide interactive elements */
  .site-nav,
  .nav-toggle,
  .hamburger,
  .scroll-indicator {
    display: none !important;
  }

  /* Remove animations */
  .animate-on-scroll,
  .animate-from-left {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Force light theme */
  body {
    font-size: 11pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  /* Section management */
  section {
    page-break-inside: avoid;
    padding: 24pt 0;
    background: #fff !important;
  }

  /* Show link URLs */
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  /* Tables */
  .table-wrapper {
    overflow: visible;
  }
  table {
    font-size: 9pt;
  }

  /* Cards: remove shadows and hover effects */
  .kpi-card,
  .pain-card,
  .product-card,
  .pricing-card,
  .risk-card,
  .debate-card,
  .insight-item {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }

  /* Grids: 2 columns for print */
  .kpi-grid,
  .pain-cards,
  .risk-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-cards,
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Quality badge: simplify for print */
  .quality-badge {
    background: #fff !important;
    border: 2px solid #2563EB;
  }

  /* Footer */
  footer {
    border-top: 1px solid #000;
    padding-top: 12pt;
  }

  /* Page setup */
  @page {
    margin: 2cm;
    size: A4;
  }
}
