/* ============================================================
   Section 09 - FAQ
   ============================================================ */

.nl-faq {
    position: relative;
    width: 100%;
    min-height: 951px;
    padding: 112px;
    background: linear-gradient(180deg, #0F172B 0%, #161E34 100%);
    overflow: hidden;
}

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

.nl-faq::before {
    width: 1456px;
    height: 1213px;
    right: -420px;
    top: 290px;
    background: rgba(59, 130, 246, 0.48);
    filter: blur(244px);
}

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

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

.nl-faq__header {
    width: 100%;
    display: flex;
    justify-content: center;
}

.nl-faq__title {
    margin: 0;
    color: #FFFFFF;
    text-align: center;
    font-family: var(--nl-font, "Plus Jakarta Sans", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 120%;
    letter-spacing: -1.5px;
    font-feature-settings: "zero" on;
}

.nl-faq__stack {
    width: min(770px, 100%);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nl-faq__list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.nl-faq__item {
    box-sizing: border-box;
    width: 100%;
    border-bottom: 1px solid #343E4B;
    transition: background 0.28s ease, border-color 0.28s ease, border-radius 0.28s ease, padding 0.28s ease;
}

.nl-faq__item.is-open {
    background: #1A2539;
    border: 1px solid #343E4B;
    border-radius: 12px;
    padding: 24px 35px;
}

.nl-faq__item:not(.is-open) {
    padding: 0 24px;
}

.nl-faq__heading {
    margin: 0;
}

.nl-faq__question {
    width: 100%;
    border: 0;
    background: transparent;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    font-family: var(--nl-font, "Plus Jakarta Sans", sans-serif);
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.3px;
    font-feature-settings: "zero" on;
    padding: 24px 0;
}

.nl-faq__item.is-open .nl-faq__question {
    padding: 0;
    font-weight: 700;
}

.nl-faq__item:not(.is-open) .nl-faq__question {
    font-weight: 500;
}

.nl-faq__icon {
    position: relative;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: #FFFFFF;
}

.nl-faq__icon::before,
.nl-faq__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: #3B82F6;
    transform: translate(-50%, -50%);
    transition: transform 0.28s ease, opacity 0.25s ease;
}

.nl-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.nl-faq__item.is-open .nl-faq__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0.35);
}

.nl-faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.nl-faq__answer-inner {
    overflow: hidden;
    color: #AFBCD5;
    font-family: var(--nl-font, "Plus Jakarta Sans", sans-serif);
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.2px;
    font-feature-settings: "zero" on;
}

.nl-faq__answer-inner p {
    margin: 0;
}

.nl-faq__answer-inner p + p {
    margin-top: 10px;
}

.nl-faq__answer-inner ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

.nl-faq__answer-inner li + li {
    margin-top: 6px;
}

.nl-faq__answer-inner strong {
    color: #FFFFFF;
    font-weight: 600;
}

.nl-faq__item.is-open .nl-faq__answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.nl-faq__item.is-open .nl-faq__answer-inner {
    margin-top: 12px;
}

.nl-faq__contact {
    box-sizing: border-box;
    width: 100%;
    min-height: 97px;
    border: 1px solid #343E4B;
    border-radius: 12px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(22, 31, 52, 0.25);
}

.nl-faq__contact-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nl-faq__contact-title {
    margin: 0;
    color: #FFFFFF;
    font-family: "Inter", var(--nl-font, sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.3px;
}

.nl-faq__contact-text {
    margin: 0;
    color: #AFBCD5;
    font-family: "Inter", var(--nl-font, sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.2px;
}

.nl-faq__contact-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 95px;
    min-height: 32px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #3B82F6;
    color: #FFFFFF;
    font-family: var(--nl-font, "Plus Jakarta Sans", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    font-feature-settings: "zero" on;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nl-faq__contact-btn:hover {
    background: #4A91FF;
    box-shadow: 0 8px 18px rgba(59, 130, 246, 0.35);
    transform: translateY(-1px);
}

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

@media (max-width: 1080px) {
    .nl-faq {
        min-height: auto;
        padding: 88px 32px;
    }

    .nl-faq__title {
        font-size: 50px;
        letter-spacing: -1.2px;
    }
}

@media (max-width: 760px) {
    .nl-faq {
        padding: 72px 16px;
    }

    .nl-faq__title {
        font-size: 38px;
        letter-spacing: -0.8px;
    }

    .nl-faq__stack {
        gap: 14px;
    }

    .nl-faq__item.is-open {
        padding: 18px 18px 20px;
    }

    .nl-faq__item:not(.is-open) {
        padding: 0 16px;
    }

    .nl-faq__question {
        font-size: 15px;
        line-height: 1.45;
    }

    .nl-faq__contact {
        flex-direction: column;
        align-items: flex-start;
    }
}
