/* ==========================================================================
   Antigravity Hub - Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .pricing-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 14px 0;
  }

  .nav-links {
    display: none; /* Hide standard nav on mobile */
  }

  .hero {
    padding-top: 130px;
    padding-bottom: 60px;
  }

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

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

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

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

  .pricing-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

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

  .modal-content {
    margin: 10px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .chat-box {
    width: calc(100vw - 40px);
    right: 20px;
    bottom: 90px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .feature-pills {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .status-pill {
    display: none;
  }
}
