/* SThreeX Landing Page Mobile Styles - Updated 2025-08-19 */

/* Mobile-specific styles for screens 768px and below */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--background-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
  }

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

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

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

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

  .highlight::after {
    display: none;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }

  .hero-highlight-paragraph {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 24px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

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

  .footer-section {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .nav-logo {
    justify-content: center;
  }

  .logo-image {
    margin: 0 auto;
  }
}

/* Extra small mobile styles for screens 480px and below */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-highlight-paragraph {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

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

  .dashboard-preview {
    transform: none;
  }

  .modal {
    width: 95%;
  }

  .launch-card {
    padding: 20px 20px 20px 60px;
    margin: 20px auto 28px;
  }

  .lock-icon {
    left: 15px;
    width: 32px;
    height: 32px;
  }
}
