    .faq-hero {
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        border-radius: 10px;
        padding: 3rem 2rem;
        margin-bottom: 2rem;
    }
    .faq-category {
        background: #f8f9fa;
        border-radius: 6px;
        padding: 1rem 1.5rem;
        margin-bottom: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .faq-category:hover, .faq-category.active {
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    .faq-category.active {
        border-left: 4px solid #0f1f7a;
    }
    .accordion-item {
        border: none;
        border-radius: 15px !important;
        margin-bottom: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        overflow: hidden;
    }
    .accordion-button {
        padding: 1.25rem 1.5rem;
        font-weight: 600;
        background: white;
        border-radius: 15px !important;
    }
    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        color: white;
        box-shadow: none;
    }
    .accordion-button:not(.collapsed)::after {
        filter: brightness(0) invert(1);
    }
    .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }
    .accordion-body {
        padding: 1.5rem;
        background: #fafbfc;
    }
    .search-box {
        position: relative;
        max-width: 500px;
        margin: 0 auto;
    }
    .search-box input {
        padding: 1rem 1rem 1rem 3rem;
        border-radius: 7px;
        border: 2px solid rgba(255,255,255,0.3);
        background: rgba(255,255,255,0.1);
        color: white;
        width: 100%;
    }
    .search-box input::placeholder {
        color: rgba(255,255,255,0.7);
    }
    .search-box input:focus {
        outline: none;
        border-color: rgba(255,255,255,0.5);
        background: rgba(255,255,255,0.15);
    }
    .search-box i {
        position: absolute;
        left: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255,255,255,0.7);
    }
    .quick-answer {
        background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
        border-radius: 10px;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    .nsp-faq-sidebar-sticky {
        top: 20px;
    }
    .nsp-faq-item-hidden {
        display: none;
    }


    /* --- FAQ search v2 + topic counts + progressive reveal --- */
    .search-box { position: relative; max-width: 620px; margin: 0 auto; }
    .search-box input {
        width: 100%;
        padding: 0.9rem 3rem 0.9rem 3rem;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
    }
    .search-box input:focus { outline: 3px solid rgba(255,255,255,0.45); }
    .search-box > i.fa-search {
        position: absolute;
        left: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        color: #6c757d;
        pointer-events: none;
    }
    .faq-search-clear {
        position: absolute;
        right: 0.85rem;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        border: none;
        border-radius: 50%;
        background: #e9ecef;
        color: #6c757d;
        line-height: 1;
        cursor: pointer;
    }
    .faq-search-clear:hover { background: #dee2e6; color: #333; }
    .faq-suggestions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.25rem;
    }
    .faq-suggestions button {
        padding: 0.4rem 1rem;
        border: 1px solid rgba(255,255,255,0.45);
        border-radius: 50px;
        background: rgba(255,255,255,0.12);
        color: #fff;
        font-size: 0.82rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .faq-suggestions button:hover { background: #fff; color: #0f1f7a; }
    .faq-category {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .faq-count {
        margin-left: auto;
        min-width: 28px;
        padding: 0.1rem 0.5rem;
        border-radius: 50px;
        background: #e9ecef;
        color: #6c757d;
        font-size: 0.75rem;
        font-weight: 700;
        text-align: center;
    }
    .faq-category.active .faq-count {
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        color: #fff;
    }
    .faq-aside-cta {
        padding: 1.5rem;
        border-radius: 15px;
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        color: #fff;
        text-align: center;
    }
    .quick-answer {
        display: flex;
        align-items: flex-start;
        padding: 1.25rem 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border: 1px solid #e9ecef;
    }
    .nsp-faq-item-hidden { display: none !important; }
    .faq-item-deferred { display: none; }
    .accordion-button mark {
        padding: 0 0.15rem;
        border-radius: 3px;
        background: #fff3cd;
        color: inherit;
    }
    .faq-status { min-height: 1.2rem; }
    .nsp-faq-sidebar-sticky { top: 1.5rem; }
