/* Stats Section */

.stats-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: flex-end;
}

.stat-item {
    text-align: right;
    padding: 1.5rem 2.5rem;
    background: transparent;
    border: 1px solid #000;
    transition: transform 0.3s ease;
    width: auto;
    min-width: 220px;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-number::before {
    content: '+';
    color: #ccc;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {

    .stats-grid {
        flex-direction: column;
        align-items: flex-end;
        gap: 1.5rem;
    }

    .stat-item {
        min-width: 240px;
        padding: 1.5rem;
        text-align: right;
    }
}
