/* =========================================
   STATS / CTA SECTION
   ========================================= */

.stats {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 380px 20px 100px 20px;
    /* increased top spacing to the max since it was "too close" twice */
    overflow: hidden;
}

.stats__container {
    position: relative;
    width: 100%;
    max-width: 1470px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Vector 2 Decoration was removed */

.stats__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1267px;
    gap: 60px;
    padding: 40px 0;
}

/* Left side */
.stats__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    max-width: 538px;
    flex: none;
}

.stats__tag {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 14px;
    background: rgba(78, 32, 61, 0.05);
    border-radius: 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: #4E203D;
}

.stats__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 3.5vw, 36px);
    line-height: 1.2;
    color: #4E203D;
    margin: 0;
}

.stats__description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.35;
    color: #6F6F6F;
    margin: 0 0 10px 0;
}

.stats__download-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 8px 12px 16px;
    gap: 10px;
    background: #4E203D;
    border-radius: 32px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stats__download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(78, 32, 61, 0.15);
}

.stats__download-btn span:first-child {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: #FFFFFF;
}

.stats__download-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: #FDFAF1;
    border-radius: 50%;
}

.stats__download-icon svg {
    margin-left: 2px;
}

/* Right side grid */
.stats__right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* Align right slightly as per layout */
}

.stats__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    gap: 24px 46px;
    max-width: 618px;
}

.stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    width: 286px;
    text-align: center;
}

.stats__number {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 500;
    font-size: clamp(48px, 6vw, 64px);
    line-height: 1.2;
    color: #4E203D;
}

.stats__label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.8vw, 18px);
    line-height: 1.2;
    text-transform: uppercase;
    color: #6F6F6F;
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .stats__content {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .stats__left {
        align-items: center;
    }

    .stats__description {
        text-align: center;
    }

    .stats__right {
        justify-content: center;
    }

    .stats__item {
        width: 40%;
        min-width: 200px;
    }
}

@media screen and (max-width: 600px) {
    .stats__item {
        width: 100%;
        margin-bottom: 20px;
    }

    .stats {
        padding: 40px 20px;
    }
}