/* Tablet & Medium Screens (max-width: 1024px) */
@media (max-width: 1024px) {
  :root {
    --section-spacing: 80px;
  }

  .hero-grid {
    gap: 2rem;
  }
  
  .hero-image-wrapper img {
    height: 500px;
  }

  .split-section {
    gap: 3rem;
  }

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

  .contact-container {
    padding: 3rem 2rem;
    gap: 3rem;
  }

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

/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --section-spacing: 60px;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--surface-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }

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

  .hero {
    padding-top: 120px;
  }

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

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

  .hero-badge {
    left: 20px;
    right: 20px;
    bottom: -30px;
    justify-content: center;
  }

  .split-section {
    grid-template-columns: 1fr;
  }
  
  .split-section.reverse {
    direction: ltr;
  }

  .contact-container {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

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

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

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrapper img {
    height: 400px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}