/* ================================================================
   home-help-center.css  ·  Aura Design System — Help Center Page
   ================================================================ */

/* ── Hero ────────────────────────────────────────────────────── */
.hlp-hero {
    position: relative;
    padding: 5.5rem 0 4rem;
    background: var(--aura-bg);
    overflow: hidden;
    text-align: center;
}
.hlp-hero-title {
    font-size: clamp(2rem, 5vw, 3rem) !important;
    margin-bottom: 1.25rem;
}
.hlp-orb-1 {
    width: 580px; height: 580px;
    background: radial-gradient(circle, rgba(99,102,241,.32) 0%, transparent 70%);
    top: -200px; left: -120px; filter: blur(88px);
}
.hlp-orb-2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(45,212,191,.2) 0%, transparent 70%);
    top: 5%; right: -80px; filter: blur(80px);
}

/* ── Search ──────────────────────────────────────────────────── */
.hlp-search-wrap {
    position: relative;
    max-width: 540px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    padding: .55rem .55rem .55rem 1.25rem;
    transition: border-color .2s, box-shadow .2s;
}
.hlp-search-wrap:focus-within {
    border-color: rgba(99,102,241,.5);
    box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.hlp-search-icon {
    color: var(--aura-muted);
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: .65rem;
}
.hlp-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--aura-text);
    font-size: .95rem;
    min-width: 0;
}
.hlp-search-input::placeholder { color: var(--aura-muted); }
.hlp-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: box-shadow .2s, transform .2s;
}
.hlp-search-btn:hover {
    box-shadow: 0 4px 16px rgba(99,102,241,.45);
    transform: scale(1.05);
}

/* ── Quick Link Cards ────────────────────────────────────────── */
.hlp-quick-card {
    background: var(--aura-surface);
    border: 1px solid var(--aura-border);
    border-radius: var(--aura-radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}
.hlp-quick-card:hover {
    border-color: rgba(99,102,241,.38);
    box-shadow: 0 0 0 1px rgba(99,102,241,.12), 0 14px 40px rgba(99,102,241,.1);
    transform: translateY(-3px);
}
.hlp-quick-card .aura-icon-wrap { margin: 0 auto .75rem; }
.hlp-quick-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--aura-text);
    margin-bottom: .25rem;
}
.hlp-quick-sub {
    font-size: .78rem;
    color: var(--aura-muted);
}

/* ── Guide Cards ─────────────────────────────────────────────── */
.hlp-guide-card {
    color: inherit;
}
.hlp-guide-card:hover { color: inherit; }
.hlp-guide-meta {
    font-size: .75rem;
    color: var(--aura-muted);
    border-top: 1px solid var(--aura-border);
    padding-top: .65rem;
}

/* ── Knowledge Article Items ─────────────────────────────────── */
.hlp-article-item {
    color: inherit;
}
.hlp-article-item:hover { color: inherit; }
.hlp-view-count {
    font-size: .75rem;
    color: var(--aura-muted);
    white-space: nowrap;
}

