/* Responsive Styles */

/* === TABLET (1024px and below) === */
@media (max-width: 1024px) {
  /* Demo Section */
  .demo-container {
    flex-direction: column;
    align-items: center;
  }

  .demo-chat {
    width: 100%;
    max-width: 500px;
  }

  .demo-extension {
    width: 100%;
    max-width: 320px;
  }

  /* Pricing */
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 400px;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  /* Trust Section */
  .trust-content {
    flex-direction: column;
    align-items: center;
  }

  .trust-author {
    width: 100%;
    max-width: 300px;
  }

  .trust-badges {
    width: 100%;
  }
}

/* === MOBILE (768px and below) === */
@media (max-width: 768px) {
  /* Hide navigation links on mobile */
  .nav-links {
    display: none;
  }

  /* Hero Section */
  .hero {
    padding: 120px 0 60px;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-badges {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  /* Problem Cards */
  .problem-cards {
    grid-template-columns: 1fr;
  }

  /* Section Titles */
  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Demo Chat */
  .demo-chat-messages {
    max-height: 300px;
  }

  /* CTA */
  .cta-title {
    font-size: 1.5rem;
  }

  .cta .btn {
    width: 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: var(--spacing-xl);
  }

  .footer-links {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
}

/* === SMALL MOBILE (480px and below) === */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .pricing-amount {
    font-size: 2.5rem;
  }

  .demo-chat-messages {
    max-height: 250px;
  }

  /* Buttons */
  .btn--lg {
    padding: 14px 24px;
    font-size: 15px;
  }

  /* Demo popup */
  .demo-extension {
    max-width: 100%;
  }
}
