/*  Firm-cta */

.banner {
    padding-top: 64px;
    padding-bottom: 84px;
    position: relative;
}

.banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 520px;
    background: url(/wp-content/uploads/2026/03/banner_vector.svg) no-repeat center top;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
}

.firm-cta {
    border-radius: 20px;
    padding: 1px;
    background: var(--gradient-green-stroke);
    transition: box-shadow 0.3s ease;
}

.firm-cta:hover {
    box-shadow: 0px 0px 10px 2px #32FD8E26;
}

.firm-cta__inner {
    background: var(--navy-950);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
}

.firm-cta__title {
    line-height: 1.1;
    font-weight: 700;
    font-size: 36px;
}

.firm-cta__title-text {
    background: var(--gradient-white-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.firm-cta__title-brand {
    background: var(--gradient-green-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.firm-cta__description {
    margin: 0 auto 20px;
    color: var(--navy-200);
    font-size: 16px;
    line-height: 1.5;
}

.firm-cta__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

@media screen and (max-width: 767px) {

    .banner {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .firm-cta__inner {
        padding: 40px 20px;
    }

    .firm-cta__title {
        font-size: 22px;
    }

    .firm-cta__description {
        font-size: 16px;
    }

    .firm-cta__actions {
        flex-direction: column;
    }

    .firm-cta .btn {
        width: 100%;
        justify-content: center;
    }
}