.about-stats {
    background: white;
    padding: clamp(2rem, 4vw, 3.5rem) 1rem clamp(2.5rem, 5vw, 4rem);
}

.about-stats__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.about-stat-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    min-height: 220px;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-stat-card__icon {
    width: 34px;
    height: 34px;
    color: #111;
    margin-bottom: 0.8rem;
}

.about-stat-card__title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.25;
    color: #111;
}

.about-stat-card__value {
    margin-top: auto;
    margin-bottom: 0;
    font-size: clamp(2rem, 4.8vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
    color: #0b0b0b;
    letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
    .about-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Tablet'te rakamlar daha okunaklı olsun */
    .about-stat-card__value {
        font-size: clamp(2.4rem, 5.6vw, 3.4rem) !important;
    }
}

@media (max-width: 640px) {
    .about-stats {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .about-stats__grid {
        /* Mobilde 2 kolon */
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .about-stat-card {
        min-height: 180px;
    }

    .about-stat-card__title {
        font-size: 1.2rem;
    }

    /* Mobilde rakamlar küçük kalmasın */
    .about-stat-card__value {
        font-size: clamp(2.2rem, 9vw, 3rem) !important;
        text-align: left !important;
    }
}
