.auth-content-wrapper:has(.auth-help-shell) {
    background: linear-gradient(135deg, #fffaf0 0%, #f8efe4 48%, #f5e5dc 100%);
}

.auth-help-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 36px auto 64px;
    color: #263247;
}

.auth-help-header,
.auth-help-methods,
.auth-help-faq,
.auth-help-contact {
    border: 1px solid rgba(128, 0, 0, 0.13);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(86, 22, 22, 0.1);
}

.auth-help-header { padding: 26px 30px 32px; }
.auth-help-back { color: #800000; font-weight: 800; text-decoration: none; }
.auth-help-heading { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 26px; }
.auth-help-heading img { width: 88px; height: 88px; object-fit: contain; }
.auth-help-kicker { color: #800000; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.auth-help-heading h1 { margin: 9px 0 8px; color: #700000; font-size: clamp(32px, 5vw, 48px); }
.auth-help-heading p { max-width: 720px; margin: 0; color: #657187; line-height: 1.65; }

.auth-help-methods,
.auth-help-faq { margin-top: 22px; padding: 28px 30px; }
.auth-help-shell h2 { margin: 0 0 18px; color: #3a1720; font-size: 23px; }
.auth-help-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.auth-help-card { padding: 20px; border: 1px solid #eadbd4; border-radius: 16px; background: #fffdfa; }
.auth-help-icon { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: #fbe8e3; color: #800000; }
.auth-help-card h3 { margin: 13px 0 8px; color: #43141a; }
.auth-help-card p { min-height: 96px; margin: 0 0 14px; color: #647084; line-height: 1.55; }
.auth-help-card a,
.auth-help-contact > a { color: #800000; font-weight: 900; }

.auth-help-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-help-faq details { border: 1px solid #e9ddd8; border-radius: 13px; background: #fff; overflow: hidden; }
.auth-help-faq summary { cursor: pointer; padding: 16px 18px; color: #3e2730; font-weight: 800; }
.auth-help-faq details[open] summary { background: #fff7f3; color: #800000; }
.auth-help-faq details p { margin: 0; padding: 0 18px 17px; color: #667085; line-height: 1.6; }

.auth-help-contact { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 22px; padding: 24px 30px; }
.auth-help-contact > div { display: flex; align-items: center; gap: 14px; }
.auth-help-contact h2 { margin-bottom: 5px; }
.auth-help-contact p { margin: 0; color: #667085; }

@media (max-width: 800px) {
    .auth-help-card-grid,
    .auth-help-faq-grid { grid-template-columns: 1fr; }
    .auth-help-card p { min-height: 0; }
    .auth-help-contact { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
    .auth-help-shell { width: min(100% - 20px, 1180px); margin-top: 16px; }
    .auth-help-header,
    .auth-help-methods,
    .auth-help-faq,
    .auth-help-contact { padding: 20px; border-radius: 16px; }
    .auth-help-heading img { display: none; }
}

.auth-help-launcher {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 3000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 10px 18px 10px 11px;
    border: 2px solid #d7a900;
    border-radius: 999px;
    background: linear-gradient(135deg, #9f111b, #700000);
    color: #fff;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(88, 0, 0, .28);
}

.auth-help-launcher span {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 215, 0, .15);
    color: #ffd700;
}

.auth-help-launcher:hover { transform: translateY(-2px); }
.auth-help-open { overflow: hidden !important; }

.auth-help-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    padding: 20px;
}

.auth-help-modal[hidden] { display: none; }
.auth-help-modal-backdrop { position: absolute; inset: 0; background: rgba(24, 8, 10, .68); backdrop-filter: blur(5px); }

.auth-help-modal-panel {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    max-height: min(760px, calc(100vh - 40px));
    overflow-y: auto;
    border: 1px solid rgba(128, 0, 0, .18);
    border-radius: 24px;
    background: #fffdf8;
    color: #263247;
    box-shadow: 0 30px 90px rgba(25, 5, 8, .35);
}

.auth-help-modal-panel > header { padding: 28px 64px 20px 28px; background: linear-gradient(135deg, #800000, #a71b22); color: #fff; }
.auth-help-modal-panel > header span { color: #ffd700; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.auth-help-modal-panel > header h2 { margin: 8px 0 5px; font-size: 30px; }
.auth-help-modal-panel > header p { margin: 0; color: rgba(255,255,255,.82); }
.auth-help-modal-close { position: absolute; z-index: 2; top: 18px; right: 18px; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; cursor: pointer; }

.auth-help-modal-options { display: grid; gap: 10px; padding: 20px 24px 10px; }
.auth-help-modal-options article { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 14px; border: 1px solid #eadbd4; border-radius: 14px; background: #fff; }
.auth-help-modal-options article > i { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: #fbe8e3; color: #800000; }
.auth-help-modal-options h3 { margin: 0 0 3px; color: #43141a; font-size: 16px; }
.auth-help-modal-options p { margin: 0 0 6px; color: #667085; font-size: 13px; line-height: 1.45; }
.auth-help-modal-options a { color: #800000; font-size: 13px; font-weight: 900; }

.auth-help-modal-note { display: flex; gap: 10px; margin: 8px 24px 18px; padding: 13px 14px; border-radius: 12px; background: #fff4d6; color: #704a00; }
.auth-help-modal-note p { margin: 0; font-size: 13px; line-height: 1.5; }
.auth-help-modal-note i { margin-top: 3px; }
.auth-help-modal-panel > footer { display: flex; justify-content: space-between; gap: 12px; padding: 17px 24px; border-top: 1px solid #eadbd4; background: #fff8f3; }
.auth-help-modal-panel > footer a { color: #800000; font-weight: 900; }

@media (max-width: 560px) {
    .auth-help-launcher { right: 16px; bottom: 16px; }
    .auth-help-modal-panel > footer { align-items: flex-start; flex-direction: column; }
}

/* Identical landing-page Help Center presentation. */
:root { --ink: #1f2937; --muted: #64748b; }
.landing-help-actions {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 3000;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 9px;
}
.landing-help-actions .help-center-launcher { position: static; }
.landing-help-ask-ai {
    order: -1;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 8px 15px 8px 9px;
    border: 1px solid rgba(255, 215, 0, .55);
    border-radius: 999px;
    background: linear-gradient(135deg, #fffaf0, #fff);
    color: #800000;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(88, 0, 0, .2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(.96);
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.landing-help-ask-ai span {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #800000;
    color: #ffd700;
}
.landing-help-actions:hover .landing-help-ask-ai,
.landing-help-actions:focus-within .landing-help-ask-ai {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.landing-help-ask-ai:hover { background: #fff4d6; transform: translateY(-1px) scale(1); }
.landing-help-launcher { border: 1px solid rgba(255, 215, 0, .45); cursor: pointer; font-family: inherit; }
.landing-help-launcher::after { display: none; }
.landing-help-modal { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; padding: 24px; }
.landing-help-modal.is-open { display: flex; }
.landing-help-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, .62); backdrop-filter: blur(6px); }
.landing-help-panel {
    position: relative; width: min(980px, 100%); max-height: min(88vh, 860px); overflow-y: auto;
    border: 1px solid rgba(128, 0, 0, .16); border-radius: 20px; background: #fff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, .32); padding: 30px;
}
.landing-help-close {
    position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; display: inline-flex;
    align-items: center; justify-content: center; border: 0; border-radius: 12px; background: #fff7ed;
    color: #800000; cursor: pointer; transition: transform .2s ease, background .2s ease;
}
.landing-help-close:hover { transform: translateY(-1px); background: #ffedd5; }
.landing-help-header { padding: 8px 50px 22px 0; border-bottom: 1px solid #e5e7eb; }
.landing-help-kicker {
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; padding: 7px 12px;
    border-radius: 999px; background: rgba(128, 0, 0, .08); color: #800000; font-size: 12px;
    font-weight: 900; text-transform: uppercase;
}
.landing-help-header h2 { margin: 0; color: var(--ink); font-size: clamp(1.55rem, 1.25rem + 1.4vw, 2.35rem); line-height: 1.1; font-weight: 900; }
.landing-help-header p { margin: 12px 0 0; color: var(--muted); line-height: 1.75; }
.landing-help-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 22px 0; }
.landing-help-summary article { padding: 18px; border: 1px solid rgba(128, 0, 0, .1); border-radius: 14px; background: #fffbeb; }
.landing-help-summary i {
    width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 12px; background: #800000; color: #ffd700; margin-bottom: 12px;
}
.landing-help-summary h3, .landing-help-questions h3 { margin: 0 0 8px; color: var(--ink); font-size: 16px; font-weight: 900; }
.landing-help-summary p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.landing-help-questions { display: grid; gap: 10px; }
.landing-help-questions > h3 { margin-top: 4px; font-size: 20px; }
.landing-help-questions details { border: 1px solid #e5e7eb; border-radius: 12px; background: #fff; overflow: hidden; }
.landing-help-questions summary {
    display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 18px;
    cursor: pointer; color: var(--ink); font-weight: 850; list-style: none;
}
.landing-help-questions summary::-webkit-details-marker { display: none; }
.landing-help-questions summary::after {
    content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #800000;
    transition: transform .2s ease;
}
.landing-help-questions details[open] summary::after { transform: rotate(180deg); }
.landing-help-questions details p { margin: 0; padding: 0 18px 16px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.landing-help-contact { margin-top: 26px; padding-top: 24px; border-top: 1px solid #e5e7eb; }
.landing-help-section-heading { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.landing-help-section-icon {
    width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 auto; border-radius: 16px; background: rgba(128, 0, 0, .1); color: #800000;
}
.landing-help-section-icon-green { background: rgba(16, 185, 129, .13); color: #059669; }
.landing-help-section-heading h3 { margin: 0; color: var(--ink); font-size: 26px; line-height: 1.15; font-weight: 900; }
.landing-help-section-heading p { margin: 6px 0 0; color: var(--muted); line-height: 1.6; }
.landing-help-contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.landing-help-contact-card {
    display: grid; grid-template-columns: auto 1fr; gap: 18px; min-height: 170px; padding: 26px;
    border: 1px solid #e2e8f0; border-radius: 14px;
}
.landing-help-contact-email { background: linear-gradient(135deg, rgba(128, 0, 0, .08), rgba(255, 215, 0, .14)); }
.landing-help-contact-facebook { background: linear-gradient(135deg, rgba(37, 99, 235, .1), rgba(128, 0, 0, .06)); }
.landing-help-contact-icon {
    width: 68px; height: 68px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 18px; background: #990000; color: #fff; font-size: 26px;
}
.landing-help-contact-facebook .landing-help-contact-icon { background: #2563eb; }
.landing-help-contact-card h4 { margin: 4px 0 8px; color: var(--ink); font-size: 18px; font-weight: 900; }
.landing-help-contact-card p { margin: 0 0 18px; color: #5b6b84; font-size: 14px; line-height: 1.65; }
.landing-help-contact-card a { color: #990000; font-size: 17px; font-weight: 900; text-decoration: none; word-break: break-word; }
.landing-help-contact-card a:hover { text-decoration: underline; }
.landing-help-support-hours {
    display: flex; gap: 12px; margin-top: 20px; padding: 18px 20px; border: 1px solid #e2e8f0;
    border-radius: 12px; background: #fff; color: #5b6b84;
}
.landing-help-support-hours i { margin-top: 4px; color: #64748b; }
.landing-help-support-hours p { margin: 0; line-height: 1.7; }
.landing-help-ai { margin-top: 26px; padding-top: 24px; border-top: 1px solid #e5e7eb; }
.landing-help-ai-icon { background: linear-gradient(135deg, #800000, #a21b1b); color: #ffd700; }
.landing-help-ai-chat {
    display: flex; flex-direction: column; gap: 10px; min-height: 150px; max-height: 300px;
    overflow-y: auto; padding: 16px; border: 1px solid #e2e8f0; border-radius: 14px; background: #f8fafc;
}
.landing-help-ai-message {
    max-width: 82%; padding: 11px 14px; border-radius: 14px; color: #334155;
    background: #fff; box-shadow: 0 4px 12px rgba(15, 23, 42, .06); white-space: pre-wrap; line-height: 1.55;
}
.landing-help-ai-message.is-user { align-self: flex-end; background: #800000; color: #fff; border-bottom-right-radius: 4px; }
.landing-help-ai-message.is-assistant { align-self: flex-start; border-bottom-left-radius: 4px; }
.landing-help-ai-message p, .landing-help-ai-message ul, .landing-help-ai-message ol, .landing-help-ai-message h4 { margin: 0 0 8px; }
.landing-help-ai-message > :last-child { margin-bottom: 0; }
.landing-help-ai-message ul, .landing-help-ai-message ol { padding-left: 21px; }
.landing-help-ai-message li + li { margin-top: 5px; }
.landing-help-ai-message h4 { color: inherit; font-size: 15px; }
.landing-help-ai-message code { padding: 2px 5px; border-radius: 5px; background: rgba(15,23,42,.08); font-size: .9em; }
.help-ai-suggestions { display: flex; flex-wrap: wrap; gap: 7px; max-height: 116px; overflow-y: auto; margin-top: 10px; padding: 2px; }
.help-ai-suggestions button {
    border: 1px solid rgba(128,0,0,.2); border-radius: 999px; padding: 7px 11px; background: #fff8f3;
    color: #800000; font: inherit; font-size: 12px; font-weight: 800; cursor: pointer;
}
.help-ai-suggestions button:hover, .help-ai-suggestions button:focus { background: #800000; color: #fff; outline: none; }
.landing-help-ai-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 12px; }
.landing-help-ai-form textarea {
    width: 100%; resize: vertical; min-height: 54px; padding: 12px 14px; border: 1px solid #cbd5e1;
    border-radius: 12px; font: inherit; color: #1e293b; background: #fff;
}
.landing-help-ai-form textarea:focus { outline: 0; border-color: #800000; box-shadow: 0 0 0 3px rgba(128, 0, 0, .1); }
.landing-help-ai-form button {
    align-self: stretch; min-width: 112px; border: 0; border-radius: 12px; padding: 0 16px;
    background: #800000; color: #fff; font: inherit; font-weight: 900; cursor: pointer;
}
.landing-help-ai-form button:disabled { opacity: .65; cursor: wait; }
.landing-help-ai-disclaimer { margin: 9px 0 0; color: #64748b; font-size: 12px; line-height: 1.5; }
.help-modal-open { overflow: hidden !important; }

@media (max-width: 900px) {
    .landing-help-summary, .landing-help-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .landing-help-actions { right: 16px; bottom: 16px; }
    .landing-help-modal { padding: 14px; }
    .landing-help-panel { padding: 22px; border-radius: 16px; }
    .landing-help-header { padding-right: 44px; }
    .landing-help-ai-form { grid-template-columns: 1fr; }
    .landing-help-ai-form button { min-height: 48px; }
}
