/* ===== NOMIO FAQ ACCORDION ===== */
.nomio-faq {
    background: #0d0b1e;
    padding: 80px 0;
}

.nfaq-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
}

.nfaq-accordion {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nfaq-acc-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.25s;
}

.nfaq-acc-item.is-open {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(139, 92, 246, 0.3);
}

.nfaq-acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
    gap: 12px;
}

.nfaq-acc-trigger:hover {
    color: #8b5cf6;
}

.nfaq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.5);
}

.nfaq-acc-item.is-open .nfaq-icon {
    transform: rotate(180deg);
    color: #8b5cf6;
}

.nfaq-acc-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px;
}

.nfaq-acc-panel[hidden] {
    display: block !important;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.nfaq-acc-item.is-open .nfaq-acc-panel {
    max-height: 500px;
    padding: 0 20px 18px;
}

.nfaq-acc-panel p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
}
