.final-cta {
    position: relative;
    min-height: 720px;
    padding: 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--bg);
    overflow: hidden
}

.cta-container {
    position: relative;
    z-index: 2;
    width: min(1000px, 90%);
    text-align: center
}

.final-cta .section-label {
    justify-content: center;
    color: var(--bg);
    opacity: .55
}

.final-cta .section-label span {
    background: var(--bg)
}

.final-cta h2 {
    margin: 30px 0 0;
    font-size: clamp(4rem, 9vw, 9rem);
    line-height: .85;
    letter-spacing: -.085em;
    font-weight: 700
}

.final-cta h2 em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1px var(--bg)
}

.final-cta p {
    max-width: 520px;
    margin: 35px auto 0;
    color: var(--bg);
    opacity: .6;
    font-size: 1rem;
    line-height: 1.7
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 23px;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .3s ease, background .3s ease, color .3s ease
}

.cta-primary {
    background: var(--bg);
    color: var(--accent)
}

.cta-secondary {
    border: 1px solid rgba(128, 128, 128, .35);
    color: var(--bg)
}

.cta-primary span,
.cta-secondary span {
    transition: transform .3s ease
}

.cta-primary:hover,
.cta-secondary:hover {
    transform: translateY(-4px)
}

.cta-primary:hover {
    background: transparent;
    color: var(--bg);
    border: 1px solid rgba(128, 128, 128, .35)
}

.cta-secondary:hover {
    background: var(--bg);
    color: var(--accent)
}

.cta-primary:hover span,
.cta-secondary:hover span {
    transform: translate(3px, -3px)
}

.cta-contact {
    margin-top: 55px;
    color: var(--bg);
    opacity: .35;
    font-size: .7rem;
    letter-spacing: .15em
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(128, 128, 128, .15);
    filter: blur(100px);
    animation: ctaPulse 6s ease-in-out infinite
}

.cta-orbit {
    position: absolute;
    border: 1px solid rgba(128, 128, 128, .2);
    border-radius: 50%;
    pointer-events: none
}

.cta-orbit-one {
    width: 650px;
    height: 650px;
    animation: ctaRotate 25s linear infinite
}

.cta-orbit-two {
    width: 900px;
    height: 900px;
    animation: ctaRotate 35s linear infinite reverse
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: scale(.8);
        opacity: .4
    }

    50% {
        transform: scale(1.2);
        opacity: .8
    }
}

@keyframes ctaRotate {
    to {
        transform: rotate(360deg)
    }
}

@media(max-width:600px) {
    .final-cta {
        min-height: 650px;
        padding: 110px 0
    }

    .final-cta h2 {
        font-size: clamp(3.5rem, 17vw, 5.5rem)
    }

    .final-cta p {
        font-size: .9rem;
        margin-top: 28px
    }

    .cta-actions {
        flex-direction: column;
        margin-top: 32px
    }

    .cta-primary,
    .cta-secondary {
        width: 100%
    }

    .cta-orbit-one {
        width: 450px;
        height: 450px
    }

    .cta-orbit-two {
        width: 650px;
        height: 650px
    }
}

@media(prefers-reduced-motion:reduce) {

    .cta-glow,
    .cta-orbit {
        animation: none
    }
}