/* ==========================================================================
   LayTehra Responsive Layout & Media Queries
   Screen Breakpoints: Desktop (1200px+), Laptop (992px), Tablet (768px), Mobile (576px)
   ========================================================================== */

@media (max-width: 1199px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card.wide {
    grid-column: span 2;
  }
  .bento-card.tall {
    grid-row: span 1;
  }
  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .navbar-container {
    position: relative;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(11, 15, 25, 0.96);
    backdrop-filter: blur(25px);
    border-left: 1px solid var(--border-glass-bright);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 40px;
  }

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

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

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

  .hero-description {
    margin: 0 auto 36px auto;
  }

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

  .hero-trust-badges {
    justify-content: center;
  }

  .floating-glass-card {
    display: none;
  }

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

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 140px 0 80px 0;
  }

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

  .phone-container {
    width: 280px;
    height: 560px;
    transform: none;
  }

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

  .bento-card.wide {
    grid-column: span 1;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .stat-item::after {
    display: none !important;
  }

  .preview-display {
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .btn-google-play {
    width: 100%;
    justify-content: center;
  }

  .btn-lg {
    width: 100%;
  }

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