/* ══════════════════════════════════════════════
   HELP — Nápověda pro seniory
   Clean, readable, large touch targets
   ══════════════════════════════════════════════ */

.help-module { max-width: 700px; margin: 0 auto; padding: 16px; }

/* ─── Quick Help Buttons ─── */
.quick-help-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px; background: #5BA8A0; color: white;
    border: none; border-radius: 14px; font-size: 1rem;
    font-weight: 600; cursor: pointer; transition: all 0.2s;
    margin: 4px;
}
.quick-help-btn:hover { background: #4a9990; transform: translateY(-1px); }

/* ─── Tab Navigation ─── */
.help-nav {
    display: flex; gap: 6px; overflow-x: auto;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding: 6px; background: #f7fafc; border-radius: 14px;
    margin-bottom: 20px;
}
.help-nav::-webkit-scrollbar { display: none; }

.help-nav-btn {
    flex: 0 0 auto; padding: 10px 16px; border: none;
    border-radius: 10px; background: transparent; color: #718096;
    font-size: 0.9rem; font-weight: 600; cursor: pointer;
    white-space: nowrap; transition: all 0.2s; min-height: 44px;
}
.help-nav-btn:hover { background: rgba(91,168,160,0.1); color: #2d3748; }
.help-nav-btn.active { background: #5BA8A0; color: white; box-shadow: 0 2px 8px rgba(91,168,160,0.3); }

/* ─── Hero Section ─── */
.help-hero {
    text-align: center; padding: 28px 20px;
    background: white; border-radius: 20px;
    border: 1.5px solid #e2e8f0; margin-bottom: 20px;
}
.help-hero-icon { font-size: 3.5rem; margin-bottom: 12px; }
.help-hero h2 { font-size: 1.3rem; color: #2d3748; margin: 0 0 8px; }
.help-hero p { font-size: 1rem; color: #718096; line-height: 1.6; margin: 0; max-width: 500px; margin: 0 auto; }

/* ─── Content ─── */
.help-content { margin-top: 16px; }

/* ─── Features Grid ─── */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.feature-card {
    background: white; border: 1.5px solid #e2e8f0; border-radius: 16px;
    padding: 18px; text-align: center; transition: all 0.2s;
}
.feature-card:hover { border-color: #5BA8A0; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(91,168,160,0.12); }
.feature-card .feature-icon { font-size: 2rem; margin-bottom: 8px; }
.feature-card h4 { font-size: 0.95rem; color: #2d3748; margin: 0 0 4px; }
.feature-card p { font-size: 0.82rem; color: #718096; margin: 0; line-height: 1.4; }

/* ─── Quick Links ─── */
.quick-link {
    display: flex; align-items: center; gap: 10px;
    width: 100%; padding: 14px 18px; background: white;
    border: 1.5px solid #e2e8f0; border-radius: 14px;
    font-size: 0.95rem; color: #2d3748; font-weight: 600;
    cursor: pointer; transition: all 0.2s; margin-bottom: 8px;
    text-align: left;
}
.quick-link:hover { border-color: #5BA8A0; background: #f0fdfa; }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: white; border: 1.5px solid #e2e8f0; border-radius: 14px;
    overflow: hidden;
}
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px; cursor: pointer; font-weight: 600;
    font-size: 0.95rem; color: #2d3748; transition: background 0.2s;
    width: 100%; border: none; background: transparent; text-align: left;
}
.faq-question:hover { background: #f7fafc; }
.faq-toggle { font-size: 1.2rem; color: #a0aec0; transition: transform 0.2s; }
.faq-answer { padding: 0 18px 16px; font-size: 0.9rem; color: #4a5568; line-height: 1.6; }

/* ─── Tutorials ─── */
.tutorials-list { display: flex; flex-direction: column; gap: 10px; }
.tutorial-card {
    display: flex; align-items: center; gap: 14px;
    padding: 16px; background: white; border: 1.5px solid #e2e8f0;
    border-radius: 14px; cursor: pointer; transition: all 0.2s;
}
.tutorial-card:hover { border-color: #5BA8A0; }
.tutorial-icon { font-size: 1.8rem; flex-shrink: 0; }
.tutorial-info { flex: 1; }
.tutorial-info h4 { font-size: 0.95rem; color: #2d3748; margin: 0 0 4px; }
.tutorial-info p { font-size: 0.82rem; color: #718096; margin: 0; }
.tutorial-duration { font-size: 0.75rem; color: #a0aec0; white-space: nowrap; }
.tutorial-arrow { font-size: 1.2rem; color: #cbd5e0; }

/* ─── Tutorial View ─── */
.tutorial-view { background: white; border-radius: 20px; padding: 24px; border: 1.5px solid #e2e8f0; }
.tutorial-header h3 { font-size: 1.1rem; color: #2d3748; margin: 0 0 12px; }
.tutorial-progress { height: 6px; background: #edf2f7; border-radius: 6px; margin-bottom: 20px; overflow: hidden; }
.tutorial-progress div { height: 100%; background: #5BA8A0; border-radius: 6px; transition: width 0.3s; }
.tutorial-step { margin-bottom: 16px; }
.tutorial-nav { display: flex; gap: 10px; justify-content: space-between; }
.back-btn { background: none; border: none; color: #5BA8A0; font-size: 1rem; cursor: pointer; font-weight: 600; margin-bottom: 16px; }

/* ─── Tips ─── */
.tips-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.tip-card {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px; background: white; border: 1.5px solid #e2e8f0;
    border-radius: 14px;
}
.tip-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.tip-card h4 { font-size: 0.95rem; color: #2d3748; margin: 0 0 4px; }
.tip-card p { font-size: 0.85rem; color: #718096; margin: 0; line-height: 1.5; }

/* ─── Contact ─── */
.contact-cards { display: flex; flex-direction: column; gap: 10px; }
.contact-card {
    display: flex; align-items: center; gap: 14px;
    padding: 16px; background: white; border: 1.5px solid #e2e8f0;
    border-radius: 14px;
}
.contact-icon { font-size: 1.8rem; flex-shrink: 0; }
.contact-hint { font-size: 0.8rem; color: #a0aec0; margin-top: 12px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: #2d3748; font-size: 0.9rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px; border: 1.5px solid #e2e8f0;
    border-radius: 12px; font-size: 16px; box-sizing: border-box;
}
.send-btn {
    padding: 14px 24px; background: #5BA8A0; color: white;
    border: none; border-radius: 12px; font-size: 1rem;
    font-weight: 600; cursor: pointer; width: 100%;
}

/* ─── Mobile ─── */
@media (max-width: 480px) {
    .help-module { padding: 10px; }
    .features-grid { grid-template-columns: 1fr; }
    .help-hero { padding: 20px 16px; }
    .quick-help-btn { padding: 12px 18px; font-size: 0.9rem; }
}
