/* ==============================================
   TRUSTED BY SECTION — v5 (JS-driven scroll)
   ============================================== */

#tb-section {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  overflow: hidden;
}

.tb-inner {
  display: flex;
  align-items: stretch;
  height: 100px;
}

.tb-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 44px 0 52px;
  border-right: 1px solid #f0f0f0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c0c0c0;
  white-space: nowrap;
  margin: 0;
}

.tb-viewport {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #fff 8%, #fff 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #fff 8%, #fff 92%, transparent 100%);
}

/* Belt — position driven by JS transform, no CSS animation */
.tb-belt {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.tb-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e4e4e4;
  flex-shrink: 0;
  margin: 0 12px;
}

.tb-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid #ebebeb;
  background: #f9f9f9;
  color: #606060;
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: default;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
              color 0.2s ease, background 0.2s ease;
}

.tb-pill i {
  font-size: 14px;
  color: #c8c8c8;
  transition: color 0.2s ease;
}

.tb-pill:hover {
  border-color: rgba(229, 84, 0, 0.45);
  background: #fff8f5;
  color: #1a1a1a;
  box-shadow: 0 4px 18px rgba(229, 84, 0, 0.1);
}

.tb-pill:hover i {
  color: #e55400;
}

@media (max-width: 768px) {
  .tb-label { display: none; }
  .tb-inner { height: 76px; }
  .tb-pill  { font-size: 12.5px; padding: 7px 16px; }
}

@media (max-width: 480px) {
  .tb-inner { height: 64px; }
  .tb-pill  { font-size: 12px; padding: 6px 13px; }
}

/* ===== Performance: GPU-accelerated logo scroll ===== */
.trusted-track,
.logos-track,
.companies-track {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}
