.nq-faq {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.nq-faq__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 40% at 20% 50%, rgba(15, 134, 248, 0.04), transparent),
        radial-gradient(ellipse 45% 35% at 80% 60%, rgba(73, 222, 255, 0.03), transparent),
        linear-gradient(180deg, #fafeff 0%, #f0f9ff 100%);
    z-index: 0;
}

.nq-faq > .nq-section-glow {
    z-index: 0;
}

.nq-faq > .nq-shell {
    position: relative;
    z-index: 1;
}

.nq-faq__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nq-faq__heading {
    font-size: clamp(1.65rem, 3.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--nq-text, #0f172a);
    margin: 0.75rem 0 0;
}

.nq-faq__subtitle {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    color: var(--nq-muted, #64748b);
    line-height: 1.65;
    margin: 0.75rem 0 0;
}

.nq-faq__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nq-faq__item {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 134, 248, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nq-faq__item[open] {
    border-color: rgba(15, 134, 248, 0.18);
    box-shadow: 0 8px 32px rgba(15, 134, 248, 0.06);
}

.nq-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.nq-faq__q-wrap {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.nq-faq__q-icon {
    width: 1.35rem;
    height: 1.35rem;
    margin-top: 0.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--nq-primary, #0f86f8);
    opacity: 0.95;
}

.nq-faq__q-icon i,
.nq-faq__chevron i {
    --fa-primary-color: #0f86f8;
    --fa-secondary-color: #49deff;
    --fa-primary-opacity: 1;
    --fa-secondary-opacity: 0.4;
}

.nq-faq__question::-webkit-details-marker {
    display: none;
}

.nq-faq__question::marker {
    display: none;
    content: "";
}

.nq-faq__q-text {
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    font-weight: 600;
    color: var(--nq-text, #0f172a);
    line-height: 1.45;
}

.nq-faq__chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nq-primary, #0f86f8);
    transition: transform 0.3s ease;
}

.nq-faq__item[open] .nq-faq__chevron {
    transform: rotate(180deg);
}

.nq-faq__answer {
    padding: 0 1.5rem 1.5rem;
    animation: nq-faq-reveal 0.35s ease;
}

.nq-faq__answer p {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.75;
    color: var(--nq-muted, #64748b);
    margin: 0;
}

.nq-faq__answer strong {
    color: var(--nq-text, #0f172a);
    font-weight: 600;
}

@keyframes nq-faq-reveal {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .nq-faq {
        padding: 4rem 0;
    }

    .nq-faq__header {
        margin-bottom: 2.5rem;
    }

    .nq-faq__question {
        padding: 1rem 1.25rem;
    }

    .nq-faq__answer {
        padding: 0 1.25rem 1.25rem;
    }

    .nq-faq__item {
        border-radius: 12px;
    }
}
