*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --mr-primary: #12395c;
    --mr-secondary: #c05a2b;
    --mr-accent: #e8934f;
    --mr-accent-soft: #ffe6d1;
    --mr-ink: #17222e;
    --mr-muted: #5c6b7c;
    --mr-line: #d8e0ea;
    --mr-paper: #ffffff;
    --mr-surface: #eef3f9;
    --mr-surface-deep: #e3ebf4;
    --mr-dark: #0c1620;
    --mr-radius-sm: 12px;
    --mr-radius-md: 20px;
    --mr-radius-lg: 30px;
    --mr-shadow-soft: 0 16px 40px rgba(14, 30, 48, .09);
    --mr-shadow-strong: 0 26px 64px rgba(9, 22, 38, .18);
    --mr-font: 'Inter', 'Segoe UI', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--mr-font);
    color: var(--mr-ink);
    background:
        radial-gradient(circle at 8% 0%, rgba(192,90,43,.13), transparent 22%),
        radial-gradient(circle at 100% 8%, rgba(18,57,92,.14), transparent 26%),
        linear-gradient(180deg, #f8fafd 0%, #e9eff6 100%);
    line-height: 1.72;
    font-size: 16px;
}
a { color: var(--mr-secondary); text-decoration: none; }
a:hover { text-decoration: underline; }

.shellBox_h8 { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }

.siteTop_h8 {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(12, 22, 32, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.siteTop_h8__inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.siteTop_h8__brand {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 800;
    font-size: 19px;
}
.siteTop_h8__brand:hover { text-decoration: none; }

.pageLead_h8 {
    position: relative;
    overflow: hidden;
    padding: 84px 0 62px;
    background:
        linear-gradient(135deg, rgba(12,22,32,.96) 0%, rgba(18,57,92,.95) 52%, rgba(192,90,43,.9) 100%);
    color: #fff;
}
.pageLead_h8::before,
.pageLead_h8::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(6px);
}
.pageLead_h8::before {
    width: 280px;
    height: 280px;
    top: -110px;
    right: -30px;
    background: rgba(232,147,79,.2);
}
.pageLead_h8::after {
    width: 220px;
    height: 220px;
    left: -60px;
    bottom: -90px;
    background: rgba(255,255,255,.09);
}
.pageLead_h8__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.09);
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 20px;
}
.pageLead_h8__title {
    max-width: 820px;
    font-size: clamp(33px, 5vw, 60px);
    line-height: 1.06;
    font-weight: 900;
    margin-bottom: 16px;
}
.pageLead_h8__text {
    max-width: 710px;
    color: rgba(255,255,255,.84);
    font-size: 17px;
}

.docBody_h8 {
    padding: 54px 0 84px;
}
.docCard_h8 {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(18,57,92,.09);
    border-radius: var(--mr-radius-lg);
    box-shadow: var(--mr-shadow-soft);
    padding: 42px 42px 46px;
}
@media (max-width: 760px) {
    .docBody_h8 { padding-top: 32px; }
    .docCard_h8 { padding: 26px 20px 30px; border-radius: 20px; }
}

.docCard_h8 h2 {
    font-size: clamp(23px, 3vw, 31px);
    line-height: 1.16;
    margin: 30px 0 14px;
    color: var(--mr-primary);
}
.docCard_h8 h2:first-child { margin-top: 0; }
.docCard_h8 h3 {
    font-size: 19px;
    margin: 20px 0 8px;
    color: var(--mr-ink);
}
.docCard_h8 p,
.docCard_h8 li,
.docCard_h8 ul,
.docCard_h8 ol { color: var(--mr-muted); }
.docCard_h8 p { margin-bottom: 14px; }
.docCard_h8 ul,
.docCard_h8 ol { padding-left: 22px; margin-bottom: 16px; }
.docCard_h8 li { margin-bottom: 7px; }
.docCard_h8 strong { color: var(--mr-ink); }
.docCard_h8 em {
    color: var(--mr-secondary);
    font-style: normal;
    font-weight: 800;
}

