.statistics {
  background: #ffffff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.statistics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  opacity: 0.7;
}

.statistics-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.statistics-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.statistics-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.55;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.statistics-card {
  background: transparent;
  padding: 1.75rem 1.25rem 1.5rem;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.statistics-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.statistics-card:hover::before {
  opacity: 1;
}

.statistics-value-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
  margin-bottom: 0.5rem;
}

.statistics-value {
  font-family: 'Aldrich', sans-serif;
  font-size: clamp(2.5rem, 5vw, 69px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.statistics-suffix {
  font-size: 69px;
  font-weight: 700;
  color: var(--accent);
  -webkit-text-fill-color: initial;
}

.statistics-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
}

@media (max-width: 1024px) {
  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .statistics-value {
    font-size: clamp(2rem, 6vw, 2.75rem);
  }
}

@media (max-width: 600px) {
  .statistics {
    padding: 3rem 0;
  }

  .statistics-title {
    font-size: 1.75rem;
  }

  .statistics-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .statistics-card {
    padding: 1.75rem 1.25rem;
  }

  .statistics-value {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .statistics-label {
    font-size: 0.875rem;
  }
}
