/* Responsive Design Breakpoints */

/* Mobile & Small Tablets */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-eyebrow {
    margin: 0 auto 1.25rem auto;
  }

  .hero-subtitle {
    margin: 0 auto 2rem auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .nav-links, .nav-actions .btn-primary {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-title { font-size: 2.25rem; }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-3d-wrapper {
    height: 300px;
  }

  .hero-3d-stage {
    width: 260px;
    height: 260px;
    transform: rotateX(10deg) rotateY(-5deg);
  }

  .ai-core-node {
    width: 90px;
    height: 90px;
    margin-top: -45px;
    margin-left: -45px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

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

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

  .hero-workflow-chain {
    flex-wrap: wrap;
    border-radius: var(--radius-lg);
  }
}
