/* Media Queries */

/* Tablet & Smaller Desktop */
@media screen and (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  /* Header & Navigation */
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--color-bg-surface);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .nav-links a {
    font-size: 1.5rem;
  }
  
  .nav-actions .btn {
    display: none; /* Hide primary CTA on small mobile header, move to menu if desired */
  }
  
  /* Hamburger Animation */
  .hamburger.toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.toggle span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Hero Section */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 40px;
  }
  
  .hero-content p {
    margin: 0 auto 32px;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-floating-card {
    display: none; /* Hide complex floating element on mobile for cleanliness */
  }
  
  .hero-image-wrapper img {
    height: 400px;
  }
  
  /* Grids */
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .content-wrapper {
    padding: 30px 20px;
    width: 90%;
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
}