@media (max-width: 1100px) {
  .site-nav {
    gap: 16px;
  }

  .footer-grid,
  .cards-grid,
  .testimonials-grid,
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--color-border);
  }

  .cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    background: var(--color-white);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 8px 0;
  }

  .site-nav a.active::after,
  .site-nav a:hover::after {
    display: none;
  }

  .hero {
    min-height: 78vh;
  }

  .hero__content {
    padding: 70px 0;
  }

  .footer-grid,
  .cards-grid,
  .partners-grid,
  .testimonials-grid,
  .gallery-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .cta-box {
    padding: 28px;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container-width));
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__text {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .cta-box {
    padding: 22px;
  }

  .service-card__body,
  .testimonial-card {
    padding: 20px;
  }
}
@media (max-width: 860px) {
  .about-grid,
  .about-cards,
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-image-placeholder {
    min-height: 260px;
  }
}
