  .stats-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin: 15px 0 25px 0;
    padding: 0;
    opacity: 0;
    animation: fadeIn 0.8s ease-in forwards;
  }

  .stat-item {
    text-align: center;
    padding: 5px 5px;
  }

  .stat-number {
    font-size: 2.2em;
    font-weight: 500;
    color: #003366;
    margin-bottom: 8px;
    line-height: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }

  .stat-label {
    font-size: 0.85em;
    color: #4a4a4a;
    font-weight: 500;
    line-height: 1.4;
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

  /* Mobile - shrink to fit 5 in one row */
  @media (max-width: 768px) {
    .stats-row {
      gap: 8px;
    }
    
    .stat-item {
      padding: 10px 3px;
    }
    
    .stat-number {
      font-size: 1.8em;
    }
    
    .stat-label {
      font-size: 0.6em;
      min-height: auto;
    }
  }
