.final-cta {
    padding-top: 160px;
    padding-bottom: 80px;
}

.final-cta__inner {
    position: relative;
    background: var(--violet);
    border-radius: 44px;
    padding: 98px 48px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    overflow: hidden;
}

.final-cta__title {
    position: relative;
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 52px;
    line-height: 1.35;
    letter-spacing: -1.5px;
    color: var(--white);
    max-width: 1260px;
}

.final-cta__accent {
    color: var(--yellow);
}

.final-cta__desc {
    position: relative;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    max-width: 938px;
    padding-bottom: 8px;
}

.final-cta__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--yellow);
    border-radius: 18px;
    padding: 20px 48px;
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #0a0a0a;
    transition: transform .18s, box-shadow .2s;
}
.final-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(246, 197, 92, 0.45);
}
.final-cta__btn:active {
    transform: translateY(0);
}
.final-cta__btn span {
    font-family: var(--f-body);
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
}

.final-cta__blob {
    position: absolute;
    pointer-events: none;
}

.final-cta__blob.left {
    bottom: -420px;
    left: -380px;
}

.final-cta__blob.right {
    top: -10px;
    right: -350px;
}

.final-cta__wrapper {
    position: relative;
}

.final-cta__decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: auto;
}

.final-cta__decor.top {
    height: 270px;
    top: -100px;
    left: -70px;
}

.final-cta__decor.bottom {
    height: 370px;
    bottom: -120px;
    right: -80px;
}

@media (max-width: 1240px) {
    .final-cta__decor.top {
        height: 190px;
        top: -60px;
        left: -60px;
    }
    
    .final-cta__decor.bottom {
        height: 250px;
        bottom: -110px;
        right: -60px;
    }
}

@media (max-width: 1023px) {
    .final-cta {
        padding-top: 120px;
    }
    .final-cta__inner {
        padding: 72px 32px;
        border-radius: 32px;
    }
    .final-cta__title {
        font-size: 40px;
    }
    .final-cta__desc {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .final-cta {
        padding-top: 80px;
        padding-bottom: 48px;
    }
    .final-cta__inner {
        padding: 48px 20px;
        gap: 18px;
        border-radius: 24px;
    }
    .final-cta__title {
        font-size: 28px;
        letter-spacing: -0.8px;
    }
    .final-cta__desc {
        font-size: 16px;
    }
    .final-cta__btn {
        width: 100%;
        padding: 18px 24px;
        font-size: 17px;
    }
    .final-cta__decor.top {
        height: 100px;
        top: -30px;
        left: -30px;
    }
    
    .final-cta__decor.bottom {
        height: 150px;
        bottom: -70px;
    }
}
