/* ==========================================================================
   NC FAQ Widget
   ========================================================================== */

.nc-faq {
    padding: 80px 60px;
    background: #0A0A0A;
}

.nc-faq__inner {
    max-width: 800px;
    margin: 0 auto;
}

.nc-faq__label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2563EB;
    text-align: center;
    margin-bottom: 16px;
}

.nc-faq__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 48px;
}

.nc-faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

.nc-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    padding: 0;
    gap: 16px;
}

.nc-faq__question:hover {
    color: #2563EB;
}

.nc-faq__icon {
    color: #2563EB;
    font-size: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.nc-faq__item.active .nc-faq__icon {
    transform: rotate(45deg);
}

.nc-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-right: 40px;
}

.nc-faq__item.active .nc-faq__answer {
    max-height: 500px;
}

.nc-faq__answer p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    padding-top: 12px;
    margin: 0;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .nc-faq {
        padding: 60px 24px;
    }

    .nc-faq__heading {
        margin-bottom: 36px;
    }

    .nc-faq__question {
        font-size: 15px;
    }

    .nc-faq__answer {
        padding-right: 20px;
    }
}
