.stat-section {
    position: relative;
    padding: 70px 0;
    background: #fff;
}

.stat-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box h2 {
    font-size: 70px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.stat-number::after {
    content: "+";
}

.stat-text {
    margin-top: 10px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Sağdaki gri baloncuklar */
.bubble-group {
    position: absolute;
    right: 40px;
    top: 20px;
}

.bubble {
    display: block;
    border: 4px solid #cfcfcf;
    border-radius: 50%;
    background: transparent;
    margin-bottom: 12px;
}

.b1 { width: 60px; height: 60px; }
.b2 { width: 35px; height: 35px; }
.b3 { width: 25px; height: 25px; }
.b4 { width: 15px; height: 15px; }

/* ========================
      MOBİL
========================= */
@media (max-width: 768px) {
    .stat-container {
        flex-direction: column;
        gap: 40px;
    }

    .stat-box h2 {
        font-size: 55px;
    }

    .bubble-group {
        display: none;
    }
}
/* TÜM NORMAL METİNLERDE ALAN SANS KULLAN */
body,
body *:not(i):not(.fa):not([class*="fa-"]) {
    font-family: 'Alan Sans', sans-serif !important;
}