.info_page_shell {
    --info-bg: var(--jc-mist, #f2f5f7);
    --info-surface: #ffffff;
    --info-surface-soft: rgba(242, 245, 247, 0.9);
    --info-border: rgba(11, 61, 61, 0.12);
    --info-text: var(--jc-navy, #0b3d3d);
    --info-muted: #60767a;
    --info-blue: var(--jc-amber, #009d8f);
    --info-blue-soft: rgba(0, 157, 143, 0.12);
    --info-green: var(--jc-amber-dark, #0a6f69);
    --info-amber: var(--jc-sky, #3dd6c6);
    --info-red: #c90f2c;
    --info-shadow: 0 24px 54px rgba(11, 61, 61, 0.12);
    --info-shadow-soft: 0 16px 34px rgba(11, 61, 61, 0.08);
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 1rem;
    color: var(--info-text);
}

.info_top_nav {
    max-width: 1200px;
    margin: 1rem auto 0;
    padding: 0 1rem;
}

.info_top_nav_inner {
    display: flex;
    gap: 0.65rem;
    align-items: stretch;
    overflow-x: auto;
    padding: 0.75rem;
    border: 1px solid rgba(11, 61, 61, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 40px rgba(11, 61, 61, 0.08);
    backdrop-filter: blur(16px);
}

.info_nav_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: max-content;
    padding: 0.72rem 1rem;
    border-radius: 18px;
    color: #526a6f;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.info_nav_link:hover,
.info_nav_link:focus,
.info_nav_link.is_active {
    background: linear-gradient(135deg, rgba(0, 157, 143, 0.14), rgba(61, 214, 198, 0.16));
    color: var(--info-blue);
    text-decoration: none;
    transform: translateY(-1px);
}

.info_hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 1.25rem;
    align-items: stretch;
    margin: 1rem 0 1.25rem;
    padding: clamp(1.25rem, 3vw, 2.25rem);
    border-radius: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 0%, rgba(61, 214, 198, 0.16), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(0, 157, 143, 0.12), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, var(--info-bg) 100%);
    border: 1px solid rgba(0, 157, 143, 0.14);
    box-shadow: var(--info-shadow);
}

.info_hero h1 {
    margin: 0.55rem 0 0.7rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: var(--info-text);
}

.info_hero p {
    max-width: 680px;
    margin: 0;
    color: var(--info-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.info_eyebrow,
.info_section_kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: max-content;
    max-width: 100%;
    padding: 0.4rem 0.72rem;
    border-radius: 999px;
    background: var(--info-blue-soft);
    color: var(--info-blue);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.info_hero_card,
.info_user_card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.65rem;
    min-height: 180px;
    padding: 1.25rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(0, 157, 143, 0.14);
    box-shadow: var(--info-shadow-soft);
}

.info_hero_card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--info-blue), var(--info-amber));
    color: #ffffff;
    font-size: 1.35rem;
}

.info_hero_card strong,
.info_user_card strong {
    display: block;
    color: var(--info-text);
    font-size: 1.05rem;
}

.info_hero_card span,
.info_user_card span {
    color: var(--info-muted);
    line-height: 1.55;
}

.info_user_card {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    min-height: unset;
}

.info_user_avatar,
.info_user_avatar_img,
.info_user_avatar_placeholder {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    overflow: hidden;
    flex: 0 0 auto;
}

.info_user_avatar_img {
    object-fit: cover;
    display: block;
}

.info_user_avatar_placeholder {
    display: grid;
    place-items: center;
    background: var(--info-blue-soft);
    color: var(--info-blue);
}

.info_panel,
.info_summary_card,
.info_empty_state {
    border: 1px solid var(--info-border);
    border-radius: 26px;
    background: var(--info-surface);
    box-shadow: var(--info-shadow-soft);
}

.info_panel {
    padding: clamp(1rem, 2vw, 1.4rem);
}

.info_panel_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--info-border);
}

.info_panel_header.compact {
    align-items: center;
}

.info_panel_header h2 {
    margin: 0.55rem 0 0.25rem;
    font-size: 1.35rem;
    letter-spacing: -0.025em;
    color: var(--info-text);
}

.info_panel_header p {
    margin: 0;
    color: var(--info-muted);
    line-height: 1.6;
}

.info_panel_header > i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 18px;
    background: var(--info-blue-soft);
    color: var(--info-blue);
    font-size: 1.15rem;
}

.info_primary_btn,
.info_cta_btn,
.info_ghost_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.info_primary_btn,
.info_cta_btn {
    background: linear-gradient(135deg, var(--info-blue), var(--info-green));
    color: #ffffff !important;
    box-shadow: 0 14px 28px rgba(0, 157, 143, 0.22);
}

.info_ghost_btn {
    background: var(--info-surface-soft);
    color: var(--info-blue) !important;
    border-color: rgba(0, 157, 143, 0.16);
}

.info_primary_btn:hover,
.info_cta_btn:hover,
.info_ghost_btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(0, 157, 143, 0.2);
}

.info_inline_link {
    color: var(--info-blue) !important;
    font-weight: 700;
}

.info_danger_link {
    color: var(--info-red) !important;
    font-weight: 700;
}

.info_alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    font-weight: 700;
}

.info_alert--success {
    background: rgba(0, 157, 143, 0.12);
    color: var(--info-green);
}

.info_field {
    display: block;
    margin-bottom: 1rem;
}

