.registration-flow-page {
    background:
        radial-gradient(circle at 78% 14%, rgba(44, 93, 220, 0.28), transparent 36%),
        linear-gradient(180deg, #101f7f 0%, #16276d 55%, #172868 100%);
    color: #fff;
    font-family: "DM Sans", Arial, sans-serif;
}

.registration-flow-page .app-shell {
    min-height: 100vh;
    background: transparent;
}

.registration-flow-page .registration-flow-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: #132170;
    box-shadow: 0 3px 12px rgba(5, 10, 36, 0.22);
}

.registration-flow-page .registration-flow-header-inner,
.registration-flow-page .registration-flow-inner {
    width: 1326px;
    max-width: calc(100% - 36px);
    margin: 0 auto;
}

.registration-flow-page .registration-flow-header-inner {
    padding: 14px 0;
}

.registration-flow-page .top-nav {
    min-height: 60px;
    height: auto;
    display: grid;
    grid-template-columns: 351px 1fr auto;
    align-items: center;
    column-gap: 24px;
}

.registration-flow-page .brand img {
    width: 150px;
    height: auto;
    display: block;
}

.registration-flow-page .nav-links {
    display: flex;
    gap: 26px;
    align-items: center;
}

.registration-flow-page .nav-links a {
    color: #f8f9fc;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-align: center;
}

.registration-flow-page .nav-links a.active {
    color: #ffcc00;
}

.registration-flow-page .top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.registration-flow-page .request-btn {
    border: none;
    background: #ffcc00;
    color: #111125;
    width: 180px;
    height: 46px;
    border-radius: 54px;
    padding: 14px 24px;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-family: "DM Sans", Arial, sans-serif;
    box-shadow: none;
}

.registration-flow-page .bell-btn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: none;
    background: transparent;
    position: relative;
    padding: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.registration-flow-page .bell-btn img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.registration-flow-page .bell-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #ff4b5c;
    color: #fff;
    font-size: 10px;
    display: grid;
    place-items: center;
}

.registration-flow-page .menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    background: rgba(11, 24, 68, 0.72);
    padding: 9px 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.registration-flow-page .menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    display: block;
}

.registration-flow-page .registration-flow-main {
    padding: 44px 0 88px;
}

.registration-flow-page .registration-flow-hero {
    margin-bottom: 18px;
}

.registration-flow-page .section-titles {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
    max-width: 900px;
}

.registration-flow-page .section-titles h4 {
    margin: 0;
    color: #ffcc00;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.registration-flow-page .section-titles h2 {
    margin: 0;
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.registration-flow-page .section-titles p {
    margin: 0;
    color: #dce6ff;
    font-size: 16px;
    line-height: 1.55;
    max-width: 680px;
}

.registration-flow-page .registration-flow-panel {
    background:
        linear-gradient(180deg, rgba(24, 61, 155, 0.95) 0%, rgba(19, 47, 131, 0.95) 100%);
    border-radius: 22px;
    padding: 22px;
    max-width: 1220px;
    margin: 0 auto;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05), 0 18px 50px rgba(5, 11, 40, 0.24);
}

.registration-flow-page .stepper-wrap {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 14px 16px;
    margin-bottom: 22px;
}

.registration-flow-page .step {
    color: rgba(231, 238, 255, 0.82);
}

.registration-flow-page .step:not(:last-child)::after {
    background: rgba(255, 255, 255, 0.3);
}

.registration-flow-page .step .dot {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

.registration-flow-page .step.active,
.registration-flow-page .step.done {
    color: #fff;
}

.registration-flow-page .step.active .dot {
    background: #ffcc00;
    color: #111125;
    border-color: #ffcc00;
}

.registration-flow-page .step.done .dot {
    background: #ffffff;
    color: #132170;
    border-color: #ffffff;
}

.registration-flow-page .step.active::after {
    background: #ffcc00;
}

.registration-flow-page .form-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    padding: 26px;
    border: 1px solid rgba(16, 24, 40, .08);
    box-shadow: 0 16px 34px rgba(5, 11, 40, 0.14);
}

.registration-flow-page .section-header {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 22px;
    color: #17317a;
}

.registration-flow-page label {
    font-family: "DM Sans", Arial, sans-serif;
    color: #233f85;
}

.registration-flow-page label .req {
    color: #17317a;
}

.registration-flow-page .hint-inline,
.registration-flow-page .help {
    color: #63759e;
}

