/* ==========================================================================
   RGB LOGIX - Responsive Breakpoints & Media Queries
   ========================================================================== */

/* Compact Desktops & Laptops (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
  .nav-links {
    gap: 0.65rem !important;
  }
  .nav-link {
    font-size: 0.84rem !important;
    padding: 0.4rem 0.1rem !important;
  }
  .logo {
    font-size: 1.25rem !important;
  }
  .logo-badge {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.85rem !important;
  }
  .site-header .btn-sm {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.8rem !important;
  }
}

/* Large Tablets & Mobile Breakpoint (<= 1024px) */
@media (max-width: 1024px) {
  .nav-links, .top-socials {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

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

  .hero-content {
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions, .hero-trust-row {
    justify-content: center;
  }

  .hero-visual {
    max-width: 540px;
    margin: 0 auto;
  }

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

/* Tablets */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .stats-banner {
    padding: 2.25rem 1.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    min-width: 580px;
  }

  .stat-item {
    flex: 1;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .top-bar {
    display: none;
  }

  .navbar {
    height: 70px;
  }

  .services-grid, .workflow-grid {
    grid-template-columns: 1fr;
  }

  .comparison-wrapper {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 600px;
  }

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

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

  .modal-container {
    padding: 1.75rem;
  }

  .floating-badge {
    position: static;
    margin-top: 1rem;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats-banner {
    padding: 1.75rem 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    min-width: 540px;
  }

  .radio-card-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    bottom: 92px;
    right: 16px;
    left: auto;
    width: 48px;
    height: 48px;
  }

  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}

