.stats {
    background: #FFCC29;
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.stat-card {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    background: transparent;
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-separator {
    width: 2px;
    height: 80px;
    background: rgba(87, 113, 126, 0.3);
    border-radius: var(--radius-full);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #233444;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: var(--font-size-base);
    color: #233444;
    font-weight: 600;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}