/* Genel bar alanı */
.vc-stats-bar {
    width: 100%;
    background: linear-gradient(90deg, #ff7a18, #ffb347);
    padding: 24px 0;
    border-radius: 0px;
    margin: 25px 0 30px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* İç grid yapısı */
.vc-stats-container {
    max-width: 1905px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Her kutucuk */
.vc-stats-item {
    flex: 1;
    background: #fff;
    padding: 18px 22px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(255,255,255,0.25);
    transition: 0.25s ease;
}

.vc-stats-item:hover {
    transform: translateY(-4px);
}

/* Icon alanı */
.vc-stats-icon {
    width: 58px;
    height: 58px;
    background: #ffe6d0;
    color: #ff7a18;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border-radius: 15px;
}

/* Yazılar */
.vc-stats-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.vc-stats-number {
    font-size: 22px;
    font-weight: 700;
    color: #2d2d2d;
}

.vc-stats-label {
    font-size: 14px;
    color: #4b4b4b;
}

/* Mobil uyum — alt alta gelsin */
@media (max-width: 768px) {
    .vc-stats-container {
        flex-direction: column;
    }
    .vc-stats-item {
        width: 100%;
    }
}
