:root {    
    --color-purple: #7B609E;
    --color-orange: #E09121;
    --color-text-dim: #333333;
    
    --transition-base: all 0.3s ease;
}

/* Main Styles */
.page-wrapper {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

/* Stats Cards */
.stats {
    margin-bottom: 80px;
}

.stats-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.stats-card__number {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stats-card__unit {
    font-size: 48px;
    font-weight: 700;
}

.stats-card__text {
    font-size: 15px;
    color: var(--color-text-dim);
    font-weight: 500;
    max-width: 180px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Colors */
.color-purple {
    color: var(--color-purple);
}

.color-orange {
    color: var(--color-orange);
}

.fw-600 {
    font-weight: 600;
}

/* Content Section */
.content {
    padding-bottom: 60px;
}

.content__description {
    font-size: 34px;
    line-height: 1.4;
    color: #000;
    font-weight: 400;
    letter-spacing: -0.5px;
}

@media (max-width: 1200px) {
    .content__description {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .stats-card {
        padding: 30px 15px;
    }
    .stats-card__number {
        font-size: 48px;
    }
    .stats-card__unit {
        font-size: 40px;
    }
    .content__description {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .page-wrapper {
        padding: 60px 0;
    }
    .stats-card__number {
        font-size: 42px;
    }
    .content__description {
        font-size: 20px;
    }
}