/* ====== Responsive Styles ====== */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: var(--space-xl);
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --text-base: 0.9375rem;
    --text-lg: 1rem;
    --text-xl: 1.125rem;
    --text-2xl: 1.25rem;
    --text-3xl: 1.5rem;
    --text-4xl: 1.75rem;
    --text-5xl: 2rem;
  }
  
  .navbar {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transition: left var(--transition-normal);
  }
  
  .navbar.active {
    left: 0;
  }
  
  .navbar ul {
    flex-direction: column;
    width: 100%;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-content h1 {
    font-size: var(--text-4xl);
  }
  
  .feature-card {
    padding: var(--space-lg);
  }

  .hero-image {
    margin: 2rem auto 0;
    max-width: 300px;
  }
  
  .hero-image img {
    transform: none; /* Remove 3D effect on mobile */
  }
  
  .hero-image::before {
    display: none;
  }
}


@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}