.faq-navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
}
.faq-navbar-logo img { height: 32px; display: block; }
.faq-navbar-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.faq-navbar-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: color .15s;
}
.faq-navbar-links a:hover,
.faq-nav-active { color: #1e40af !important; }
.faq-navbar-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}
.faq-nav-login {
    font-size: 0.88rem;
    font-weight: 500;
    color: #1e40af;
    text-decoration: none;
}
.faq-nav-login:hover { text-decoration: underline; }
@media (max-width: 640px) {
    .faq-navbar-links { display: none; }
}

.faq-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1d4ed8 100%);
    padding: 72px 32px 56px;
    text-align: center;
    color: #fff;
}
.faq-hero .wl-hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #93c5fd;
    margin-bottom: 12px;
}
.faq-hero h1 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.15;
}
.faq-hero p {
    color: #bfdbfe;
    font-size: 1rem;
    margin: 0 auto 28px;
    max-width: 520px;
    line-height: 1.7;
}
.faq-hero p a { color: #93c5fd; }
.faq-search-wrap {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}
.faq-search-wrap input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 48px 13px 18px;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.faq-search-wrap input:focus {
    box-shadow: 0 0 0 3px rgba(147,197,253,0.5), 0 4px 20px rgba(0,0,0,0.2);
}
.faq-search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    pointer-events: none;
}

.faq-body { padding: 64px 32px; }
.faq-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 56px;
    align-items: start;
}
@media (max-width: 768px) {
    .faq-layout { grid-template-columns: 1fr; gap: 32px; }
    .faq-sidebar { display: flex; flex-wrap: wrap; gap: 8px; }
}

.faq-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.faq-cat-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    padding: 7px 12px;
    border-radius: 7px;
    transition: background .15s, color .15s;
}
.faq-cat-link:hover { background: #f1f5f9; color: #1e293b; }
.faq-cat-active { background: #eff6ff; color: #1d4ed8 !important; font-weight: 600; }

.faq-group { margin-bottom: 52px; }
.faq-group-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.4rem;
    color: #0f172a;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.faq-item {
    border-bottom: 1px solid #f1f5f9;
}
.faq-item.faq-hidden { display: none; }

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 40px 18px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    position: relative;
    font-family: inherit;
    line-height: 1.4;
    transition: color .15s;
}
.faq-q:hover { color: #1d4ed8; }
.faq-q::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: #94a3b8;
    line-height: 1;
    transition: transform .2s;
}
.faq-q[aria-expanded="true"]::after {
    content: '−';
}

.faq-a {
    display: none;
    padding: 0 0 20px;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.75;
}
.faq-a.faq-open { display: block; }
.faq-a p { margin: 0 0 12px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul {
    margin: 10px 0 14px 18px;
    padding: 0;
}
.faq-a ul li { margin-bottom: 6px; }
.faq-a a { color: #1d4ed8; }
.faq-a code {
    background: #f1f5f9;
    padding: 1px 5px;
    border-radius: 4px;
    font-size: 0.85em;
}

.faq-no-results {
    display: none;
    text-align: center;
    color: #94a3b8;
    padding: 48px 0;
    font-size: 0.95rem;
}
.faq-no-results.faq-visible { display: block; }

.faq-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1d4ed8 100%);
    padding: 72px 32px;
    text-align: center;
}
.faq-cta h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin: 0 0 10px;
}
.faq-cta p {
    color: #bfdbfe;
    font-size: 1rem;
    margin: 0 auto 28px;
}
.faq-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
