/* ===== SOCIAL PROOF STRIP ===== */
.stats-strip {
  background-color: var(--dark, #1A1A1A);
  padding: 2.2rem 1rem;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 3rem;
  gap: 0.3rem;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.stat-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent, #FB8B04);
  line-height: 1.1;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-weight: 500;
}

@media (max-width: 600px) {
  .stat-divider {
    display: none;
  }
  .stat-item {
    padding: 0.6rem 1.5rem;
    flex: 0 0 50%;
  }
  .stat-number {
    font-size: 1.55rem;
  }
  .stat-label {
    font-size: 0.72rem;
  }
}
