.contact-cta {
    background: linear-gradient(135deg, var(--color-accent) 0%, #9a7209 100%);
    color: #fff;
    overflow: hidden;
    padding: 5rem 0;
    position: relative;
    text-align: center;
}

.contact-cta::before {
    background-color: rgba(255, 255, 255, .04);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    content: '';
    height: 500px;
    pointer-events: none;
    position: absolute;
    right: -150px;
    top: -200px;
    width: 500px;
}

.contact-cta::after {
    background-color: rgba(255, 255, 255, .03);
    bottom: -150px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    content: '';
    height: 350px;
    left: -100px;
    pointer-events: none;
    position: absolute;
    width: 350px;
}

.contact-cta__inner {
    margin: 0 auto;
    max-width: var(--content-max-width);
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.contact-cta__label {
    -webkit-tap-highlight-color: transparent;
    color: rgba(255, 255, 255, .9);
    cursor: default;
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    margin-bottom: .5rem;
    text-decoration: none;
    text-transform: uppercase;
}

.contact-cta__title {
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-cta__text {
    color: rgba(255, 255, 255, .8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-cta__actions {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: .8rem;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .contact-cta {
        padding: 3.5rem 0;
    }

    .contact-cta::before {
        height: 250px;
        right: -100px;
        top: -100px;
        width: 250px;
    }

    .contact-cta::after {
        bottom: -80px;
        height: 180px;
        left: -60px;
        width: 180px;
    }

    .contact-cta__title {
        font-size: 1.8rem;
    }

    .contact-cta__actions {
        align-items: center;
        flex-direction: column;
    }

    .contact-cta__link {
        align-self: center;
    }
}