/* Social proof strip — lives below the hero */
.social-proof {
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: #fafbfc;
}
.sp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.sp-clients {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.sp-logo {
  display: inline-block;
  width: 140px;
  height: auto;
}
.sp-logo img,
.sp-logo source { display: block; width: 100%; height: auto; }

.sp-quote {
  flex: 1 1 320px;
  min-width: 260px;
}
.sp-quote blockquote {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  font-style: italic;
}
.sp-quote cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 12px;
  color: #777;
}

.sp-metric {
  text-align: right;
  flex: 0 0 auto;
}
.sp-metric strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: #1a1a1a;
  font-weight: 700;
}
.sp-metric span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #666;
  max-width: 180px;
}

@media (max-width: 720px) {
  .sp-row { flex-direction: column; align-items: flex-start; }
  .sp-metric { text-align: left; }
}