/* Statistics Component Styles */
.statistics {
    padding-top: 0;
}

.statistics__content {
    position: absolute;
    bottom: -286px;
    height: 368px;
    /* padding: 6rem 2rem; */
    border-radius: 10px;
    width: 98%;
    box-sizing: border-box;
}

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.statistics__item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.statistics__item::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 0;
    height: 4px;
    border-radius: 10px;
    background: var(--dark-gray);
    transition: width 0.4s cubic-bezier(0.68, -0.12, 0.25, 1.55);
}

.statistics__item:hover::after {
    width: 90%;
}

.statistics__info {
    margin-top: 1rem;
}

.statistics__info-title {
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
    line-height: 95%;
    height: 38px;
}

.statistics__info-description {
    margin-top: 15px;
    max-width: 234px;
    font-size: 22px;
    line-height: 100%;
}

.statistics__circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2E3230 0%, #242725 20%, #171918 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-green);
    font-style: italic;
    transition: all 0.3s ease;
    border: 10px solid var(--light-gray);
    border-radius: 50%;
}

.statistics__value {
    color: var(--primary-green);
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
}

.statistics__description {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.statistics__item:hover .statistics__circle {
    transform: scale(1.1);
    /* box-shadow: 0 0 30px rgba(96, 255, 160, 0.3); */
}

/* Mobile Statistics Styles */
@media (max-width: 768px) {
    .statistics {
        padding: 3rem 1rem;
    }

    .statistics__content {
        position: relative !important;
        height: auto !important;
        min-height: 100% !important;
        bottom: auto !important;
    }

    .statistics__info {
        width: 100%;
    }

    .statistics__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        flex-direction: column;
        width: 100%;
    }

    .statistics__circle {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }

    .statistics__description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .statistics__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .statistics__circle {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
}
