.stats-module {
    padding: 80px 56px;
}

.stats-title {
    margin: 0;
    text-transform: uppercase;
}

.stats-v1 .stats-wrapper {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.stats-v1 .stats-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.stats-v1 .stats-header .stats-title {
    width: 100%;
    max-width: 40%;
    text-align: left;
}

.stats-v1 .stats-header .stats-text {
    width: 100%;
    max-width: 57%;
    text-align: left;
}

.stats-v1 .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stats-v2 .stats-wrapper,
.stats-v3 .stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 130px;
}

.stats-v2 .stats-header .stats-title,
.stats-v3 .stats-header .stats-title {
    margin-bottom: 16px;
}

.stats-v2 .stats-grid,
.stats-v3 .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stats-module .stat-number {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-secondary);
    margin-bottom: 18px;
}

.stats-module.stats-v2 .stat-number, .stats-module.stats-v3 .stat-number{
    border-bottom: 1px solid var(--color-primary);
}

.stat-label {
    text-transform: uppercase;
}

/* Mobile */
@media (max-width: 992px) {
    .stats-module {
        padding: 40px 20px;
    }

    .stats-v1 .stats-header {
        flex-direction: column;
        gap: 20px;
    }

    .stats-v1 .stats-header .stats-title,
    .stats-v1 .stats-header .stats-text {
        max-width: 100%;
    }

    .stats-v1 .stats-grid,
    .stats-v2 .stats-grid,
    .stats-v3 .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-v1 .stats-wrapper {
        gap: 20px;
    }
    
    .stat-number {
        padding-bottom: 8px;
        margin-bottom: 8px;
    }
    
    .stats-v2 .stats-wrapper,
    .stats-v3 .stats-wrapper {
        grid-template-columns: 1fr;
    }
}