/* Print styles - loaded only when printing */
@media print {
  .site-header,
  .mobile-menu-btn,
  .mobile-cta-bar,
  .back-to-top,
  .skip-link,
  .hero-buttons,
  .btn,
  .section-cta {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: black;
    background: white;
  }

  main {
    padding: 0;
  }

  .hero {
    background: none !important;
    color: black;
    padding: 1rem 0;
  }

  .hero::before {
    display: none;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .card, .feature {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .site-footer {
    background: none;
    color: black;
    border-top: 1px solid #ccc;
    margin-top: 2rem;
    padding: 1rem 0;
  }

  .site-footer a {
    color: black;
    text-decoration: underline;
  }

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

  a[href^="tel:"]::after,
  a[href^="mailto:"]::after,
  a[href^="/"]::after {
    content: "";
  }
}
