.tedi-stats-bar {
    --tedi-green: #75d63d;
    --tedi-green-dark: #48a91f;
    --tedi-bg: #eef3fb;
    --tedi-text: #1d1c2f;
    --tedi-muted: #4a4d5f;
    --tedi-card: #ffffff;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
    align-items: center;
    padding: 42px 7.5%;
    background: var(--tedi-bg);
    border-top: 3px solid var(--tedi-green);
    border-bottom: 1px solid rgba(72, 169, 31, .18);
}

.tedi-stat-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-width: 0;
}

.tedi-stat-icon {
    width: 90px;
    height: 90px;
    flex: 0 0 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tedi-green-dark);
    background: var(--tedi-card);
    border: 3px solid var(--tedi-green);
    border-radius: 24px;
    box-shadow: 0 14px 28px rgba(72, 169, 31, .13);
}

.tedi-stat-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

.tedi-stat-info {
    min-width: 96px;
}

.tedi-stat-number {
    color: var(--tedi-text);
    font-size: clamp(30px, 2.7vw, 43px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
    white-space: nowrap;
}

.tedi-stat-label {
    margin-top: 12px;
    color: var(--tedi-text);
    font-size: clamp(15px, 1.3vw, 20px);
    font-weight: 500;
    line-height: 1.25;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .tedi-stats-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 34px 24px;
        gap: 28px 24px;
    }

    .tedi-stat-card {
        justify-content: flex-start;
        max-width: 360px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 560px) {
    .tedi-stats-bar {
        grid-template-columns: 1fr;
        padding: 28px 18px;
        gap: 20px;
    }

    .tedi-stat-card {
        background: rgba(255, 255, 255, .58);
        border-radius: 18px;
        padding: 14px;
        box-shadow: 0 6px 18px rgba(29, 28, 47, .05);
    }

    .tedi-stat-icon {
        width: 74px;
        height: 74px;
        flex-basis: 74px;
        border-radius: 20px;
    }

    .tedi-stat-icon svg {
        width: 31px;
        height: 31px;
    }
}