/* ── View-all link ───────────────────────────────────────────── */
.hlp-view-all-link {
    font-size: .82rem;
    font-weight: 600;
    color: #a5b4fc;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s;
}
.hlp-view-all-link:hover { color: #fff; }

/* ── Accordion ───────────────────────────────────────────────── */
.hlp-accordion {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.hlp-accordion-item {
    background: var(--aura-surface);
    border: 1px solid var(--aura-border);
    border-radius: var(--aura-radius-sm);
    overflow: hidden;
    transition: border-color .2s;
}
.hlp-accordion-item:has(.hlp-accordion-btn:not(.collapsed)) {
    border-color: rgba(99,102,241,.35);
}
.hlp-accordion-header { margin: 0; }
.hlp-accordion-btn {
    display: flex;
    align-items: center;
    gap: .75rem;
    width: 100%;
    background: transparent;
    border: none;
    padding: 1rem 1.25rem;
    color: var(--aura-text);
    font-size: .9rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background .2s;
}
.hlp-accordion-btn:hover { background: rgba(255,255,255,.03); }
.hlp-accordion-btn:not(.collapsed) {
    background: rgba(99,102,241,.07);
    color: #a5b4fc;
}
.hlp-faq-icon {
    color: var(--aura-primary);
    font-size: .95rem;
    flex-shrink: 0;
}
.hlp-faq-chevron {
    font-size: .8rem;
    color: var(--aura-muted);
    transition: transform .25s ease;
    flex-shrink: 0;
}
.hlp-accordion-btn:not(.collapsed) .hlp-faq-chevron {
    transform: rotate(-180deg);
    color: #a5b4fc;
}
.hlp-accordion-body {
    padding: .25rem 1.25rem 1.25rem 3.35rem;
    font-size: .875rem;
    color: var(--aura-muted);
    line-height: 1.75;
    border-top: 1px solid var(--aura-border);
}

/* ── Sidebar ─────────────────────────────────────────────────── */
.hlp-sidebar-card {
    background: var(--aura-surface);
    border: 1px solid var(--aura-border);
    border-radius: var(--aura-radius);
    overflow: hidden;
}
.hlp-sidebar-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--aura-border);
    background: rgba(255,255,255,.02);
}
.hlp-sidebar-title {
    font-size: .875rem;
    font-weight: 700;
    color: var(--aura-text);
}
.hlp-sidebar-footer {
    padding: .75rem 1.25rem;
    border-top: 1px solid var(--aura-border);
    background: rgba(255,255,255,.02);
}

/* Update list */
.hlp-update-list {
    display: flex;
    flex-direction: column;
}
.hlp-update-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: .9rem 1.25rem;
    border-bottom: 1px solid var(--aura-border);
    transition: background .2s;
}
.hlp-update-item:last-child { border-bottom: none; }
.hlp-update-item:hover { background: rgba(255,255,255,.03); }
.hlp-update-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(99,102,241,.7);
    margin-top: .3rem;
    flex-shrink: 0;
}
.hlp-update-title {
    font-size: .83rem;
    font-weight: 600;
    color: var(--aura-text);
    margin-bottom: .2rem;
    line-height: 1.4;
}
.hlp-update-date {
    font-size: .72rem;
    color: var(--aura-muted);
}

/* Resource list */
.hlp-resource-list {
    display: flex;
    flex-direction: column;
}
.hlp-resource-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .85rem 1.25rem;
    border-bottom: 1px solid var(--aura-border);
    font-size: .875rem;
    color: var(--aura-text);
    transition: background .2s, color .2s;
}
.hlp-resource-item:last-child { border-bottom: none; }
.hlp-resource-item:hover { background: rgba(255,255,255,.03); color: #fff; }

/* Contact card */
.hlp-contact-card {
    position: relative;
    background: linear-gradient(135deg, rgba(99,102,241,.12), rgba(167,139,250,.08));
    border: 1px solid rgba(99,102,241,.25);
    border-radius: var(--aura-radius);
    padding: 2rem 1.5rem;
    overflow: hidden;
}
.hlp-contact-orb {
    position: absolute;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(99,102,241,.22) 0%, transparent 70%);
    top: -80px; right: -60px;
    filter: blur(50px);
    pointer-events: none;
}
.hlp-contact-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--aura-text);
    margin-bottom: .5rem;
}
.hlp-contact-sub {
    font-size: .83rem;
    color: var(--aura-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .hlp-hero { padding: 3.5rem 0 2.75rem; }
}
@media (max-width: 767.98px) {
    .hlp-hero-title { font-size: 1.875rem !important; }
    .hlp-search-wrap { max-width: 100%; }
}
@media (max-width: 575.98px) {
    .hlp-hero { padding: 2.75rem 0 2rem; }
    .hlp-quick-card { padding: 1.1rem .85rem; }
}
