.ws-site-cta {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background:
        radial-gradient(circle at 82% 12%,
            rgba(255, 255, 255, 0.12),
            transparent 32%),
        linear-gradient(135deg,
            #174766 0%,
            #1d7397 55%,
            #28a3ca 100%);
}

.ws-site-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 64px;
}

.ws-site-cta__content {
    max-width: 690px;
}

.ws-site-cta__eyebrow {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ws-site-cta h2 {
    margin: 0 0 18px;
    max-width: 680px;
    color: #fff;
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.ws-site-cta p {
    margin: 0;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.65;
}

.ws-site-cta__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ws-site-cta .ws-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.ws-site-cta .ws-button:hover {
    transform: translateY(-2px);
}

.ws-site-cta .ws-button--light {
    border: 1px solid #fff;
    background: #fff;
    color: #176d94;
    box-shadow: 0 12px 30px rgba(5, 39, 58, 0.2);
}

.ws-site-cta .ws-button--light:hover {
    background: #f3fbfe;
    color: #125a7b;
}

.ws-site-cta .ws-button--outline-light {
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.ws-site-cta .ws-button--outline-light:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

@media (max-width: 991px) {
    .ws-site-cta {
        padding: 64px 0;
    }

    .ws-site-cta__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ws-site-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .ws-site-cta {
        padding: 54px 0;
    }

    .ws-site-cta h2 {
        font-size: 36px;
    }

    .ws-site-cta p {
        font-size: 16px;
    }

    .ws-site-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ws-site-cta .ws-button {
        width: 100%;
    }
}