/* Responsive CSS */

/* Large Screens */
@media screen and (max-width: 1200px) {
  .container {
    max-width: 90%;
  }
}

/* Medium Screens */
@media screen and (max-width: 992px) {
  section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 36px;
  }

  .how-it-works-container {
    flex-direction: column;
  }

  .how-it-works-image, 
  .how-it-works-steps {
    width: 100%;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
}

/* Small Screens */
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .benefit-card,
  .pricing-card,
  .testimonial-card {
    min-width: 100%;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    margin-bottom: 8px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer-links {
    justify-content: center;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 1rem;
  }
}

/* Extra Small Screens */
@media screen and (max-width: 480px) {
  section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 24px;
  }

  .section-title::after {
    width: 60px;
    height: 3px;
    bottom: -12px;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .pricing-card-title {
    font-size: 1.25rem;
  }

  .pricing-card-price .price {
    font-size: 2rem;
  }
}