@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(13, 17, 23, 0.96);
    border-bottom: var(--border-soft);
    display: none;
    z-index: 19;
  }
  .primary-nav.open {
    display: block;
  }
  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }
  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .development-card,
  .small-card {
    padding: 2rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
}
@media (max-width: 520px) {
  .brand-text {
    display: none;
  }
  .eyebrow {
    font-size: 0.85rem;
  }
  .page-intro h1,
  .development-card h1,
  .development-card h2 {
    font-size: 2rem;
  }
  .footer-bottom {
    gap: 0.75rem;
  }
}
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-stats,
  .category-grid,
  .product-grid,
  .review-grid,
  .comparison-grid,
  .blog-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-panel,
  .cta-panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .section-header h2 {
    font-size: 2rem;
  }
  .hero-card {
    padding: 1.5rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter-form,
  .newsletter-panel {
    grid-template-columns: 1fr;
  }
}