.registration-flow-page input,
.registration-flow-page select,
.registration-flow-page textarea {
    border: 1px solid #c7d2ec;
    border-radius: 12px;
    padding: 14px 16px;
    color: #22345f;
    font-family: "DM Sans", Arial, sans-serif;
}

.registration-flow-page .inline-phone {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 12px;
}

.registration-flow-page .phone-code-select {
    position: relative;
}

.registration-flow-page .phone-code-trigger,
.registration-flow-page .phone-code-option {
    width: 100%;
    border: 1px solid #c7d2ec;
    border-radius: 12px;
    padding: 14px 16px;
    color: #22345f;
    font-family: "DM Sans", Arial, sans-serif;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}

.registration-flow-page .phone-code-trigger:focus {
    border-color: #4d97ff;
    box-shadow: 0 0 0 4px rgba(77, 151, 255, 0.16);
}

.registration-flow-page .phone-code-visual {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.registration-flow-page .phone-code-flag-image {
    width: 28px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
    flex: 0 0 auto;
    background: #fff;
    border: 1px solid #d7e0f2;
}

.registration-flow-page .phone-code-flag-emoji {
    font-size: 18px;
    line-height: 1;
    flex: 0 0 auto;
}

.registration-flow-page .phone-code-label {
    white-space: nowrap;
}

.registration-flow-page .phone-code-caret {
    color: #6f82aa;
    font-size: 12px;
}

.registration-flow-page .phone-code-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 20;
    max-height: 260px;
    overflow: auto;
    padding: 8px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #c7d2ec;
    box-shadow: 0 20px 36px rgba(16, 24, 40, 0.16);
}

.registration-flow-page .phone-code-option {
    justify-content: flex-start;
    border: 0;
    padding: 12px 10px;
    border-radius: 10px;
}

.registration-flow-page .phone-code-option:hover {
    background: #eef4ff;
}

.registration-flow-page input::placeholder,
.registration-flow-page textarea::placeholder {
    color: #8c9ab8;
}

.registration-flow-page input:focus,
.registration-flow-page select:focus,
.registration-flow-page textarea:focus {
    border-color: #4d97ff;
    box-shadow: 0 0 0 4px rgba(77, 151, 255, 0.16);
}

.registration-flow-page .field-group {
    background: #edf3ff;
    border: 1px solid #cfe0ff;
    border-radius: 14px;
    padding: 12px;
}

.registration-flow-page .upload-box {
    border: 2px dashed #bcd2ff;
    border-radius: 14px;
    background: #f7faff;
    color: #5d6e94;
}

.registration-flow-page .upload-title {
    color: #1f356b;
    font-size: 14px;
}

.registration-flow-page .upload-sub {
    color: #7386ad;
}

.registration-flow-page .radio-option {
    border-color: #c7d2ec;
    background: #fff;
    color: #22345f;
}

.registration-flow-page .radio-option input[type=radio] {
    border-color: #8ca0cc;
}

.registration-flow-page .radio-option input[type=radio]::before {
    background: #17317a;
}

.registration-flow-page .radio-option:has(input:checked) {
    border-color: #17317a;
    background: #eef4ff;
    box-shadow: 0 0 0 3px rgba(23, 49, 122, .08);
}

.registration-flow-page .bio-counter {
    color: #6f82aa;
}

.registration-flow-page .error {
    color: #b42318;
}

.registration-flow-page .panel-actions {
    margin-top: 22px;
}

.registration-flow-page .btn-soft {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.registration-flow-page .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.24);
}

.registration-flow-page .btn-dark {
    background: #ffcc00;
    color: #111125;
    box-shadow: none;
}

.registration-flow-page .btn-dark[disabled],
.registration-flow-page .btn[disabled] {
    opacity: .7;
}

.registration-flow-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    padding: 13px 20px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color .15s, border-color .15s, color .15s, opacity .15s;
}

.registration-flow-page .btn-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.registration-flow-page .data-protection {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 20px 22px;
    color: #edf3ff;
}

.registration-flow-page .data-protection h3 {
    color: #fff;
    font-size: 22px;
    margin: 0 0 14px;
}

.registration-flow-page .data-protection ul {
    gap: 10px;
}

.registration-flow-page .data-protection li {
    font-size: 14px;
    color: #e3ebff;
}

.registration-flow-page .register-landing-copy {
    color: #dce6ff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.registration-flow-page .start-row {
    margin-top: 18px;
}

.registration-flow-page .site-footer {
    margin-top: 0;
    background: #0c1b63;
    padding-top: 72px;
}

