.customers {
  position: relative;
  background: #ffffff;
  padding: 38px 0;
  overflow: hidden;
  font-family: sans-serif;
}

.customers-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.customers-bg-line { position: absolute; left: 0; right: 0; height: 1px; }
.customers-bg-line--top { top: 0; background: linear-gradient(90deg, transparent, rgba(0,194,168,0.2), transparent); }
.customers-bg-line--bottom { bottom: 0; background: linear-gradient(90deg, transparent, rgba(0,194,168,0.15), transparent); }

.customers .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.customers-header { position: relative; z-index: 1; text-align: center; margin-bottom: 52px; }

.customers-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 700;
  color: #00C2A8;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.customers-label-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #00C2A8;
  border-radius: 2px;
}

.customers-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #0B1F3A;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.customers-title-accent { color: #00C2A8; }

.customers-subtitle {
  font-size: 15px;
  color: #6B7280;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

.customers-carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 52px;
  padding: 8px 0;
}

.customers-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}

.customers-mask--left { left: 0; background: linear-gradient(90deg, #ffffff 0%, transparent 100%); }
.customers-mask--right { right: 0; background: linear-gradient(270deg, #ffffff 0%, transparent 100%); }

.customers-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: customersScroll 28s linear infinite;
}

.customers-track:hover { animation-play-state: paused; }

@keyframes customersScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.customers-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 90px;
  margin: 0 12px;
  padding: 18px 24px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  flex-shrink: 0;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
}

.customers-logo-wrap:hover {
  border-color: rgba(0,194,168,0.3);
  box-shadow: 0 8px 32px rgba(0,194,168,0.1);
  transform: translateY(-4px);
}

.customers-logo {
  max-width: 130px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: filter 0.3s;
}

.customers-counter-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0B1F3A;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
}

.customers-counter {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 28px 20px;
  transition: background 0.2s;
  cursor: default;
}

.customers-counter:hover { background: rgba(0,194,168,0.08); }

.customers-counter-num {
  font-size: 32px;
  font-weight: 800;
  color: #00C2A8;
  line-height: 1;
  letter-spacing: -0.02em;
}

.customers-counter-num span { font-size: 20px; font-weight: 700; }

.customers-counter-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}

.customers-counter-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .customers { padding: 72px 0; }
  .customers-logo-wrap { width: 150px; height: 80px; margin: 0 8px; }
  .customers-mask { width: 80px; }
}

@media (max-width: 640px) {
  .customers { padding: 56px 0; }
  .customers-logo-wrap { width: 130px; height: 70px; padding: 14px 16px; margin: 0 6px; }
  .customers-mask { width: 48px; }
  .customers-counter-bar { display: grid; grid-template-columns: 1fr 1fr; border-radius: 12px; }
  .customers-counter-divider { display: none; }
  .customers-counter { padding: 20px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .customers-counter:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .customers-counter-num { font-size: 26px; }
  .customers-header { margin-bottom: 36px; }
}