﻿/* ── By the Numbers ── */
.dariba-numbers {
  background: var(--clr-accent);
  padding: 56px 40px;
}
.numbers-inner { max-width: 960px; margin: 0 auto; }

.numbers-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.numbers-eyebrow::before,.numbers-eyebrow::after{
  content:'';width:32px;height:0.5px;background:rgba(255,255,255,0.3);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.numbers-stat {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.numbers-stat:not(:last-child)::after {
  content:'';
  position:absolute;
  right:0;top:20%;height:60%;
  width:0.5px;
  background:rgba(255,255,255,0.2);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 6px;
}
.stat-sub { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.4; }

@media(max-width:768px){
  .numbers-grid{ grid-template-columns:repeat(2,1fr); gap:32px; }
  .numbers-stat::after{ display:none; }
  .stat-number{ font-size:38px; }
}
