/* ===============================
   GLOBAL RESPONSIVE FIXES
================================ */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .neon-grid {
    gap: 1.5rem;
  }
}

/* ===============================
   TABLET (≤ 992px)
================================ */
@media (max-width: 992px) {
  /* NAVBAR */
  .site-name {
    font-size: 1.1rem;
  }

  .nav-logo {
    width: 42px;
  }

  /* HERO */
  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 0 2rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    gap: 1rem;
  }

  /* ABOUT SECTION */
  .s-section {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .s-image img {
    max-width: 80%;
    margin: 0 auto;
  }

  .s-text {
    text-align: center;
  }

  /* PLATFORMS */
  .neon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FEATURES */
  .f-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* ===============================
   MOBILE (≤ 768px)
================================ */
@media (max-width: 768px) {
  /* NAV */
  .navbar {
    padding: 0.6rem 1rem;
  }

  /* HERO */
  .hero {
    min-height: 75vh;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .bbtn {
    width: 100%;
  }

  /* AWARDS */
  #awards h1 {
    font-size: 1.8rem;
  }

  .award-badge img {
    max-width: 200px;
  }

  /* PLATFORMS */
  .neon-grid {
    grid-template-columns: 1fr;
  }

  .neon-card {
    padding: 1.8rem;
  }

  /* FEATURES */
  .f-section-title {
    font-size: 1.8rem;
  }

  .f-section-subtitle {
    font-size: 0.95rem;
  }

  .f-features-grid {
    grid-template-columns: 1fr;
  }

  /* CONTACT */
  #contact h1 {
    font-size: 1.8rem;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===============================
   SMALL MOBILE (≤ 480px)
================================ */
@media (max-width: 480px) {
  /* HERO */
  .hero-content {
    padding: 0 1.2rem;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  /* ABOUT */
  .s-image img {
    max-width: 100%;
  }

  /* SECTIONS */
  .section {
    padding: 3rem 1.2rem;
  }

  /* FOOTER */
  .footer-bottom {
    font-size: 0.85rem;
  }
}

/* ===============================
   ZIG-ZAG → MOBILE STACK
================================ */
@media (max-width: 768px) {

  .s-section {
    flex-direction: column !important; /* stack vertically */
    padding: 30px 16px;
    margin: 60px 16px; /* remove large desktop margin */
    gap: 16px;
    text-align: center;
  }

  /* Remove zig-zag reverse on mobile */
  .s-section:nth-child(even) {
    flex-direction: column !important;
  }

  .s-image {
    width: 100%;
  }

  .s-image img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .s-text {
    width: 100%;
  }
}

/* ===============================
   SMALL MOBILE (≤ 480px)
================================ */
@media (max-width: 480px) {

  .s-section {
    padding: 24px 14px;
    margin: 40px 10px;
  }

  .s-image img {
    max-width: 100%;
  }
}
