.nx-help-layout {
    display: flex;
    max-width: 1400px;
    margin: 140px auto;
    gap: 60px;
    padding: 0 40px;
}

/* SEARCH SYSTEM */
.nx-help-search-container {
    position: relative;
    margin: 30px 0;
}

.nx-help-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 20px 20px 20px 60px;
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nx-help-search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.1);
}

.nx-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-primary);
    opacity: 0.7;
}

/* SIDEBAR */
.nx-help-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.nx-help-nav-sticky {
    position: sticky;
    top: 100px;
}

.nx-help-nav-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dim);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.nx-help-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nx-help-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nx-help-nav-item:hover,
.nx-help-nav-item.active {
    background: rgba(56, 189, 248, 0.08);
    color: var(--accent-primary);
}

/* MAIN CONTENT */
.nx-help-main {
    flex: 1;
    max-width: 900px;
    margin-top: 4rem;
}

.nx-help-main-title {
    font-size: 3rem;
    font-weight: 950;
    margin-bottom: 40px;
    letter-spacing: 0px;
}

.nx-help-main-subtitle {
    font-size: 1.25rem;
    color: var(--text-dim);
}

.nx-help-section {
    margin-bottom: 80px;
    scroll-margin-top: 120px;
}

.nx-help-sec-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--glass-border);
}

/* GLOSSARY */
.nx-glossary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nx-glossary-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.nx-glossary-item b {
    color: var(--accent-primary);
    display: block;
    margin-bottom: 5px;
}

/* HELP STEPS */
.nx-help-steps {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.nx-help-steps li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.nx-help-steps li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

/* ACCORDION */
.nx-help-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nx-help-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.nx-help-item summary {
    padding: 20px 24px;
    font-weight: 750;
    font-size: 1.05rem;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.nx-help-item[open] summary {
    background: rgba(56, 189, 248, 0.03);
}

.nx-help-ans {
    padding: 0 24px 20px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* FOOTER CTA (SOBER) */
.nx-help-footer-cta {
    margin-top: 100px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.nx-btn-sober {
    display: inline-block;
    padding: 15px 40px;
    background: var(--text-primary);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 40px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

@media (max-width: 1000px) {
    .nx-help-layout {
        flex-direction: column;
    }

    .nx-help-sidebar {
        width: 100%;
        margin-bottom: 40px;
        margin-top: 4rem;
    }

    .nx-help-nav-sticky {
        position: static;
    }

    .nx-glossary-grid {
        grid-template-columns: 1fr;
    }
}