/* Experience stats strip — the same "by the numbers" block used on the About
   page, reused above the footer on Services, Track and Contact.
   Classes mirror .about-stats in about.css so the look is identical. */

.about-stats {
    background: #eff4ff;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    padding-block: 53px;
}

.about-stats__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.about-stats__card {
    flex: 1 1 170px;
    max-width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 124px;
    padding: 28px 12px;
    text-align: center;
    background: var(--gg-white);
    border-radius: var(--gg-radius);
}

.about-stats__value {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    color: var(--gg-accent);
}

.about-stats__label {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #434656;
}

@media (max-width: 900px) {
    .about-stats {
        border-top-left-radius: 48px;
        border-top-right-radius: 48px;
        padding-block: 40px;
    }

    .about-stats__grid {
        gap: 16px;
    }

    .about-stats__card {
        flex-basis: 150px;
    }

    .about-stats__value {
        font-size: 26px;
        line-height: 34px;
    }

    .about-stats__label {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 560px) {
    .about-stats {
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
    }

    .about-stats__card {
        flex-basis: calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
}
