/* ---------------------------------------------------------------------------
   Client Logos Band ("We've got hundreds of winning client stories . . .")
   Ported from watermitigation.ai/pitch-me-hard and themed to RestorationRocket:
   soft-blue surface, navy heading with a single blue accent, white logo cards,
   and a blue closing line. The colored client logos are the pop of color.
   Self-contained: clb- class prefix + assets/img/company-logos/ (no collisions
   with the brand-slider logos in assets/img/clients/).
   --------------------------------------------------------------------------- */
.clb-band {
  background: var(--bg-soft);          /* #F7F9FC */
  text-align: center;
  padding: 88px 24px;                  /* matches .section padding */
  overflow: hidden;
}

.clb-heading {
  max-width: 1000px;
  margin: 0 auto 40px;
  font-size: clamp(2rem, 3.3vw, 3rem); /* matches site h2 */
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--navy);                  /* #0F172A */
}

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

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

.clb-card {
  width: 170px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.clb-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.clb-footer-heading {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--blue);                  /* #2563EB */
}

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