/* ============================================================
   Section 10 - CTA
   ============================================================ */

.nl-cta {
    position: relative;
    width: 100%;
    padding: 64px 112px;
    background: #0F172B;
    overflow: hidden;
}

.nl-cta::before,
.nl-cta::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
}

.nl-cta::before {
    width: 1457px;
    height: 1213px;
    right: -430px;
    top: 300px;
    background: rgba(59, 130, 246, 0.52);
    filter: blur(244px);
}

.nl-cta::after {
    width: 1287px;
    height: 1072px;
    left: -260px;
    top: 560px;
    background: rgba(20, 28, 49, 0.95);
    filter: blur(110px);
}

.nl-cta__inner {
    position: relative;
    z-index: 2;
    width: min(1216px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nl-cta__content {
    width: min(1260px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.nl-cta__title {
    margin: 0;
    width: 100%;
    color: #FFFFFF;
    font-family: var(--nl-font, "Plus Jakarta Sans", sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -1.5px;
    font-feature-settings: "zero" on;
}

.nl-cta__title-accent {
    color: #3B82F6;
    font-weight: 600;
}

.nl-cta__subtitle {
    margin: 0;
    width: min(1085px, 100%);
    color: #AFBCD5;
    font-family: var(--nl-font, "Plus Jakarta Sans", sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -0.3px;
    font-feature-settings: "zero" on;
}

.nl-cta__actions {
    display: flex;
    justify-content: center;
}

.nl-cta__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 108px;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #3B82F6;
    color: #E8EAED;
    text-decoration: none;
    font-family: var(--nl-font, "Plus Jakarta Sans", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.2px;
    font-feature-settings: "zero" on;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nl-cta__btn:hover {
    background: #4A91FF;
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.35);
    transform: translateY(-1px);
}

.nl-cta__btn:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.95);
    outline-offset: 2px;
}

@media (max-width: 1260px) {
    .nl-cta {
        min-height: auto;
        padding: 72px 36px;
    }

    .nl-cta__title {
        font-size: 42px;
        letter-spacing: -1.2px;
    }

    .nl-cta__subtitle {
        font-size: 21px;
    }
}

@media (max-width: 860px) {
    .nl-cta {
        padding: 64px 18px;
    }

    .nl-cta__inner {
        gap: 44px;
    }

    .nl-cta__content {
        gap: 20px;
    }

    .nl-cta__title {
        font-size: 34px;
        letter-spacing: -0.9px;
    }

    .nl-cta__subtitle {
        font-size: 18px;
    }
}

@media (max-width: 560px) {
    .nl-cta__title {
        font-size: 28px;
    }

    .nl-cta__subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
}
