.faq-page { padding-bottom: 60px; }

/* ── Hero ── */
.faq-hero {
    background: var(--t-header-bg);
    border-radius: 20px;
    margin-bottom: 40px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}
.faq-hero-deco {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9rem;
    color: rgba(255,255,255,.04);
    pointer-events: none;
}
.faq-hero-content { position: relative; z-index: 1; max-width: 600px; }
.faq-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    background: color-mix(in srgb, var(--t-primary) 18%, transparent);
    color: var(--t-primary);
    border-radius: 20px;
    font-size: .76rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.faq-hero-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
}
.faq-hero-sub {
    color: rgba(255,255,255,.65);
    font-size: .92rem;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 480px;
}
.faq-hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.faq-stat { display: flex; align-items: center; gap: 8px; }
.faq-stat-num { font-size: 1.3rem; font-weight: 800; color: var(--t-primary); line-height: 1; }
.faq-stat-label { font-size: .78rem; color: rgba(255,255,255,.55); }
.faq-stat-sep { width: 1px; height: 28px; background: rgba(255,255,255,.12); }
@media (max-width: 640px) { .faq-hero { padding: 32px 24px; } .faq-hero-deco { display: none; } }

/* ── Layout ── */
.faq-layout {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}
.faq-list { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.faq-sidebar { width: 260px; flex-shrink: 0; position: sticky; top: 88px; display: flex; flex-direction: column; gap: 16px; }
@media (max-width: 900px) {
    .faq-layout { flex-direction: column; }
    .faq-sidebar { width: 100%; position: static; }
}

/* ── FAQ item (details/summary) ── */
.faq-item {
    background: var(--t-card-bg);
    border: 1.5px solid var(--t-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: color-mix(in srgb, var(--t-primary) 45%, var(--t-border)); }
.faq-item[open] {
    border-color: var(--t-primary);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--t-primary) 10%, transparent);
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    color: var(--t-text-base);
    font-size: .92rem;
    font-weight: 700;
    user-select: none;
    transition: background .15s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-item[open] .faq-q { background: color-mix(in srgb, var(--t-primary) 5%, var(--t-card-bg)); }
.faq-q:hover { background: color-mix(in srgb, var(--t-primary) 4%, var(--t-card-bg)); }

.faq-num {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--t-primary-light);
    color: var(--t-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}
.faq-item[open] .faq-num { background: var(--t-primary); color: #fff; }

.faq-q-text { flex: 1; }

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--t-primary-light);
    color: var(--t-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    flex-shrink: 0;
    transition: transform .25s, background .2s;
}
.faq-item[open] .faq-toggle {
    transform: rotate(45deg);
    background: var(--t-primary);
    color: #fff;
}

.faq-a {
    border-top: 1px solid var(--t-border);
    animation: faqSlide .2s ease;
}
@keyframes faqSlide { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.faq-a-inner {
    padding: 16px 20px 18px;
    font-size: .9rem;
    line-height: 1.9;
    color: var(--t-text-muted);
    padding-right: 62px;
}

/* ── Sidebar ── */
.faq-contact-card {
    background: var(--t-card-bg);
    border: 1.5px solid var(--t-border);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
}
.faq-contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--t-primary-light);
    color: var(--t-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 14px;
}
.faq-contact-card h5 { font-size: .92rem; font-weight: 800; color: var(--t-text-base); margin-bottom: 6px; }
.faq-contact-card p { font-size: .8rem; color: var(--t-text-muted); margin-bottom: 18px; }
.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 10px 20px;
    background: var(--t-primary);
    color: #fff;
    border-radius: 10px;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s, transform .18s;
}
.faq-contact-btn:hover { background: var(--t-primary-dark); color: #fff; transform: translateY(-2px); }

.faq-quick-links {
    background: var(--t-card-bg);
    border: 1.5px solid var(--t-border);
    border-radius: 16px;
    overflow: hidden;
}
.faq-quick-links h6 {
    padding: 12px 16px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--t-text-muted);
    background: color-mix(in srgb, var(--t-card-bg) 80%, var(--t-text-base) 5%);
    border-bottom: 1px solid var(--t-border);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.faq-quick-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: .84rem;
    color: var(--t-text-muted);
    text-decoration: none;
    border-bottom: 1px solid var(--t-border);
    transition: all .15s;
}
.faq-quick-links a:last-child { border-bottom: none; }
.faq-quick-links a i { color: var(--t-primary); font-size: .8rem; width: 14px; text-align: center; }
.faq-quick-links a:hover { background: var(--t-primary-light); color: var(--t-primary-dark); }

/* ── Empty ── */
.faq-empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--t-card-bg);
    border-radius: 16px;
    border: 1.5px solid var(--t-border);
}
.faq-empty-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--t-primary-light);
    color: var(--t-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.faq-empty h5 { font-weight: 700; color: var(--t-text-base); margin-bottom: 6px; }
.faq-empty p { color: var(--t-text-muted); font-size: .88rem; margin-bottom: 20px; }
.faq-empty .faq-contact-btn { width: auto; display: inline-flex; }
