/* 
  POS Ledger Plus - Responsive Rules
  Breakpoints:
  - Ultra Wide (> 1400px)
  - Laptop / Desktop (992px - 1200px)
  - Tablet (768px - 991px)
  - Mobile (< 767px)
*/

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 2.75rem;
  }

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

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

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

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

@media (max-width: 991px) {
  .section-padding {
    padding: 4.5rem 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
    z-index: 999;
  }

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

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

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

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-badge-list {
    justify-content: center;
  }

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

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

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

  .cta-grid {
    gap: 2rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item, .timeline-item:nth-child(even) {
    width: 100%;
    padding-left: 3rem;
    padding-right: 0;
    margin-left: 0;
  }

  .timeline-dot, .timeline-item:nth-child(even) .timeline-dot {
    left: 11px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .screen-content {
    flex-direction: column;
    text-align: center;
  }

  .screen-img {
    width: 220px;
  }

  .screen-highlights {
    grid-template-columns: 1fr;
    text-align: left;
  }

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

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

  .hero-interactive-card {
    position: relative;
    top: 0;
    right: 0;
    margin: 1.5rem auto 0 auto;
    width: 100%;
    max-width: 320px;
  }

  .hero-rating-badge {
    justify-content: center;
  }

  .floating-card {
    display: none;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .download-banner {
    padding: 2.5rem 1.5rem;
  }

  .legal-content {
    padding: 1.5rem;
  }
}
