@media screen and (max-width: 479px) {
  .macbook-mockup {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-content {
    max-width: 100%;
  }
}

/* ── Carousel clients ─────────────────────────────────── */
.clients-carousel-section {
  padding: 96px 0 48px;
  overflow: hidden;
}
.clients-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.clients-carousel-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: carousel-scroll 18s linear infinite;
  pointer-events: none;
}
@keyframes carousel-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.carousel-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.04em;
  user-select: none;
}
.carousel-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.carousel-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #111;
  letter-spacing: 0.03em;
  text-align: center;
  user-select: none;
}
@media screen and (max-width: 479px) {
  .carousel-logo { width: 72px; height: 72px; font-size: 11px; }
  .carousel-label { font-size: 10px; }
  .clients-carousel-track { gap: 20px; }
  .clients-carousel-section { padding: 32px 0; }
}
