/* ============================================================
   STATS-STRIP.CSS — Dark band with 4 key numbers
   ============================================================ */

.stats-strip {
  background: var(--color-primary);
  padding-block: var(--space-12);
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='28'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

.stat-item {
  text-align: center;
  padding: var(--space-4);
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.10);
}

.stat-item:last-child::after {
  display: none;
}

.stat-item__icon {
  font-size: var(--text-3xl);
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  display: block;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--weight-bold);
  color: var(--color-text-light);
  line-height: 1;
  margin-bottom: var(--space-2);
  display: block;
}

.stat-item__suffix {
  color: var(--color-accent);
}

.stat-item__label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.58);
  font-weight: var(--weight-medium);
  letter-spacing: 0.02em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .stat-item::after {
    display: none;
  }
}
