@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .hero-panel {
    min-height: auto;
    padding: 3.2rem 1.5rem 8.5rem;
  }

  .hero-content h1 {
    font-size: clamp(2.4rem, 8vw, 4rem);
  }

  .hero-logo-wrap {
    width: min(100%, 260px);
  }

  .banana-floor-layer {
    height: 150px;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 1001;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(100%, 320px);
    transform: translateX(100%);
    background: rgba(255, 249, 239, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: -12px 0 32px rgba(146, 100, 73, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.28s ease;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 1.4rem;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .logo-img {
    height: 50px;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step:hover,
  .process-step:focus-visible,
  .process-step.is-active {
    transform: translateY(-4px) scale(1.02);
  }

  .footer-links {
    justify-content: center;
  }

  .stack-card {
    position: relative;
    top: auto;
  }

  .section-wrap:nth-child(n + 2) .stack-card {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  .site-shell {
    padding-top: 86px;
  }

  .header-container {
    height: 76px;
  }

  .hero-panel,
  .stack-card {
    border-radius: 24px;
  }

  .hero-panel {
    padding: 2.8rem 1rem 7.5rem;
  }

  .stack-card {
    padding: 3rem 1.2rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-points li,
  .btn {
    width: 100%;
  }

  .hero-logo-wrap {
    width: min(100%, 220px);
  }

  .footer {
    padding: 3.5rem 0 7rem;
  }

  .footer-logo {
    width: 180px;
  }
}