.registration-flow-page .footer-inner {
    width: 1325px;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 482px 412px 329px;
    gap: 51px;
}

.registration-flow-page .footer-about img {
    width: 104px;
    display: block;
    margin-bottom: 19px;
}

.registration-flow-page .footer-about h3 {
    margin: 0 0 10px;
    color: #fff;
    font-weight: 500;
    font-size: 32px;
    line-height: 112%;
}

.registration-flow-page .footer-about p,
.registration-flow-page .footer-contact a,
.registration-flow-page .footer-bottom span {
    color: #e3ebff;
}

.registration-flow-page .footer-contact h4 {
    color: #fff;
}

.registration-flow-page .footer-map iframe {
    width: 100%;
    height: 251px;
    border: 0;
    border-radius: 8px;
}

.registration-flow-page .footer-bottom {
    width: 1325px;
    max-width: 100%;
    margin: 38px auto 0;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.registration-flow-page .footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.registration-flow-page .footer-social img {
    width: 24px;
    height: 24px;
}

.success-page .success-hero {
    margin-bottom: 24px;
}

.success-page .success-stage {
    min-height: auto;
    display: block;
    max-width: 980px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.success-page .success-card {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 48px 40px;
}

.success-page .success-icon {
    width: 90px;
    height: 90px;
    border-radius: 999px;
    background: #ffcc00;
    display: grid;
    place-items: center;
    margin: 0 auto 26px;
    box-shadow: 0 16px 34px rgba(17, 17, 37, 0.16);
}

.success-page .success-icon svg {
    width: 54px;
    height: 54px;
}

.success-page .success-title {
    margin: 0 0 16px;
    color: #17317a;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.success-page .success-text,
.success-page .success-reference {
    margin: 0 auto 14px;
    max-width: 640px;
    color: #56688f;
    font-size: 16px;
    line-height: 1.6;
}

.success-page .success-reference {
    margin-top: -4px;
    color: #17317a;
    font-weight: 700;
}

.success-page .success-email {
    font-size: 16px;
    color: #17317a;
    text-decoration: underline;
    margin-bottom: 28px;
    display: inline-block;
}

.success-page .success-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.success-page .success-actions .btn {
    min-width: 240px;
}

.success-page .success-actions .btn-outline {
    background: transparent;
    color: #17317a;
    border-color: #17317a;
}

.success-page .success-actions .btn-dark {
    background: #ffcc00;
    color: #111125;
    border-color: #ffcc00;
}

@media (max-width: 992px) {

    .registration-flow-page .registration-flow-header-inner,
    .registration-flow-page .registration-flow-inner {
        max-width: calc(100% - 24px);
    }

    .registration-flow-page .top-nav {
        grid-template-columns: 1fr auto auto;
        column-gap: 16px;
        position: relative;
    }

    .registration-flow-page .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        border-radius: 16px;
        background: #122061;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 20px 40px rgba(5, 11, 40, 0.22);
        z-index: 10;
    }

    .registration-flow-page .top-nav.is-open .nav-links {
        display: flex;
    }

    .registration-flow-page .menu-toggle {
        display: inline-flex;
    }

    .registration-flow-page .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .success-page .success-card {
        padding: 34px 24px;
    }

    .success-page .success-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .registration-flow-page .top-actions {
        display: none;
    }

    .registration-flow-page .registration-flow-main {
        padding: 30px 0 64px;
    }

    .registration-flow-page .section-titles h2 {
        font-size: 34px;
    }

    .registration-flow-page .form-card {
        padding: 18px;
    }

    .registration-flow-page .panel-actions,
    .registration-flow-page .left-actions,
    .registration-flow-page .right-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .registration-flow-page .left-actions,
    .registration-flow-page .right-actions {
        width: 100%;
    }

    .registration-flow-page .btn {
        width: 100%;
    }

    .registration-flow-page .inline-phone {
        grid-template-columns: 1fr;
    }

    .success-page .success-stage {
        min-height: auto;
    }

    .success-page .success-card {
        padding: 26px 18px;
    }

    .success-page .success-title {
        font-size: 28px;
    }

    .success-page .success-actions .btn {
        min-width: 0;
    }

    .registration-flow-page .site-footer {
        padding: 20px 15px;
    }


}

.success-page .success-stage {
    min-height: auto;
}

.success-page .success-card {
    padding: 26px 18px;
}

.success-page .success-title {
    font-size: 28px;
}

.success-page .success-actions .btn {
    min-width: 0;
}