<link href="https://fonts.googleapis.com/css2?family=Inter:wght@600&family=Raleway:wght@700&display=swap" rel="stylesheet">

<style>
  .stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    font-family: inherit;
  }
  .stats-bar__item {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 2rem;
    text-align: center;
  }
  .stats-bar__value {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #26bbed;
    line-height: 1;
    letter-spacing: -1px;
  }
  .stats-bar__label {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a1a2e;
  }
  .stats-bar__divider {
    width: 1px;
    height: 80px;
    background: #d0d0d8;
    flex-shrink: 0;
  }
  @media (max-width: 640px) {
    .stats-bar {
      flex-direction: column;
      gap: 2rem;
    }
    .stats-bar__divider {
      width: 60px;
      height: 1px;
    }
  }
</style>