.info_field > span {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 800;
    color: var(--info-text);
}

.info_field .form-control,
.info_input_group .form-control,
.info_input_group .input-group-text {
    min-height: 48px;
    border-radius: 16px;
    border-color: rgba(11, 61, 61, 0.14);
    background: #ffffff;
    color: var(--info-text);
}

.info_field .form-control:focus,
.info_input_group .form-control:focus {
    border-color: rgba(0, 157, 143, 0.48);
    box-shadow: 0 0 0 0.2rem rgba(61, 214, 198, 0.18) !important;
}

.info_field textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.info_input_group .input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    color: var(--info-blue);
    background: var(--info-blue-soft);
}

.info_empty_inline {
    padding: 0.9rem 1rem;
    border-radius: 16px;
    list-style: none;
    background: var(--info-surface-soft);
    color: var(--info-muted);
}

.info_empty_state {
    padding: 2rem;
    text-align: center;
    color: var(--info-muted);
}

.info_empty_state > i {
    display: inline-grid;
    place-items: center;
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 22px;
    background: var(--info-blue-soft);
    color: var(--info-blue);
}

.info_empty_state h3 {
    margin: 0 0 0.35rem;
    color: var(--info-text);
}

.info_doc_copy :is(h1, h2, h3, h4, h5, h6, strong),
.info_protection_doc :is(h1, h2, h3, h4, h5, h6, strong) {
    color: var(--info-text);
}

.info_doc_copy :is(p, li, span, div, td, th),
.info_protection_doc :is(p, li, span, div, td, th) {
    color: var(--info-text);
}

.info_doc_copy a,
.info_protection_doc a {
    color: var(--info-blue) !important;
    font-weight: 800;
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_page_shell {
    --info-bg: #061818;
    --info-surface: rgba(8, 28, 28, 0.98);
    --info-surface-soft: rgba(12, 40, 40, 0.88);
    --info-border: rgba(61, 214, 198, 0.2);
    --info-text: #f8fafc;
    --info-muted: #a8bfca;
    --info-blue: #3dd6c6;
    --info-blue-soft: rgba(61, 214, 198, 0.14);
    --info-green: #75eadc;
    --info-amber: #22c8bb;
    --info-red: #fca5a5;
    --info-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
    --info-shadow-soft: 0 16px 34px rgba(0, 0, 0, 0.26);
    color: var(--info-text);
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_top_nav_inner,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_hero,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_panel,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_summary_card,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_empty_state,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_hero_card,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_user_card {
    background:
        radial-gradient(circle at 100% 0%, rgba(61, 214, 198, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(9, 32, 32, 0.98), rgba(4, 18, 18, 0.99));
    border-color: var(--info-border);
    color: var(--info-text);
    box-shadow: var(--info-shadow-soft);
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_hero {
    background:
        radial-gradient(circle at 8% 0%, rgba(61, 214, 198, 0.16), transparent 30%),
        radial-gradient(circle at 92% 8%, rgba(0, 157, 143, 0.12), transparent 28%),
        linear-gradient(135deg, rgba(9, 32, 32, 0.98), rgba(4, 18, 18, 0.99));
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_nav_link {
    color: #b7c8d1;
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_nav_link:hover,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_nav_link:focus,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_nav_link.is_active {
    background: linear-gradient(135deg, rgba(61, 214, 198, 0.16), rgba(0, 157, 143, 0.2));
    color: #ffffff;
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_page_shell :is(h1, h2, h3, h4, h5, h6, strong, label, .info_doc_copy, .info_doc_copy p, .info_doc_copy li, .info_help_doc_copy, .info_help_doc_copy p, .info_help_doc_copy li, .info_field > span, .info_help_result_body strong, .info_contact_text) {
    color: var(--info-text);
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_doc_copy :is(h1, h2, h3, h4, h5, h6, p, li, span, div, strong, td, th),
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_protection_doc :is(h1, h2, h3, h4, h5, h6, p, li, span, div, strong, td, th) {
    color: var(--info-text) !important;
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_page_shell :is(p, small, .info_help_result_body small, .info_help_result_meta, .info_contact_meta, .info_empty_inline, .info_empty_state, .info_history_note) {
    color: var(--info-muted);
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_field .form-control,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_input_group .form-control,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_input_group .input-group-text {
    background: rgba(8, 28, 28, 0.94);
    border-color: rgba(61, 214, 198, 0.22);
    color: var(--info-text);
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_field .form-control::placeholder,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_input_group .form-control::placeholder {
    color: rgba(168, 191, 202, 0.78);
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_empty_inline,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_document_item,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_step_list li {
    background: var(--info-surface-soft);
    border-color: var(--info-border);
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_ghost_btn {
    background: rgba(61, 214, 198, 0.12);
    border-color: rgba(61, 214, 198, 0.22);
    color: var(--info-blue) !important;
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_primary_btn,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_cta_btn {
    color: #061818 !important;
    box-shadow: 0 16px 30px rgba(61, 214, 198, 0.18);
}

@media (max-width: 991.98px) {
    .info_hero {
        grid-template-columns: 1fr;
    }

    .info_page_shell {
        padding: 0.75rem;
    }

    .info_top_nav {
        padding: 0 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .info_nav_link span {
        font-size: 0.86rem;
    }

    .info_hero {
        border-radius: 24px;
    }

    .info_panel_header {
        flex-direction: column;
    }
}
