@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-3);
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: var(--spacing-3);
  }

  .feature-block.reverse {
    direction: ltr;
  }

  .feature-image img {
    height: 260px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--c-surface);
    flex-direction: column;
    align-items: stretch;
    padding: 70px var(--spacing-2) var(--spacing-3);
    box-shadow: var(--shadow-lg);
    transition: right 0.35s ease;
    z-index: 150;
    gap: 0;
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav a {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--c-border-light);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 140;
  }

  .nav-overlay.show {
    display: block;
  }

  .hero-content h1 {
    font-size: 1.85rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero {
    min-height: 340px;
  }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.2rem; }

  .section {
    padding: var(--spacing-4) 0;
  }
}

@media (max-width: 600px) {
  .topbar-inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .topbar-item {
    font-size: 0.8rem;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-tagline {
    font-size: 0.6rem;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-1);
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-text {
    min-width: 0;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 1.55rem;
  }

  .hero-content {
    padding: var(--spacing-3) 0;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number {
    font-size: 1.7rem;
  }

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

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

@media (max-width: 400px) {
  .stats-row {
    grid-template-columns: 1fr;
  }
}
