/* Responsive Styles */

/* Large Screens (Desktops) */
@media (min-width: 1280px) {
  .container {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }
  
  .hero-content h1 {
    font-size: var(--font-size-5xl);
  }
}

/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
  h1 {
    font-size: var(--font-size-3xl);
  }
  
  h2 {
    font-size: var(--font-size-2xl);
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    transform: none;
    margin-top: var(--space-8);
  }
  
  .hero-image:hover {
    transform: translateY(-10px);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10) var(--space-8);
  }
}

/* Small Screens (Mobile) */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  h1 {
    font-size: var(--font-size-2xl);
  }
  
  h2 {
    font-size: var(--font-size-xl);
  }
  
  .main-nav, .auth-buttons {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero {
    padding-top: calc(var(--header-height) + var(--space-8));
    padding-bottom: var(--space-8);
  }
  
  .hero-content h1 {
    font-size: var(--font-size-3xl);
  }
  
  .hero-content p {
    font-size: var(--font-size-base);
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero-image {
    max-width: 100%;
  }
  
  section {
    padding: var(--space-10) 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slider {
    flex-direction: column;
    gap: var(--space-6);
  }
  
  .testimonial {
    flex: 0 0 100%;
  }
  
  .cta {
    padding: var(--space-10) 0;
  }
  
  .cta h2 {
    font-size: var(--font-size-2xl);
  }
  
  .cta p {
    font-size: var(--font-size-base);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  .container {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }
  
  .hero-content h1 {
    font-size: var(--font-size-2xl);
  }
  
  .feature-card {
    padding: var(--space-4);
  }
}