/* ==========================================================================
   PRINTERXSOLUTIONS - RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Laptop Breakpoint (1024px) */
@media screen and (max-width: 1024px) {
  .hero-title {
    font-size: 2.85rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-description {
    margin: 0 auto 2rem;
  }

  .hero-search-box {
    margin: 0 auto 1.75rem;
  }

  .hero-btn-group {
    justify-content: center;
  }

  .brand-chips-hero {
    justify-content: center;
  }

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

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .grid-50-50 {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .alternating-section:nth-child(even) .grid-50-50 {
    direction: ltr;
  }

  .faq-split-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-newsletter-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Tablet Breakpoint (768px) */
@media screen and (max-width: 768px) {
  .section-padding {
    padding: 4.5rem 0;
  }

  .hero-section {
    padding: 3rem 0 5rem;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .section-title {
    font-size: 2.15rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    position: fixed;
    top: 84px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 84px);
    background: var(--card-bg);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    gap: 2rem;
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .footer-grid-4 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .card-pos-1, .card-pos-2 {
    display: none;
  }
}

/* Mobile Breakpoint (480px & smaller) */
@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 1.95rem;
  }

  .hero-btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .cta-banner-saas {
    padding: 3.5rem 1.5rem;
  }

  .cta-content h2 {
    font-size: 2.15rem;
  }

  .footer-newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .footer-newsletter-form input {
    width: 100%;
  }
}