.infoGrid_h8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
    margin: 24px 0 28px;
}
.infoCard_h8 {
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(238,243,249,.96) 100%);
    border: 1px solid rgba(18,57,92,.09);
    border-radius: 22px;
    padding: 24px 22px;
    box-shadow: 0 14px 30px rgba(14, 30, 48, .06);
}
.infoCard_h8__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(18,57,92,.12), rgba(192,90,43,.2));
    font-size: 24px;
}
.infoCard_h8__title {
    font-size: 17px;
    font-weight: 800;
    color: var(--mr-primary);
    margin-bottom: 8px;
}
.infoCard_h8__text {
    font-size: 14px;
    color: var(--mr-muted);
}

.flowList_h8 {
    margin: 24px 0;
    counter-reset: mr-step;
}
.flowList_h8__step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--mr-line);
}
.flowList_h8__step:last-child { border-bottom: none; }
.flowList_h8__num {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--mr-primary) 0%, var(--mr-secondary) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(18,57,92,.2);
}
.flowList_h8__num::before {
    counter-increment: mr-step;
    content: counter(mr-step);
    font-weight: 900;
}
.flowList_h8__title {
    font-weight: 800;
    color: var(--mr-primary);
    margin-bottom: 5px;
}
.flowList_h8__text {
    color: var(--mr-muted);
}

.noteBox_h8 {
    margin: 24px 0;
    padding: 20px 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff1e4 0%, #fffaf5 100%);
    border: 1px solid rgba(192,90,43,.34);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.75);
}
.noteBox_h8 p { color: var(--mr-ink); margin: 0; }

.dataTable_h8 {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(14, 30, 48, .06);
}
.dataTable_h8 th {
    background: linear-gradient(135deg, var(--mr-primary) 0%, #1f5b8c 100%);
    color: #fff;
    text-align: left;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 800;
}
.dataTable_h8 td {
    background: rgba(255,255,255,.96);
    padding: 13px 16px;
    border-bottom: 1px solid var(--mr-line);
    color: var(--mr-muted);
    font-size: 14px;
}
.dataTable_h8 tr:last-child td { border-bottom: none; }

.pageFoot_h8 {
    position: relative;
    overflow: hidden;
    margin-top: 26px;
    padding: 66px 0 30px;
    background: linear-gradient(180deg, #0c1620 0%, #131f2c 55%, #16232f 100%);
    color: #b3bfcd;
}
.pageFoot_h8__shell {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.pageFoot_h8__grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}
@media (max-width: 940px) {
    .pageFoot_h8__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
    .pageFoot_h8__grid { grid-template-columns: 1fr; gap: 22px; }
}
.pageFoot_h8__brand h3,
.pageFoot_h8__col h4 {
    color: #fff;
}
.pageFoot_h8__brand h3 {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.pageFoot_h8__brand p {
    font-size: 14px;
    line-height: 1.76;
}
.pageFoot_h8__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pageFoot_h8__col h4 {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .2em;
}
.pageFoot_h8__legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pageFoot_h8__legal a {
    color: #c2ccd9;
    font-size: 14px;
}
.pageFoot_h8__legal a:hover { color: #fff; text-decoration: none; }
.pageFoot_h8__line {
    height: 1px;
    background: rgba(255,255,255,.09);
    margin: 24px 0 20px;
}
.pageFoot_h8__bottom {
    text-align: center;
    color: #8693a5;
    font-size: 13px;
}
.pageFoot_h8__glow {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}
.pageFoot_h8__glow--one {
    width: 320px;
    height: 320px;
    right: -100px;
    top: -70px;
    background: radial-gradient(circle, rgba(232,147,79,.2) 0%, transparent 68%);
}
.pageFoot_h8__glow--two {
    width: 260px;
    height: 260px;
    left: -60px;
    bottom: -90px;
    background: radial-gradient(circle, rgba(18,57,92,.34) 0%, transparent 68%);
}
