/* === Namespaced styling: csak a support oldalon érvényes === */
.support-page {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background: #f9fafb;
    color: #111827;
    min-height: 100vh;
    padding: 20px;
    margin: 0;
}

.support-page .support-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.support-page h1 {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 700;
}

.support-page h2 {
    font-size: 18px;
    margin: 22px 0 8px;
    font-weight: 600;
    color: #374151;
}

.support-page .muted {
    color: #6b7280;
}

.support-page .section {
    margin-top: 24px;
}

.support-page .btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #d1d5db;
    background: #f3f4f6;
    color: #111827;
    transition: background 0.2s ease;
}

.support-page .btn:hover {
    background: #e5e7eb;
}

.support-page .list {
    padding-left: 20px;
    margin: 8px 0 0;
}

.support-page .grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.support-page .hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 20px 0;
}

.support-page .kpi {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px;
}

.support-page .footer-note {
    font-size: 12px;
    color: #6b7280;
    margin-top: 24px;
}