/* ---------------------------------------------------------------------------
   Client Logos Band ("We've got hundreds of winning client stories . . .")
   Section originally ported from watermitigation.ai/pitch-me-hard, re-themed to
   Rocketura's Apple/Tesla palette: light-gray surface, dark heading with a
   single blue accent, white logo cards, and a blue closing line. The colored
   client logos provide the pop of color near the bottom of the page.
   Self-contained: clb- class prefix + images/company-logos/ (no collisions).
   --------------------------------------------------------------------------- */
.clb-band {
  background: var(--light-gray);   /* #F5F5F7 */
  text-align: center;
  padding: 100px 24px;
  overflow: hidden;
}

/* Matches Rocketura's .section-heading scale (3rem / 600 / -0.02em) */
.clb-heading {
  max-width: 1000px;
  margin: 0 auto 48px;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--accent-dark);       /* #000 */
}

.clb-heading .clb-accent {
  color: var(--accent-blue);       /* #0071E3 */
}

.clb-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto 56px;
}

.clb-card {
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--white);
  border: 2px solid #F4F5F7;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: var(--transition-fast);
}

.clb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.clb-logo {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

/* Closing line in the brand blue accent */
.clb-footer-heading {
  margin: 0;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent-blue);       /* #0071E3 */
}

@media screen and (max-width: 600px) {
  .clb-band { padding: 64px 16px; }
  .clb-card { width: 132px; height: 68px; padding: 12px; border-radius: 14px; }
  .clb-logo { max-height: 34px; }
  .clb-logos { gap: 14px; margin-bottom: 40px; }
}
