/* ========== BRANDS ========== */
.brands {
  padding: 110px 0 0;
  border-top: 1px solid var(--line);
}
.brands-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
  margin-bottom: 28px;
}
.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 28px;
}
.brands-list span {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 4px 0;
  white-space: nowrap;
  transition: color 0.2s, transform 0.15s;
}
.brands-list span:hover { color: var(--ink); }
.brands-list span[data-brand] { cursor: pointer; }
.brands-list span[data-brand]:active { transform: scale(0.96); }
.brands-note {
  font-size: 14px;
  color: var(--ink-3);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Routes rail */
.routes {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
  padding: 18px 0;
}
.routes-track {
  display: inline-flex;
  white-space: nowrap;
  gap: 24px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  animation: routes 60s linear infinite;
  align-items: center;
}
.route { white-space: nowrap; }
.route b { color: var(--ink); font-weight: 600; margin-right: 4px; }
.route-sep { color: var(--ink-3); }
@keyframes routes {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

