/* ========== FACTS SECTION ========== */
.facts {
    background: var(--bg);
    padding: 3cqw 0;
}

.facts__inner {
    display: flex;
    flex-direction: column;
}

.facts__title {
    font-size: 3cqw;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 3cqw;
    line-height: 1.3;
}

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

/* ========== STACK ========== */
.facts__stack {
    position: relative;
}

/* ========== CARD ========== */
.facts__card {
    position: sticky;
    top: 25vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3cqw;
    transform-origin: center top;
    transition: transform 0.05s linear;
    will-change: transform;
}

.facts__card--last {
    position: sticky;
}

.facts__card-left {
    padding: 4cqw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.facts__card-number {
    font-size: 3.5cqw;
    color: var(--white);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 2cqw;
}

.facts__card-heading {
    font-size: 2.4cqw;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5cqw;
    line-height: 1.3;
}

.facts__card-text {
    font-size: 1.5cqw;
    color: var(--gray);
    line-height: 1.6;
}

.facts__card-right {
    overflow: hidden;
}

.facts__card-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
    min-height: 32cqw;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1050px) {
    .facts__title {
        font-size: 4cqw;
    }

    .facts__card-number {
        font-size: 4.5cqw;
    }

    .facts__card-heading {
        font-size: 2.2cqw;
    }

    .facts__card-text {
        font-size: 1.4cqw;
    }
}

@media (max-width: 768px) {
    .facts {
        padding: 10cqw 0;
    }

    .facts__title {
        font-size: 6cqw;
        margin-bottom: 6cqw;
    }

    .facts__card {
        grid-template-columns: 1fr;
        margin-bottom: 8cqw;
        top: 15vh;
    }

    .facts__card-left {
        padding: 7cqw;
    }

    .facts__card-number {
        font-size: 8cqw;
        margin-bottom: 4cqw;
    }

    .facts__card-heading {
        font-size: 4.5cqw;
        margin-bottom: 3cqw;
        margin-top: 4cqw;
    }

    .facts__card-text {
        font-size: 3.5cqw;
    }

    .facts__card-right {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 490px) {
    .facts__title {
        font-size: 7cqw;
        margin-bottom: 9cqw;
    }

    .facts__card-number {
        font-size: 10cqw;
    }

    .facts__card-heading {
        font-size: 6cqw;
        margin-bottom: 3cqw;
        margin-top: 2cqw;
    }

    .facts__card-text {
        font-size: 4cqw;
    }
}
