/* ============================================================
   HELP SCREEN
   Save as frontend/css/help.css
   ============================================================ */

.help-screen {
    padding-bottom: 3rem;
}

.help-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0 1rem;
}

.help-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream);
}

/* ── Intro ───────────────────────────────────────── */
.help-intro {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(29,59,138,0.12);
    border: 1px solid rgba(29,59,138,0.25);
    border-radius: var(--radius-md);
    padding: 0.9rem 1rem;
    margin-bottom: 1.4rem;
}

.help-intro-icon { font-size: 1.3rem; flex-shrink: 0; }

.help-intro-text {
    font-size: 0.88rem;
    color: #8BA8D8;
    line-height: 1.5;
}

/* ── Section label ───────────────────────────────── */
.help-section-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.7rem;
}

/* ── FAQ list ────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 0.92rem;
    font-weight: 500;
    text-align: left;
    gap: 0.8rem;
    cursor: pointer;
    transition: background 0.15s;
    touch-action: manipulation;
}

.faq-question:hover {
    background: rgba(255,255,255,0.03);
}

.faq-chevron {
    font-size: 1.1rem;
    color: var(--text-dim);
    flex-shrink: 0;
    width: 16px;
    text-align: center;
    transition: transform 0.2s;
}

.faq-answer {
    padding: 0 1rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0.7rem 0 0;
}

.faq-answer strong {
    color: var(--cream);
    font-weight: 500;
}

.faq-answer em {
    color: var(--amber);
    font-style: normal;
}

/* ── Contact form card ───────────────────────────── */
.help-form-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.help-device-note {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 0.7rem 0.9rem;
}

/* ── Success state ───────────────────────────────── */
.help-success {
    background: rgba(107,175,122,0.12);
    border: 1px solid rgba(107,175,122,0.3);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    color: #6BAF7A;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.help-success-icon {
    font-size: 1.2rem;
    font-weight: 700;
}

/* ── Send button ─────────────────────────────────── */
.btn-send-help {
    width: 100%;
    background: var(--burnt);
    color: var(--cream);
    border: none;
    border-radius: var(--radius-md);
    padding: 0.95rem;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s;
    touch-action: manipulation;
    box-shadow: 0 4px 16px rgba(155,79,26,0.3);
}

.btn-send-help:hover    { background: var(--amber-glow); }
.btn-send-help:disabled { opacity: 0.6; cursor: not-allowed; }
