@media (max-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-row {
    grid-template-columns: 1fr;
  }

  .feature-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .feature-split--reverse .feature-split__content,
  .feature-split--reverse .feature-split__visual {
    order: unset;
  }

  .feature-split__visual {
    order: -1;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-nav__links,
  .site-nav__actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav.is-open .site-nav__links,
  .site-nav.is-open .site-nav__actions {
    display: flex;
  }

  .site-nav.is-open {
    position: fixed;
    inset: 0;
    top: 64px;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    gap: 1.5rem;
    overflow-y: auto;
  }

  .site-nav.is-open .site-nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .site-nav.is-open .site-nav__actions {
    flex-direction: column;
    width: 100%;
  }

  .site-nav.is-open .site-nav__actions .btn {
    width: 100%;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .stat-strip__item {
    padding: 1.25rem 1rem;
  }

  .platform__mock-body {
    min-height: 260px;
    padding: 1rem;
  }

  .chat-bubble {
    font-size: 0.875rem;
    max-width: 95%;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .cta-band__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-band__actions .btn {
    width: 100%;
  }
}
