﻿.help-block {
    font-size: 11px;
}


/* Login-specific override after Register extraction */
body.hp-login-page .hp-input {
    width: 100%;
    height: 48px;
    border: 1px solid #dfe4e8;
    border-radius: 5px;
    background: #fff;
    padding: 0 48px 0 52px;
    font-family: Raleway, Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #263238;
    outline: none;
    box-shadow: 0 1px 3px rgba(31, 45, 61, .06);
    transition: border-color .18s ease, box-shadow .18s ease;
}

body.hp-login-page .hp-input::placeholder {
    color: #a5adb5;
    font-weight: 500;
}

body.hp-login-page .hp-input:focus {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 3px rgba(199, 83, 17, .12);
}

body.hp-login-page .hp-password-toggle {
    right: 15px;
    color: #2f3a42;
    font-size: 18px;
}

/* Register-specific override after Login extraction */
body.hp-register-page .hp-section-title {
    color: var(--hp-text);
}

/* Skills/UserSetup-specific override after Login extraction */
body.hp-setup-page .hp-section-title {
    color: var(--hp-text);
}

.badge-notification {
    margin-left: -10px;
    margin-top: -20px;
    border-radius: 20px !important;
}

.custom-enumeration ol {
    list-style-type: decimal;
}

.custom-enumeration ul {
    list-style-type: disc;
}
/* Extracted from Views/Account/Login.cshtml */

        :root {
            --hp-primary: #ca531a;
            --hp-primary-dark: #9c3f09;
            --hp-text: #263238;
            --hp-muted: #6f7b85;
            --hp-border: #edf0f2;
            --hp-bg: #faf8f5;
            --hp-soft: #fff4ee;
            --hp-card: #ffffff;
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            min-height: 100%;
        }

        body.hp-login-page {
            min-height: 100vh;
            font-family: Raleway, Arial, sans-serif;
            background: #fff;
            color: var(--hp-text);
        }

        .hp-page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background: #fff;
        }

        .hp-header {
            height: 76px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 56px;
            border-bottom: 1px solid var(--hp-border);
            background: #fff;
            flex-shrink: 0;
        }

        .hp-header-logo img {
            height: 44px;
            width: auto;
            display: block;
        }

        .hp-contact {
            display: flex;
            align-items: center;
            gap: 22px;
            font-size: 13px;
            color: var(--hp-muted);
            font-weight: 600;
            white-space: nowrap;
            font-variant-numeric: tabular-nums;
        }

        .hp-contact span {
            display: inline-flex;
            align-items: center;
            font-size: 13px;
            line-height: 1;
        }

        .hp-contact-phone {
            font-variant-numeric: lining-nums tabular-nums;
            font-feature-settings: "lnum" 1, "tnum" 1;
        }

        .hp-contact i {
            color: var(--hp-primary);
            margin-right: 6px;
        }

        .hp-main {
            flex: 1;
            display: grid;
            grid-template-columns: minmax(380px, 0.9fr) minmax(520px, 1.35fr);
            min-height: 620px;
        }

        .hp-info {
            background: var(--hp-bg);
            padding: 58px 56px 40px 72px;
            display: flex;
            justify-content: center;
        }

        .hp-info-inner {
            max-width: 440px;
            width: 100%;
        }

        .hp-eyebrow {
            font-size: 24px;
            font-weight: 700;
            margin: 0;
            line-height: 1.1;
        }

        .hp-title {
            font-size: 44px;
            line-height: 1.05;
            margin: 0 0 20px;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .hp-title span {
            color: var(--hp-primary);
        }

        .hp-copy {
            color: var(--hp-muted);
            font-size: 15px;
            line-height: 1.65;
            font-weight: 600;
            margin: 0 0 32px;
        }

        .hp-section-title {
            color: var(--hp-primary);
            font-weight: 800;
            font-size: 17px;
            margin: 0 0 24px;
        }

        .hp-benefit {
            display: grid;
            grid-template-columns: 48px 1fr;
            gap: 16px;
            margin-bottom: 24px;
            align-items: flex-start;
        }

        .hp-benefit-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #fff3ed;
            color: var(--hp-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 21px;
        }

        .hp-benefit h3 {
            margin: 0 0 6px;
            font-size: 15px;
            font-weight: 800;
        }

        .hp-benefit p {
            margin: 0;
            color: var(--hp-muted);
            font-size: 13px;
            line-height: 1.55;
            font-weight: 600;
        }

        .hp-safe-box {
            margin-top: 28px;
            background: #fff0e7;
            border-radius: 6px;
            padding: 18px 20px;
            display: grid;
            grid-template-columns: 34px 1fr;
            gap: 12px;
            color: var(--hp-muted);
            font-size: 13px;
            line-height: 1.55;
            font-weight: 600;
        }

        .hp-safe-box i {
            color: var(--hp-primary);
            font-size: 22px;
            margin-top: 2px;
        }

        .hp-safe-box strong {
            display: block;
            color: var(--hp-text);
            margin-bottom: 4px;
        }

        .hp-safe-box a,
        .hp-card-safe a {
            color: var(--hp-primary);
            font-weight: 800;
            text-decoration: none;
        }

        .hp-login-area {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 48px;
            background: #fff;
        }

        .hp-login-card {
            width: 100%;
            max-width: 590px;
            background: var(--hp-card);
            border: 1px solid var(--hp-border);
            border-radius: 8px;
            box-shadow: 0 12px 34px rgba(31, 45, 61, .08);
            padding: 34px 48px 28px;
        }

        .hp-card-logo {
            text-align: center;
            margin-bottom: 18px;
        }

        .hp-card-logo img {
            height: 58px;
            width: auto;
            max-width: 230px;
            object-fit: contain;
            display: inline-block;
        }

        .hp-card-title {
            text-align: center;
            font-size: 28px;
            font-weight: 800;
            margin: 0 0 4px;
        }

        .hp-card-subtitle {
            text-align: center;
            color: var(--hp-muted);
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 28px;
        }

        .hp-validation {
            margin-bottom: 18px;
        }

        .hp-form-group {
            margin-bottom: 18px;
        }

        .hp-form-label {
            display: block;
            font-size: 13px;
            font-weight: 800;
            color: #2f3a42;
            margin-bottom: 8px;
        }

        .hp-input-wrap {
            position: relative;
            width: 100%;
        }

        .hp-input {
            width: 100%;
            height: 48px;
            border: 1px solid #dfe4e8;
            border-radius: 5px;
            background: #fff;
            padding: 0 48px 0 52px;
            font-family: Raleway, Arial, sans-serif;
            font-size: 15px;
            font-weight: 500;
            color: #263238;
            outline: none;
            box-shadow: 0 1px 3px rgba(31, 45, 61, .06);
            transition: border-color .18s ease, box-shadow .18s ease;
        }

        .hp-input::placeholder {
            color: #a5adb5;
            font-weight: 500;
        }

        .hp-input:focus {
            border-color: var(--hp-primary);
            box-shadow: 0 0 0 3px rgba(199, 83, 17, .12);
        }

        .hp-input-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #2f3a42;
            font-size: 20px;
            line-height: 1;
            pointer-events: none;
        }

        .hp-password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            border: 0;
            background: transparent;
            padding: 4px;
            color: #2f3a42;
            font-size: 18px;
            line-height: 1;
            cursor: pointer;
            outline: none;
        }

        .hp-password-toggle:hover,
        .hp-password-toggle:focus {
            color: var(--hp-primary);
            outline: none;
        }

        .hp-password-row {
            text-align: right;
            margin-top: -6px;
            margin-bottom: 16px;
        }

        .hp-password-row a {
            color: var(--hp-primary);
            font-weight: 800;
            font-size: 13px;
            text-decoration: none;
        }

        .hp-submit {
            margin-bottom: 18px;
        }

        .hp-divider {
            text-align: center;
            color: #8b959e;
            font-weight: 700;
            font-size: 13px;
            margin: 14px 0;
        }

        .hp-register-box {
            background: #fffaf7;
            border: 1px solid #fff0e8;
            border-radius: 6px;
            padding: 20px;
            display: grid;
            grid-template-columns: 52px 1fr;
            gap: 16px;
            margin-bottom: 18px;
        }

        .hp-register-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #fff1e9;
            color: var(--hp-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .hp-register-box h3 {
            margin: 0 0 4px;
            font-size: 15px;
            font-weight: 800;
        }

        .hp-register-box p {
            margin: 0 0 14px;
            color: var(--hp-muted);
            line-height: 1.5;
            font-size: 13px;
            font-weight: 600;
        }

        .hp-register-button {
            display: block;
            width: 100%;
            text-align: center;
            border: 1px solid #f2a08e;
            border-radius: 5px;
            color: var(--hp-primary);
            font-weight: 800;
            padding: 11px 14px;
            text-decoration: none;
            background: #fff;
        }

        .hp-register-button:hover,
        .hp-password-row a:hover,
        .hp-safe-box a:hover,
        .hp-card-safe a:hover,
        .hp-footer-item a:hover {
            color: var(--hp-primary-dark);
            text-decoration: none;
        }

        .hp-card-safe {
            text-align: center;
            color: var(--hp-muted);
            font-size: 13px;
            font-weight: 600;
            line-height: 1.45;
        }

        .hp-card-safe i {
            color: #8c98a2;
            margin-right: 6px;
        }

        .hp-footer {
            min-height: 76px;
            border-top: 1px solid var(--hp-border);
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            background: #fff;
            flex-shrink: 0;
        }

        .hp-footer-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            padding: 16px 24px;
            color: var(--hp-muted);
            font-size: 12px;
            font-weight: 600;
            font-variant-numeric: tabular-nums;
        }

        .hp-footer-item i {
            font-size: 26px;
            color: #8c98a2;
        }

        .hp-footer-item strong {
            display: block;
            color: #4d5963;
            font-size: 13px;
            margin-bottom: 2px;
        }

        .hp-footer-item a {
            color: var(--hp-primary);
            text-decoration: none;
            font-weight: 800;
            font-size: 13px;
            font-variant-numeric: lining-nums tabular-nums;
            font-feature-settings: "lnum" 1, "tnum" 1;
        }

        .hp-footer-separator {
            font-size: 13px;
            font-weight: 800;
            line-height: 1;
        }

        .hp-login-card .btn-primary,
        .hp-login-card .dxbButtonSys,
        .hp-login-card .dxbButton {
            background: var(--hp-primary) !important;
            border-color: var(--hp-primary) !important;
            color: #fff !important;
            border-radius: 5px !important;
            min-height: 42px;
            font-weight: 800;
            box-shadow: none !important;
        }

        .hp-login-card .btn-primary:hover,
        .hp-login-card .dxbButtonSys:hover,
        .hp-login-card .dxbButton:hover {
            background: var(--hp-primary-dark) !important;
            border-color: var(--hp-primary-dark) !important;
            color: #fff !important;
        }

        .hp-login-card .dxbButtonSys span,
        .hp-login-card .dxbButton span {
            color: #fff !important;
            font-weight: 800 !important;
        }

        @media (max-width: 1100px) {
            .hp-main {
                grid-template-columns: 1fr;
            }

            .hp-info {
                padding: 42px 28px;
            }

            .hp-info-inner {
                max-width: 640px;
            }
        }

        @media (max-width: 768px) {
            .hp-header {
                padding: 18px 24px;
                height: auto;
                gap: 14px;
                flex-direction: column;
            }

            .hp-contact {
                flex-wrap: wrap;
                justify-content: center;
                white-space: normal;
                gap: 10px 18px;
            }

            .hp-login-area {
                padding: 36px 20px;
            }

            .hp-login-card {
                padding: 30px 24px;
            }

            .hp-title {
                font-size: 38px;
            }

            .hp-footer {
                grid-template-columns: 1fr;
            }

            .hp-footer-item {
                justify-content: flex-start;
            }
        }

        @media (max-width: 480px) {
            .hp-info {
                padding: 34px 20px;
            }

            .hp-login-area {
                padding: 28px 14px;
            }

            .hp-login-card {
                padding: 26px 18px;
            }

            .hp-register-box {
                grid-template-columns: 1fr;
            }

            .hp-register-icon {
                margin: 0 auto;
            }

            .hp-card-title {
                font-size: 24px;
            }
        }
    


/* Extracted from Views/Account/Register.cshtml */

        :root {
            --hp-primary: #ca531a;
            --hp-primary-dark: #9c3f09;
            --hp-blue: #086ec6;
            --hp-text: #172033;
            --hp-muted: #667085;
            --hp-border: #e8edf2;
            --hp-bg: #fbfaf8;
            --hp-soft-orange: #fff4ee;
            --hp-soft-blue: #f1f8ff;
            --hp-card: #ffffff;
        }
                    
        * {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            min-height: 100%;
        }

        body.hp-register-page {
            min-height: 100vh;
            font-family: Raleway, Arial, sans-serif;
            background: #fff;
            color: var(--hp-text);
        }

        .hp-register-shell {
            min-height: 100vh;
            background: #fff;
        }

        .hp-register-header {
            height: 78px;
            padding: 0 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--hp-border);
            background: #fff;
        }

        .hp-register-header-logo img {
            height: 52px;
            width: auto;
            display: block;
        }

        .hp-register-contact {
            display: flex;
            align-items: center;
            gap: 28px;
            color: var(--hp-muted);
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
            font-variant-numeric: tabular-nums;
        }

        .hp-register-contact span {
            display: inline-flex;
            align-items: center;
            font-size: 13px;
            line-height: 1;
        }

        .hp-contact-phone {
            font-variant-numeric: lining-nums tabular-nums;
            font-feature-settings: "lnum" 1, "tnum" 1;
        }

        .hp-register-contact i {
            color: var(--hp-primary);
            margin-right: 7px;
        }

        .hp-register-contact .hp-contact-logout {
            color: inherit;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            line-height: 1;
        }

        .hp-register-contact .hp-contact-logout:hover,
        .hp-register-contact .hp-contact-logout:focus {
            color: var(--hp-text);
            text-decoration: none;
        }

        .hp-register-layout {
            display: grid;
            grid-template-columns: 300px minmax(0, 1fr);
            gap: 56px;
            max-width: 1600px;
            margin: 0 auto;
            padding: 28px 40px 72px;
        }

        .hp-register-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .hp-sidebar-card,
        .hp-side-info-card,
        .hp-step-card,
        .hp-form-section {
            background: #fff;
            border: 1px solid var(--hp-border);
            box-shadow: 0 8px 26px rgba(31, 45, 61, .04);
        }

        .hp-sidebar-card {
            border-radius: 16px;
            padding: 22px 18px;
        }

        .hp-sidebar-title {
            font-size: 18px;
            font-weight: 900;
            margin: 0 0 12px;
        }

        .hp-phase-text {
            font-size: 13px;
            font-weight: 900;
            margin-bottom: 10px;
        }

        .hp-progress-track {
            width: 100%;
            height: 6px;
            border-radius: 999px;
            background: #e6e9ed;
            overflow: hidden;
            margin-bottom: 24px;
        }

        .hp-progress-fill {
            width: 16.66%;
            height: 100%;
            background: var(--hp-primary);
            border-radius: inherit;
            transition: width .2s ease;
        }

        .hp-phase-box {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid #f2e6dd;
            margin-bottom: 22px;
        }

        .hp-phase-box-head {
            background: var(--hp-soft-orange);
            padding: 18px;
        }

        .hp-phase-kicker {
            color: var(--hp-primary);
            font-size: 13px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .hp-phase-box-head strong {
            display: block;
            font-size: 18px;
            margin-bottom: 8px;
        }

        .hp-phase-box-head p {
            margin: 0;
            color: var(--hp-muted);
            line-height: 1.45;
            font-size: 13px;
            font-weight: 600;
        }

        .hp-step-list {
            position: relative;
            padding: 18px 0 4px;
            --hp-step-progress-height: 0px;
        }

        .hp-step-list:before {
            content: "";
            position: absolute;
            left: 29px;
            top: 18px;
            bottom: 18px;
            width: 1px;
            background: #e5e9ee;
        }

        .hp-step-list:after {
            content: "";
            position: absolute;
            left: 29px;
            top: 18px;
            width: 1px;
            height: var(--hp-step-progress-height);
            background: var(--hp-primary);
            transition: height .2s ease;
        }

        .hp-step-item {
            position: relative;
            display: grid;
            grid-template-columns: 58px 1fr;
            min-height: 68px;
        }

        .hp-step-number {
            position: relative;
            z-index: 1;
            width: 30px;
            height: 30px;
            margin-left: 14px;
            border-radius: 50%;
            border: 1px solid #d7dde3;
            background: #fff;
            color: #667085;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 900;
        }

        .hp-step-item.is-active .hp-step-number {
            background: var(--hp-primary);
            border-color: var(--hp-primary);
            color: #fff;
        }

        .hp-step-item.is-completed .hp-step-number {
            background: var(--hp-primary);
            border-color: var(--hp-primary);
            color: #fff;
            font-size: 0;
        }

        .hp-step-item.is-completed .hp-step-number:before {
            content: "\f00c";
            font-family: FontAwesome;
            font-size: 12px;
            line-height: 1;
        }

        .hp-step-copy strong {
            display: block;
            font-size: 13px;
            font-weight: 900;
            margin-bottom: 5px;
        }

        .hp-step-copy span {
            color: var(--hp-muted);
            font-size: 12px;
            font-weight: 600;
        }

        .hp-side-info-card {
            border-radius: 14px;
            padding: 18px;
        }

        .hp-side-info-card.is-blue {
            background: var(--hp-soft-blue);
            border-color: #d9eafe;
        }

        .hp-side-info-card i {
            color: var(--hp-blue);
            font-size: 32px;
            margin-bottom: 14px;
        }

        .hp-side-info-card strong {
            display: block;
            font-size: 17px;
            line-height: 1.25;
            margin-bottom: 8px;
        }

        .hp-side-info-card p {
            margin: 0;
            color: var(--hp-muted);
            font-size: 13px;
            line-height: 1.45;
            font-weight: 600;
        }

        .hp-footer-phone {
            color: var(--hp-text);
            text-decoration: none;
            font-variant-numeric: lining-nums tabular-nums;
            font-feature-settings: "lnum" 1, "tnum" 1;
        }

        .hp-footer-time {
            font-variant-numeric: lining-nums tabular-nums;
            font-feature-settings: "lnum" 1, "tnum" 1;
        }

        .hp-register-content {
            min-width: 0;
        }

        .hp-step-card {
            border-radius: 18px;
            padding: 42px;
        }

        .hp-step-panel {
            display: none;
        }

        .hp-step-panel.is-active {
            display: block;
        }

        .hp-step-eyebrow {
            color: var(--hp-muted);
            font-size: 14px;
            font-weight: 900;
            margin-bottom: 8px;
        }

        .hp-step-header h1 {
            font-size: 34px;
            line-height: 1.15;
            margin: 0 0 10px;
            font-weight: 900;
            letter-spacing: -0.7px;
        }

        .hp-step-header p {
            color: var(--hp-muted);
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 32px;
        }

        .hp-engagement-options {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .hp-engagement-options.is-compact {
            gap: 12px;
        }

        .hp-engagement-option {
            min-height: 118px;
            border: 1px solid var(--hp-border);
            border-radius: 10px;
            background: #fff;
            padding: 24px 24px 24px 20px;
            display: grid;
            grid-template-columns: 34px 54px 1fr;
            gap: 18px;
            align-items: center;
            cursor: pointer;
            transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
        }

        .hp-engagement-options.is-compact .hp-engagement-option {
            min-height: 92px;
            padding: 18px 20px 18px 16px;
            grid-template-columns: 34px 44px 1fr;
            gap: 14px;
        }

        .hp-engagement-option:hover,
        .hp-engagement-option.is-selected {
            border-color: var(--hp-primary);
            background: #fffaf7;
            box-shadow: 0 8px 24px rgba(239, 75, 22, .08);
        }

        .hp-engagement-option input {
            display: none;
        }

        .hp-option-radio {
            width: 24px;
            height: 24px;
            border: 2px solid #9aa4af;
            border-radius: 50%;
            display: inline-block;
            position: relative;
        }

        .hp-engagement-option input:checked + .hp-option-radio {
            border-color: var(--hp-primary);
        }

        .hp-engagement-option input:checked + .hp-option-radio:after {
            content: "";
            position: absolute;
            inset: 5px;
            border-radius: 50%;
            background: var(--hp-primary);
        }

        .hp-option-icon {
            color: var(--hp-primary);
            font-size: 35px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hp-engagement-options.is-compact .hp-option-icon {
            font-size: 28px;
        }

        .hp-option-content strong {
            display: block;
            font-size: 16px;
            font-weight: 800;
            line-height: 1.35;
            margin-bottom: 6px;
            color: var(--hp-text);
        }

        .hp-option-content small {
            display: block;
            color: var(--hp-muted);
            font-size: 13px;
            line-height: 1.5;
            font-weight: 600;
        }

        .hp-info-note {
            margin-top: 22px;
            border: 1px solid var(--hp-border);
            border-radius: 9px;
            min-height: 64px;
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 20px;
            color: var(--hp-muted);
            font-size: 14px;
            font-weight: 600;
            background: #fff;
        }

        .hp-info-note i {
            color: var(--hp-blue);
            font-size: 24px;
        }

        .hp-form-section {
            border-radius: 12px;
            padding: 22px;
            margin-bottom: 16px;
        }

        .hp-form-section.is-soft {
            background: #fffaf7;
            border-color: #fff0e8;
        }

        .hp-form-section.is-documents {
            background: #fff;
            border-color: var(--hp-border);
        }

        .hp-section-title {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
        }

        .hp-section-title i {
            color: var(--hp-primary);
            font-size: 28px;
            width: 28px;
            text-align: center;
            margin-top: 1px;
        }

        .hp-section-title strong {
            display: block;
            font-size: 18px;
            font-weight: 900;
            margin-bottom: 3px;
        }

        .hp-section-title span {
            display: block;
            color: var(--hp-muted);
            font-size: 13px;
            font-weight: 600;
            line-height: 1.45;
        }

        .hp-form-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 18px 22px;
        }

        .hp-field {
            grid-column: span 6;
        }

        .hp-field.span-3 {
            grid-column: span 3;
        }

        .hp-field.span-4 {
            grid-column: span 4;
        }

        .hp-field.span-6 {
            grid-column: span 6;
        }

        .hp-field.span-12 {
            grid-column: span 12;
        }

        .hp-label {
            display: block;
            color: #344054;
            font-size: 13px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .hp-required {
            color: var(--hp-primary);
            margin-left: 3px;
        }

        .hp-input,
        .hp-select,
        .hp-textarea {
            width: 100%;
            border: 1px solid #dfe4e8;
            border-radius: 5px;
            background: #fff;
            color: var(--hp-text);
            font-family: Raleway, Arial, sans-serif;
            font-size: 14px;
            font-weight: 600;
            outline: none;
            box-shadow: 0 1px 3px rgba(31, 45, 61, .05);
            transition: border-color .18s ease, box-shadow .18s ease;
        }

        .hp-input,
        .hp-select {
            height: 42px;
            padding: 0 12px;
        }

        .hp-textarea {
            min-height: 78px;
            resize: vertical;
            padding: 12px;
        }

        .hp-input:focus,
        .hp-select:focus,
        .hp-textarea:focus {
            border-color: var(--hp-primary);
            box-shadow: 0 0 0 3px rgba(239, 75, 22, .12);
        }

        .hp-input::placeholder,
        .hp-textarea::placeholder {
            color: #a4acb6;
        }

        .hp-password-wrap {
            position: relative;
        }

        .hp-password-wrap .hp-input {
            padding-right: 46px;
        }

        .hp-password-toggle {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            border: 0;
            background: transparent;
            padding: 4px;
            color: #344054;
            cursor: pointer;
            font-size: 16px;
        }

        .hp-range-row {
            display: grid;
            grid-template-columns: 1fr 70px;
            gap: 14px;
            align-items: center;
        }

        .hp-range {
            width: 100%;
            accent-color: var(--hp-primary);
        }

        .hp-range-value {
            background: #fff8f4;
            color: var(--hp-primary);
            border-radius: 999px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 13px;
        }

        .hp-safe-note {
            margin-top: 18px;
            background: #fff8f3;
            border-radius: 8px;
            min-height: 58px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--hp-text);
            font-size: 13px;
            font-weight: 600;
        }

        .hp-safe-note i {
            color: var(--hp-primary);
            font-size: 24px;
        }

        .hp-safe-note span {
            display: block;
            color: var(--hp-muted);
            font-weight: 600;
            margin-top: 2px;
        }

        .hp-documents-wrap {
            border: 1px solid #f0f2f5;
            background: #fffaf7;
            border-radius: 10px;
            padding: 18px;
        }

        .hp-documents-wrap .form-group {
            float: none;
            width: 100%;
            margin: 0 0 12px;
            padding: 0;
        }

        .hp-documents-wrap .row {
            margin-left: 0;
            margin-right: 0;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .hp-documents-wrap .col-sm-1,
        .hp-documents-wrap .col-sm-10 {
            float: none;
            padding-left: 0;
            padding-right: 0;
        }

        .hp-documents-wrap .col-sm-1 {
            width: auto;
            min-width: 30px;
            flex: 0 0 auto;
        }

        .hp-documents-wrap .col-sm-10 {
            width: auto;
            flex: 1 1 auto;
        }

        .hp-documents-wrap .widget,
        .hp-documents-wrap .panel {
            border-radius: 10px !important;
            border: 1px solid var(--hp-border) !important;
            box-shadow: none !important;
            overflow: hidden;
        }

        .hp-documents-wrap .widget-header,
        .hp-documents-wrap .panel-heading {
            background: #fff !important;
            border-bottom: 1px solid var(--hp-border) !important;
        }

        .hp-documents-wrap label {
            font-weight: 700;
            color: var(--hp-text);
        }

        .hp-documents-wrap input[type="checkbox"] {
            accent-color: var(--hp-primary);
        }

        .field-validation-error,
        .validation-summary-errors {
            color: #c0392b;
            font-size: 13px;
            font-weight: 800;
            margin-top: 6px;
            display: block;
        }

        .hp-step-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 28px;
        }

        .hp-button {
            min-width: 178px;
            height: 50px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 900;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-decoration: none;
        }

        .hp-button-primary {
            border: 0;
            background: var(--hp-primary);
            color: #fff;
            box-shadow: 0 8px 18px rgba(239, 75, 22, .18);
        }

        .hp-button-primary:hover {
            background: var(--hp-primary-dark);
            color: #fff;
            text-decoration: none;
        }

        .hp-button-secondary {
            border: 1px solid var(--hp-border);
            background: #fff;
            color: var(--hp-text);
        }

        .hp-button-secondary:hover {
            border-color: #cfd6de;
            color: var(--hp-text);
            text-decoration: none;
        }

        .hp-step-actions-step1 .hp-button {
            min-width: 150px;
            height: 42px;
            font-size: 14px;
            font-weight: 800;
            gap: 8px;
        }

        .hp-step-actions-step1 .hp-button-secondary {
            min-width: 210px;
        }

        .hp-register-footer {
            border-top: 1px solid var(--hp-border);
            padding: 28px 40px 36px;
        }

        .hp-footer-trust {
            max-width: 1100px;
            margin: 0 auto 28px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 34px;
        }

        .hp-footer-trust-item {
            display: grid;
            grid-template-columns: 46px 1fr;
            gap: 14px;
            align-items: center;
            color: var(--hp-muted);
            font-size: 13px;
            line-height: 1.35;
            font-weight: 600;
        }

        .hp-footer-trust-item i {
            font-size: 34px;
            color: #172033;
        }

        .hp-footer-trust-item strong {
            display: block;
            color: var(--hp-text);
            font-weight: 900;
            margin-bottom: 4px;
        }

        .hp-footer-meta {
            display: flex;
            justify-content: center;
            gap: 36px;
            color: var(--hp-muted);
            font-size: 12px;
            font-weight: 600;
        }

        .hp-footer-meta a {
            color: var(--hp-muted);
            text-decoration: none;
        }

        .show-on-provider,
        .show-on-civil {
            display: none;
        }

        .hp-info-note {
            margin: 22px 0 0;
            border: 1px solid var(--hp-border);
            border-radius: 9px;
            min-height: 52px;
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 20px;
            color: var(--hp-muted);
            font-size: 14px;
            font-weight: 600;
            background: #fff;
        }

            .hp-info-note i {
                color: var(--hp-blue);
                font-size: 22px;
                flex-shrink: 0;
            }

        .hp-registration-flow {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--hp-border);
        }

        .hp-registration-flow-title {
            text-align: center;
            font-size: 18px;
            font-weight: 900;
            color: var(--hp-text);
            margin-bottom: 18px;
        }

        .hp-flow-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        .hp-flow-card {
            border-radius: 14px;
            padding: 20px 22px;
            border: 1px solid var(--hp-border);
        }

        .hp-flow-card.is-phase1 {
            background: var(--hp-soft-orange);
            border-color: #f3e0d4;
        }

        .hp-flow-card.is-phase2 {
            background: var(--hp-soft-blue);
            border-color: #d9eafe;
        }

        .hp-flow-card-head {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 16px;
        }

        .hp-flow-card-badge {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 900;
            flex-shrink: 0;
            color: #fff;
        }

        .is-phase1 .hp-flow-card-badge { background: var(--hp-primary); }
        .is-phase2 .hp-flow-card-badge { background: var(--hp-blue); }

        .hp-flow-card-head-text .hp-flow-kicker {
            font-size: 11px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: .6px;
            margin-bottom: 2px;
            display: block;
        }

        .is-phase1 .hp-flow-kicker { color: var(--hp-primary); }
        .is-phase2 .hp-flow-kicker { color: var(--hp-blue); }

        .hp-flow-card-head-text strong {
            display: block;
            font-size: 14px;
            font-weight: 900;
            line-height: 1.25;
            color: var(--hp-text);
        }

        .hp-flow-card-head-text small {
            color: var(--hp-muted);
            font-size: 12px;
            font-weight: 600;
            line-height: 1.45;
        }

        .hp-flow-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .hp-flow-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 600;
            color: var(--hp-muted);
        }

        .is-phase1 .hp-flow-list li i { color: var(--hp-primary); font-size: 14px; flex-shrink: 0; }
        .is-phase2 .hp-flow-list li i { color: var(--hp-blue); font-size: 14px; flex-shrink: 0; }

        .hp-flow-trust-note {
            margin-top: 22px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 14px;
            color: var(--hp-muted);
            font-size: 14px;
            font-weight: 600;
            line-height: 1.55;
            background: #f7f9fc;
            border: 1px solid var(--hp-border);
            border-radius: 12px;
            padding: 16px 22px;
        }

        .hp-flow-trust-note i {
            color: var(--hp-blue);
            font-size: 22px;
            flex-shrink: 0;
        }

        .hp-flow-trust-note strong {
            display: block;
            margin-bottom: 2px;
            color: var(--hp-text);
            font-size: 15px;
            font-weight: 800;
        }

        @media (max-width: 1050px) {
            .hp-register-layout {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .hp-register-sidebar {
                order: 2;
            }

            .hp-register-content {
                order: 1;
            }
        }

        @media (max-width: 760px) {
            .hp-register-header {
                height: auto;
                padding: 20px;
                flex-direction: column;
                gap: 16px;
            }

            .hp-register-contact {
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px 20px;
                white-space: normal;
            }

            .hp-register-layout {
                padding: 20px;
            }

            .hp-step-card {
                padding: 26px 20px;
            }

            .hp-step-header h1 {
                font-size: 28px;
            }

            .hp-engagement-option {
                grid-template-columns: 32px 44px 1fr;
                padding: 18px;
            }

            .hp-form-grid {
                grid-template-columns: 1fr;
            }

            .hp-field,
            .hp-field.span-3,
            .hp-field.span-4,
            .hp-field.span-6,
            .hp-field.span-12 {
                grid-column: span 1;
            }

            .hp-step-actions {
                flex-direction: column-reverse;
                gap: 14px;
                align-items: stretch;
            }

            .hp-button {
                width: 100%;
            }

            .hp-footer-trust {
                grid-template-columns: 1fr;
            }

            .hp-footer-meta {
                flex-wrap: wrap;
                gap: 14px 24px;
            }

        }

/* Extracted from Views/UserSetup/Skills.cshtml */

        :root {
            --hp-primary: #ca531a;
            --hp-primary-dark: #9c3f09;
            --hp-blue: #086ec6;
            --hp-text: #172033;
            --hp-muted: #667085;
            --hp-border: #e8edf2;
            --hp-bg: #fbfaf8;
            --hp-soft-orange: #fff4ee;
            --hp-soft-blue: #f1f8ff;
            --hp-card: #ffffff;
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            min-height: 100%;
        }

        body.hp-setup-page {
            min-height: 100vh;
            font-family: Raleway, Arial, sans-serif;
            background: #fff;
            color: var(--hp-text);
        }

        .hp-setup-shell {
            min-height: 100vh;
            background: #fff;
        }

        .hp-setup-header {
            height: 78px;
            padding: 0 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--hp-border);
            background: #fff;
        }

        .hp-setup-header-logo img {
            height: 52px;
            width: auto;
            display: block;
        }

        .hp-setup-contact {
            display: flex;
            align-items: center;
            gap: 28px;
            color: var(--hp-muted);
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
            font-variant-numeric: tabular-nums;
        }

        .hp-setup-contact span {
            display: inline-flex;
            align-items: center;
            font-size: 13px;
            line-height: 1;
        }

        .hp-contact-phone {
            font-variant-numeric: lining-nums tabular-nums;
            font-feature-settings: "lnum" 1, "tnum" 1;
        }

        .hp-setup-contact i {
            color: var(--hp-primary);
            margin-right: 7px;
        }

        .hp-setup-contact .hp-contact-logout {
            color: inherit;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            line-height: 1;
        }

        .hp-setup-contact .hp-contact-logout:hover,
        .hp-setup-contact .hp-contact-logout:focus {
            color: var(--hp-text);
            text-decoration: none;
        }

        .hp-setup-layout {
            display: grid;
            grid-template-columns: 300px minmax(0, 1fr);
            gap: 56px;
            max-width: 1220px;
            margin: 0 auto;
            padding: 28px 40px 72px;
        }

        .hp-setup-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .hp-sidebar-card,
        .hp-side-info-card,
        .hp-content-card {
            background: #fff;
            border: 1px solid var(--hp-border);
            box-shadow: 0 8px 26px rgba(31, 45, 61, .04);
        }

        .hp-sidebar-card {
            border-radius: 16px;
            padding: 22px 18px;
        }

        .hp-sidebar-title {
            font-size: 18px;
            font-weight: 900;
            margin: 0 0 12px;
        }

        .hp-phase-text {
            font-size: 13px;
            font-weight: 900;
            margin-bottom: 10px;
        }

        .hp-progress-track {
            width: 100%;
            height: 6px;
            border-radius: 999px;
            background: #e6e9ed;
            overflow: hidden;
            margin-bottom: 24px;
        }

        .hp-progress-fill {
            width: 50%;
            height: 100%;
            background: var(--hp-primary);
            border-radius: inherit;
        }

        .hp-phase-box {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid #f2e6dd;
            margin-bottom: 22px;
        }

        .hp-phase-box-head {
            background: var(--hp-soft-orange);
            padding: 18px;
        }

        .hp-phase-kicker {
            color: var(--hp-primary);
            font-size: 13px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .hp-phase-box-head strong {
            display: block;
            font-size: 18px;
            margin-bottom: 8px;
        }

        .hp-phase-box-head p {
            margin: 0;
            color: var(--hp-muted);
            line-height: 1.45;
            font-size: 13px;
            font-weight: 600;
        }

        .hp-step-list {
            position: relative;
            padding: 18px 0 4px;
        }

        .hp-step-list:before {
            content: "";
            position: absolute;
            left: 29px;
            top: 18px;
            bottom: 18px;
            width: 1px;
            background: #e5e9ee;
        }

        .hp-step-item {
            position: relative;
            display: grid;
            grid-template-columns: 58px 1fr;
            min-height: 68px;
        }

        .hp-step-number {
            position: relative;
            z-index: 1;
            width: 30px;
            height: 30px;
            margin-left: 14px;
            border-radius: 50%;
            border: 1px solid #d7dde3;
            background: #fff;
            color: #667085;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 900;
        }

        .hp-step-item.is-done .hp-step-number {
            background: var(--hp-primary);
            border-color: var(--hp-primary);
            color: #fff;
        }

        .hp-step-item.is-active .hp-step-number {
            background: var(--hp-primary);
            border-color: var(--hp-primary);
            color: #fff;
            box-shadow: 0 0 0 4px rgba(239, 75, 22, .12);
        }

        .hp-step-copy strong {
            display: block;
            font-size: 13px;
            font-weight: 900;
            margin-bottom: 5px;
        }

        .hp-step-copy span {
            color: var(--hp-muted);
            font-size: 12px;
            font-weight: 600;
        }

        .hp-side-info-card {
            border-radius: 14px;
            padding: 18px;
        }

        .hp-side-info-card.is-blue {
            background: var(--hp-soft-blue);
            border-color: #d9eafe;
        }

        .hp-side-info-card i {
            color: var(--hp-blue);
            font-size: 32px;
            margin-bottom: 14px;
        }

        .hp-side-info-card strong {
            display: block;
            font-size: 17px;
            line-height: 1.25;
            margin-bottom: 8px;
        }

        .hp-side-info-card p {
            margin: 0;
            color: var(--hp-muted);
            font-size: 13px;
            line-height: 1.45;
            font-weight: 600;
        }

        .hp-footer-phone,
        .hp-footer-time {
            font-variant-numeric: lining-nums tabular-nums;
            font-feature-settings: "lnum" 1, "tnum" 1;
        }

        .hp-footer-phone {
            color: var(--hp-text);
            text-decoration: none;
        }

        .hp-setup-content {
            min-width: 0;
        }

        .hp-content-card {
            border-radius: 18px;
            padding: 42px;
        }

        .hp-step-eyebrow {
            color: var(--hp-muted);
            font-size: 14px;
            font-weight: 900;
            margin-bottom: 8px;
        }

        .hp-step-header h1 {
            font-size: 34px;
            line-height: 1.15;
            margin: 0 0 10px;
            font-weight: 900;
            letter-spacing: -0.7px;
        }

        .hp-step-header p {
            color: var(--hp-muted);
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 32px;
        }

        .hp-info-note {
            margin-bottom: 24px;
            border: 1px solid var(--hp-border);
            border-radius: 9px;
            min-height: 64px;
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 0 20px;
            color: var(--hp-muted);
            font-size: 14px;
            font-weight: 600;
            background: #fff;
        }

        .hp-info-note i {
            color: var(--hp-blue);
            font-size: 24px;
        }

        .hp-skill-nav-actions {
            display: flex;
            justify-content: flex-start;
            margin-bottom: 18px;
        }

        .hp-skill-nav-back {
            border: 1px solid var(--hp-border);
            background: #fff;
            color: var(--hp-text);
            border-radius: 5px;
            min-height: 42px;
            padding: 0 16px;
            font-size: 14px;
            font-weight: 900;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hp-skill-nav-back:hover {
            border-color: #cfd6de;
            color: var(--hp-text);
            text-decoration: none;
        }

        .hp-content-card .hp-step-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 28px;
        }

        .hp-content-card .hp-button {
            min-width: 178px;
            height: 50px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 900;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-decoration: none;
        }

        .hp-content-card .hp-button-primary {
            border: 0;
            background: var(--hp-primary);
            color: #fff;
            box-shadow: 0 8px 18px rgba(239, 75, 22, .18);
        }

        .hp-content-card .hp-button-primary:hover {
            background: var(--hp-primary-dark);
            color: #fff;
            text-decoration: none;
        }

        .hp-content-card .hp-button-secondary {
            border: 1px solid var(--hp-border);
            background: #fff;
            color: var(--hp-text);
        }

        .hp-content-card .hp-button-secondary:hover {
            border-color: #cfd6de;
            color: var(--hp-text);
            text-decoration: none;
        }

        .hp-content-card .hp-step-actions-step1 .hp-button {
            min-width: 150px;
            height: 42px;
            font-size: 14px;
            font-weight: 800;
            gap: 8px;
        }

        /*
            Styling f�r bestehende SkillTabsContent-Partial.
            Die Partial bleibt fachlich unver�ndert, wird aber optisch an den neuen Stil gezogen.
        */

        .hp-content-card .nav-tabs {
            border-bottom: 1px solid var(--hp-border);
            margin-bottom: 24px;
        }

        .hp-content-card .nav-tabs > li > a {
            border: 0 !important;
            color: var(--hp-muted);
            font-weight: 900;
            border-radius: 8px 8px 0 0;
            padding: 12px 18px;
        }

        .hp-content-card .nav-tabs > li.active > a,
        .hp-content-card .nav-tabs > li.active > a:hover,
        .hp-content-card .nav-tabs > li.active > a:focus {
            color: var(--hp-primary);
            background: #fff8f4;
            border: 0 !important;
            box-shadow: inset 0 -3px 0 var(--hp-primary);
        }

        .hp-content-card .tab-content {
            background: #fff;
        }

        .hp-content-card .widget {
            border: 1px solid var(--hp-border);
            border-radius: 12px;
            box-shadow: 0 8px 26px rgba(31, 45, 61, .035);
            overflow: hidden;
        }

        .hp-content-card .widget-header {
            background: #fffaf7;
            border-bottom: 1px solid #fff0e8;
        }

        .hp-content-card .widget-title {
            color: var(--hp-text);
            font-weight: 900;
        }

        .hp-content-card .btn-primary,
        .hp-content-card .btn-success,
        .hp-content-card input[type="submit"].btn-primary,
        .hp-content-card button.btn-primary {
            background: var(--hp-primary) !important;
            border-color: var(--hp-primary) !important;
            color: #fff !important;
            border-radius: 5px !important;
            min-height: 44px;
            font-weight: 900;
            box-shadow: 0 8px 18px rgba(202, 83, 26, .18);
        }

        .hp-content-card .btn-primary:hover,
        .hp-content-card .btn-success:hover,
        .hp-content-card input[type="submit"].btn-primary:hover,
        .hp-content-card button.btn-primary:hover {
            background: var(--hp-primary-dark) !important;
            border-color: var(--hp-primary-dark) !important;
        }

        .hp-content-card .btn-default,
        .hp-content-card .btn-secondary {
            border: 1px solid var(--hp-border) !important;
            background: #fff !important;
            color: var(--hp-text) !important;
            border-radius: 5px !important;
            min-height: 44px;
            font-weight: 900;
        }

        .hp-content-card input[type="text"],
        .hp-content-card input[type="search"],
        .hp-content-card select,
        .hp-content-card textarea,
        .hp-content-card .form-control {
            border: 1px solid #dfe4e8;
            border-radius: 5px;
            box-shadow: 0 1px 3px rgba(31, 45, 61, .05);
            font-family: Raleway, Arial, sans-serif;
            font-weight: 600;
        }

        .hp-content-card input[type="text"]:focus,
        .hp-content-card input[type="search"]:focus,
        .hp-content-card select:focus,
        .hp-content-card textarea:focus,
        .hp-content-card .form-control:focus {
            border-color: var(--hp-primary);
            box-shadow: 0 0 0 3px rgba(239, 75, 22, .12);
        }

        .hp-content-card label {
            font-weight: 800;
            color: var(--hp-text);
        }

        .hp-content-card .skillpanel-body .checkbox input.skillcheck + label,
        .hp-content-card .skillpanel-body .checkbox input.katSkillcheck + label {
            font-size: 14px;
            font-weight: 600;
            line-height: 1.4;
            color: var(--hp-muted);
            position: relative;
            top: -1px;
        }

        .hp-content-card input[type="checkbox"].skillcheck,
        .hp-content-card input[type="checkbox"].katSkillcheck {
            accent-color: var(--hp-primary);
        }

        .hp-register-footer {
            border-top: 1px solid var(--hp-border);
            padding: 28px 40px 36px;
        }

        .hp-footer-trust {
            max-width: 1100px;
            margin: 0 auto 28px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 34px;
        }

        .hp-footer-trust-item {
            display: grid;
            grid-template-columns: 46px 1fr;
            gap: 14px;
            align-items: center;
            color: var(--hp-muted);
            font-size: 13px;
            line-height: 1.35;
            font-weight: 600;
        }

        .hp-footer-trust-item i {
            font-size: 34px;
            color: #172033;
        }

        .hp-footer-trust-item strong {
            display: block;
            color: var(--hp-text);
            font-weight: 900;
            margin-bottom: 4px;
        }

        .hp-footer-meta {
            display: flex;
            justify-content: center;
            gap: 36px;
            color: var(--hp-muted);
            font-size: 12px;
            font-weight: 600;
        }

        .hp-footer-meta a {
            color: var(--hp-muted);
            text-decoration: none;
        }

        #loadingPanel {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(23, 32, 51, .48);
            z-index: 9999;
            text-align: center;
            padding-top: 20%;
            color: #fff;
            font-weight: 900;
        }

        .spinner {
            margin: auto auto 14px;
            border: 6px solid #f3f3f3;
            border-top: 6px solid var(--hp-primary);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @media (max-width: 1050px) {
            .hp-setup-layout {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .hp-setup-sidebar {
                order: 2;
            }

            .hp-setup-content {
                order: 1;
            }
        }

        @media (max-width: 760px) {
            .hp-setup-header {
                height: auto;
                padding: 20px;
                flex-direction: column;
                gap: 16px;
            }

            .hp-setup-contact {
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px 20px;
                white-space: normal;
            }

            .hp-setup-layout {
                padding: 20px;
            }

            .hp-content-card {
                padding: 26px 20px;
            }

            .hp-step-header h1 {
                font-size: 28px;
            }

            .hp-footer-trust {
                grid-template-columns: 1fr;
            }

            .hp-footer-meta {
                flex-wrap: wrap;
                gap: 14px 24px;
            }
        }

/* Complete: collision fixes to preserve original look */
body.hp-setup-page .hp-content-card #btnChangeOrganisation.btn,
body.hp-setup-page .hp-content-card #btnChangeOrganisation.btn.btn-link {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--hp-primary-dark) !important;
    font-weight: 400 !important;
    padding: 0 !important;
    text-decoration: none;
}

body.hp-setup-page .hp-content-card #btnChangeOrganisation.btn:hover,
body.hp-setup-page .hp-content-card #btnChangeOrganisation.btn:focus {
    color: var(--hp-primary-dark) !important;
    text-decoration: underline;
}

body.hp-setup-page .hp-content-card .dxichTextCellSys,
body.hp-setup-page .hp-content-card .dxichTextCellSys label,
body.hp-setup-page .hp-content-card .dxichTextCellSys span,
body.hp-setup-page .hp-membership-card .orga-document-item.required .dxichTextCellSys,
body.hp-setup-page .hp-membership-card .orga-document-item.required label,
body.hp-setup-page .hp-membership-card .orga-document-item.required span {
    font-weight: 600 !important;
}

/* Skills: keep tab/article typography consistent with setup subheader */
body.hp-setup-page .hp-content-card .nav-tabs > li > a,
body.hp-setup-page .hp-content-card .accordion-header,
body.hp-setup-page .hp-content-card .accordion-header span,
body.hp-setup-page .hp-content-card .accordion-body,
body.hp-setup-page .hp-content-card .skill-grid label {
    font-family: Raleway, Arial, sans-serif !important;
}

body.hp-setup-page .hp-content-card .nav-tabs > li > a {
    font-weight: 500 !important;
}

/* Final skills typography override (must win against later duplicated blocks) */
body.hp-setup-page .hp-content-card .nav-tabs > li > a,
body.hp-setup-page .hp-content-card .accordion-header,
body.hp-setup-page .hp-content-card .accordion-header span {
    font-family: Raleway, Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}


:root {
    --hp-primary: #ca531a;
    --hp-primary-dark: #9c3f09;
    --hp-blue: #086ec6;
    --hp-text: #172033;
    --hp-muted: #667085;
    --hp-border: #e8edf2;
    --hp-bg: #fbfaf8;
    --hp-soft-orange: #fff4ee;
    --hp-soft-blue: #f1f8ff;
    --hp-card: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

    body.hp-setup-page {
        min-height: 100vh;
        font-family: Raleway, Arial, sans-serif;
        background: #fff;
        color: var(--hp-text);
    }

.hp-setup-shell {
    min-height: 100vh;
    background: #fff;
}

.hp-setup-header {
    height: 78px;
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--hp-border);
    background: #fff;
}

.hp-setup-header-logo img {
    height: 52px;
    width: auto;
    display: block;
}

.hp-setup-contact {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--hp-muted);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

    .hp-setup-contact span {
        display: inline-flex;
        align-items: center;
        font-size: 13px;
        line-height: 1;
    }

.hp-contact-phone {
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
}

.hp-setup-contact i {
    color: var(--hp-primary);
    margin-right: 7px;
}

.hp-setup-contact .hp-contact-logout {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

    .hp-setup-contact .hp-contact-logout:hover,
    .hp-setup-contact .hp-contact-logout:focus {
        color: var(--hp-text);
        text-decoration: none;
    }

.hp-setup-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 56px;
    max-width: 1220px;
    margin: 0 auto;
    padding: 28px 40px 72px;
}

.hp-setup-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hp-sidebar-card,
.hp-side-info-card,
.hp-content-card {
    background: #fff;
    border: 1px solid var(--hp-border);
    box-shadow: 0 8px 26px rgba(31, 45, 61, .04);
}

.hp-sidebar-card {
    border-radius: 16px;
    padding: 22px 18px;
}

.hp-sidebar-title {
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 12px;
}

.hp-phase-text {
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 10px;
}

.hp-progress-track {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: #e6e9ed;
    overflow: hidden;
    margin-bottom: 24px;
}

.hp-progress-fill {
    width: 50%;
    height: 100%;
    background: var(--hp-primary);
    border-radius: inherit;
}

.hp-phase-box {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f2e6dd;
    margin-bottom: 22px;
}

.hp-phase-box-head {
    background: var(--hp-soft-orange);
    padding: 18px;
}

.hp-phase-kicker {
    color: var(--hp-primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hp-phase-box-head strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.hp-phase-box-head p {
    margin: 0;
    color: var(--hp-muted);
    line-height: 1.45;
    font-size: 13px;
    font-weight: 600;
}

.hp-step-list {
    position: relative;
    padding: 18px 0 4px;
}

    .hp-step-list:before {
        content: "";
        position: absolute;
        left: 29px;
        top: 18px;
        bottom: 18px;
        width: 1px;
        background: #e5e9ee;
    }

.hp-step-item {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    min-height: 68px;
}

.hp-step-number {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    margin-left: 14px;
    border-radius: 50%;
    border: 1px solid #d7dde3;
    background: #fff;
    color: #667085;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.hp-step-item.is-done .hp-step-number {
    background: var(--hp-primary);
    border-color: var(--hp-primary);
    color: #fff;
}

.hp-step-item.is-active .hp-step-number {
    background: var(--hp-primary);
    border-color: var(--hp-primary);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(239, 75, 22, .12);
}

.hp-step-copy strong {
    display: block;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 5px;
}

.hp-step-copy span {
    color: var(--hp-muted);
    font-size: 12px;
    font-weight: 600;
}

.hp-side-info-card {
    border-radius: 14px;
    padding: 18px;
}

    .hp-side-info-card.is-blue {
        background: var(--hp-soft-blue);
        border-color: #d9eafe;
    }

    .hp-side-info-card i {
        color: var(--hp-blue);
        font-size: 32px;
        margin-bottom: 14px;
    }

    .hp-side-info-card strong {
        display: block;
        font-size: 17px;
        line-height: 1.25;
        margin-bottom: 8px;
    }

    .hp-side-info-card p {
        margin: 0;
        color: var(--hp-muted);
        font-size: 13px;
        line-height: 1.45;
        font-weight: 600;
    }

.hp-footer-phone,
.hp-footer-time {
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
}

.hp-footer-phone {
    color: var(--hp-text);
    text-decoration: none;
}

.hp-setup-content {
    min-width: 0;
}

.hp-content-card {
    border-radius: 18px;
    padding: 42px;
}

.hp-step-eyebrow {
    color: var(--hp-muted);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.hp-step-header h1 {
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: -0.7px;
}

.hp-step-header p {
    color: var(--hp-muted);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 32px;
}

.hp-info-note {
    margin-bottom: 24px;
    border: 1px solid var(--hp-border);
    border-radius: 9px;
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
    color: var(--hp-muted);
    font-size: 14px;
    font-weight: 600;
    background: #fff;
}

    .hp-info-note i {
        color: var(--hp-blue);
        font-size: 24px;
    }

.hp-skill-nav-actions {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.hp-skill-nav-back {
    border: 1px solid var(--hp-border);
    background: #fff;
    color: var(--hp-text);
    border-radius: 5px;
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .hp-skill-nav-back:hover {
        border-color: #cfd6de;
        color: var(--hp-text);
        text-decoration: none;
    }

.hp-content-card .hp-step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
}

.hp-content-card .hp-button {
    min-width: 178px;
    height: 50px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

.hp-content-card .hp-button-primary {
    border: 0;
    background: var(--hp-primary);
    color: #fff;
    box-shadow: 0 8px 18px rgba(239, 75, 22, .18);
}

    .hp-content-card .hp-button-primary:hover {
        background: var(--hp-primary-dark);
        color: #fff;
        text-decoration: none;
    }

.hp-content-card .hp-button-secondary {
    border: 1px solid var(--hp-border);
    background: #fff;
    color: var(--hp-text);
}

    .hp-content-card .hp-button-secondary:hover {
        border-color: #cfd6de;
        color: var(--hp-text);
        text-decoration: none;
    }

.hp-content-card .hp-step-actions-step1 .hp-button {
    min-width: 150px;
    height: 42px;
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
}

/*
            Styling f�r bestehende SkillTabsContent-Partial.
            Die Partial bleibt fachlich unver�ndert, wird aber optisch an den neuen Stil gezogen.
        */

.hp-content-card .nav-tabs {
    border-bottom: 1px solid var(--hp-border);
    margin-bottom: 24px;
}

    .hp-content-card .nav-tabs > li > a {
        border: 0 !important;
        color: var(--hp-muted);
        font-weight: 900;
        border-radius: 8px 8px 0 0;
        padding: 12px 18px;
    }

    .hp-content-card .nav-tabs > li.active > a,
    .hp-content-card .nav-tabs > li.active > a:hover,
    .hp-content-card .nav-tabs > li.active > a:focus {
        color: var(--hp-primary);
        background: #fff8f4;
        border: 0 !important;
        box-shadow: inset 0 -3px 0 var(--hp-primary);
    }

.hp-content-card .tab-content {
    background: #fff;
}

.hp-content-card .widget {
    border: 1px solid var(--hp-border);
    border-radius: 12px;
    box-shadow: 0 8px 26px rgba(31, 45, 61, .035);
    overflow: hidden;
}

.hp-content-card .widget-header {
    background: #fffaf7;
    border-bottom: 1px solid #fff0e8;
}

.hp-content-card .widget-title {
    color: var(--hp-text);
    font-weight: 900;
}

.hp-content-card .btn-primary,
.hp-content-card .btn-success,
.hp-content-card input[type="submit"].btn-primary,
.hp-content-card button.btn-primary {
    background: var(--hp-primary) !important;
    border-color: var(--hp-primary) !important;
    color: #fff !important;
    border-radius: 5px !important;
    min-height: 44px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(202, 83, 26, .18);
}

    .hp-content-card .btn-primary:hover,
    .hp-content-card .btn-success:hover,
    .hp-content-card input[type="submit"].btn-primary:hover,
    .hp-content-card button.btn-primary:hover {
        background: var(--hp-primary-dark) !important;
        border-color: var(--hp-primary-dark) !important;
    }

.hp-content-card .btn-default,
.hp-content-card .btn-secondary {
    border: 1px solid var(--hp-border) !important;
    background: #fff !important;
    color: var(--hp-text) !important;
    border-radius: 5px !important;
    min-height: 44px;
    font-weight: 900;
}

.hp-content-card input[type="text"],
.hp-content-card input[type="search"],
.hp-content-card select,
.hp-content-card textarea,
.hp-content-card .form-control {
    border: 1px solid #dfe4e8;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(31, 45, 61, .05);
    font-family: Raleway, Arial, sans-serif;
    font-weight: 600;
}

    .hp-content-card input[type="text"]:focus,
    .hp-content-card input[type="search"]:focus,
    .hp-content-card select:focus,
    .hp-content-card textarea:focus,
    .hp-content-card .form-control:focus {
        border-color: var(--hp-primary);
        box-shadow: 0 0 0 3px rgba(239, 75, 22, .12);
    }

.hp-content-card label {
    font-weight: 800;
    color: var(--hp-text);
}

.hp-content-card .skillpanel-body .checkbox input.skillcheck + label,
.hp-content-card .skillpanel-body .checkbox input.katSkillcheck + label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--hp-muted);
    position: relative;
    top: -1px;
}

.hp-content-card input[type="checkbox"].skillcheck,
.hp-content-card input[type="checkbox"].katSkillcheck {
    accent-color: var(--hp-primary);
}

.hp-register-footer {
    border-top: 1px solid var(--hp-border);
    padding: 28px 40px 36px;
}

.hp-footer-trust {
    max-width: 1100px;
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.hp-footer-trust-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    color: var(--hp-muted);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
}

    .hp-footer-trust-item i {
        font-size: 34px;
        color: #172033;
    }

    .hp-footer-trust-item strong {
        display: block;
        color: var(--hp-text);
        font-weight: 900;
        margin-bottom: 4px;
    }

.hp-footer-meta {
    display: flex;
    justify-content: center;
    gap: 36px;
    color: var(--hp-muted);
    font-size: 12px;
    font-weight: 600;
}

    .hp-footer-meta a {
        color: var(--hp-muted);
        text-decoration: none;
    }

#loadingPanel {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(23, 32, 51, .48);
    z-index: 9999;
    text-align: center;
    padding-top: 20%;
    color: #fff;
    font-weight: 900;
}

.spinner {
    margin: auto auto 14px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--hp-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1050px) {
    .hp-setup-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hp-setup-sidebar {
        order: 2;
    }

    .hp-setup-content {
        order: 1;
    }
}

@media (max-width: 760px) {
    .hp-setup-header {
        height: auto;
        padding: 20px;
        flex-direction: column;
        gap: 16px;
    }

    .hp-setup-contact {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
        white-space: normal;
    }

    .hp-setup-layout {
        padding: 20px;
    }

    .hp-content-card {
        padding: 26px 20px;
    }

    .hp-step-header h1 {
        font-size: 28px;
    }

    .hp-footer-trust {
        grid-template-columns: 1fr;
    }

    .hp-footer-meta {
        flex-wrap: wrap;
        gap: 14px 24px;
    }
}

:root {
    --hp-primary: #ca531a;
    --hp-primary-dark: #9c3f09;
    --hp-blue: #086ec6;
    --hp-text: #172033;
    --hp-muted: #667085;
    --hp-border: #e8edf2;
    --hp-bg: #fbfaf8;
    --hp-soft-orange: #fff4ee;
    --hp-soft-blue: #f1f8ff;
    --hp-card: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

    body.hp-setup-page {
        min-height: 100vh;
        font-family: Raleway, Arial, sans-serif;
        background: #fff;
        color: var(--hp-text);
    }

.hp-setup-shell {
    min-height: 100vh;
    background: #fff;
}

.hp-setup-header {
    height: 78px;
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--hp-border);
    background: #fff;
}

.hp-setup-header-logo img {
    height: 52px;
    width: auto;
    display: block;
}

.hp-setup-contact {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--hp-muted);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

    .hp-setup-contact .hp-contact-logout {
        color: inherit;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        line-height: 1;
    }

        .hp-setup-contact .hp-contact-logout:hover,
        .hp-setup-contact .hp-contact-logout:focus {
            color: var(--hp-text);
            text-decoration: none;
        }

    .hp-setup-contact i {
        color: var(--hp-primary);
        margin-right: 7px;
    }

.hp-setup-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 56px;
    max-width: 1220px;
    margin: 0 auto;
    padding: 28px 40px 72px;
}

.hp-setup-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hp-sidebar-card,
.hp-side-info-card,
.hp-content-card {
    background: #fff;
    border: 1px solid var(--hp-border);
    box-shadow: 0 8px 26px rgba(31, 45, 61, .04);
}

.hp-sidebar-card {
    border-radius: 16px;
    padding: 22px 18px;
}

.hp-sidebar-title {
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 12px;
}

.hp-phase-text {
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 10px;
}

.hp-progress-track {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: #e6e9ed;
    overflow: hidden;
    margin-bottom: 24px;
}

.hp-progress-fill {
    width: 66.66%;
    height: 100%;
    background: var(--hp-primary);
    border-radius: inherit;
}

.hp-phase-box {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f2e6dd;
    margin-bottom: 22px;
}

.hp-phase-box-head {
    background: var(--hp-soft-orange);
    padding: 18px;
}

.hp-phase-kicker {
    color: var(--hp-primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hp-phase-box-head strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.hp-phase-box-head p {
    margin: 0;
    color: var(--hp-muted);
    line-height: 1.45;
    font-size: 13px;
    font-weight: 600;
}

.hp-step-list {
    position: relative;
    padding: 18px 0 4px;
}

    .hp-step-list:before {
        content: "";
        position: absolute;
        left: 29px;
        top: 18px;
        bottom: 18px;
        width: 1px;
        background: #e5e9ee;
    }

.hp-step-item {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    min-height: 68px;
}

.hp-step-number {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    margin-left: 14px;
    border-radius: 50%;
    border: 1px solid #d7dde3;
    background: #fff;
    color: #667085;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.hp-step-item.is-done .hp-step-number {
    background: var(--hp-primary);
    border-color: var(--hp-primary);
    color: #fff;
    font-size: 0;
}

    .hp-step-item.is-done .hp-step-number:before {
        content: "\f00c";
        font-family: FontAwesome;
        font-size: 12px;
        line-height: 1;
    }

    .hp-step-item.is-done .hp-step-number i {
        display: none;
    }

.hp-step-item.is-active .hp-step-number {
    background: var(--hp-primary);
    border-color: var(--hp-primary);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(202, 83, 26, .12);
}

.hp-step-copy strong {
    display: block;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 5px;
}

.hp-step-copy span {
    color: var(--hp-muted);
    font-size: 12px;
    font-weight: 600;
}

.hp-side-info-card {
    border-radius: 14px;
    padding: 18px;
}

    .hp-side-info-card.is-blue {
        background: var(--hp-soft-blue);
        border-color: #d9eafe;
    }

    .hp-side-info-card i {
        color: var(--hp-blue);
        font-size: 32px;
        margin-bottom: 14px;
    }

    .hp-side-info-card strong {
        display: block;
        font-size: 17px;
        line-height: 1.25;
        margin-bottom: 8px;
    }

    .hp-side-info-card p {
        margin: 0;
        color: var(--hp-muted);
        font-size: 13px;
        line-height: 1.45;
        font-weight: 600;
    }

    .hp-side-info-card .hp-footer-phone {
        color: var(--hp-muted);
        text-decoration: none;
        font-weight: 600;
    }

        .hp-side-info-card .hp-footer-phone:hover {
            color: var(--hp-text);
            text-decoration: none;
        }

    .hp-side-info-card .hp-footer-time {
        color: var(--hp-muted);
        font-weight: 600;
    }

.hp-setup-content {
    min-width: 0;
}

.hp-content-card {
    border-radius: 18px;
    padding: 42px;
}

.hp-step-eyebrow {
    color: var(--hp-muted);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.hp-step-header h1 {
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: -0.7px;
}

.hp-step-header p {
    color: var(--hp-muted);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 32px;
}

.hp-info-note {
    margin-bottom: 24px;
    border: 1px solid var(--hp-border);
    border-radius: 9px;
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    color: var(--hp-muted);
    font-size: 14px;
    font-weight: 600;
    background: #fff;
}

    .hp-info-note i {
        color: var(--hp-blue);
        font-size: 24px;
    }

.hp-content-card .hp-step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
}

.hp-content-card .hp-button {
    min-width: 178px;
    height: 50px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

.hp-content-card .hp-button-primary {
    border: 0;
    background: var(--hp-primary);
    color: #fff;
    box-shadow: 0 8px 18px rgba(202, 83, 26, .18);
}

    .hp-content-card .hp-button-primary:hover {
        background: var(--hp-primary-dark);
        color: #fff;
        text-decoration: none;
    }

.hp-content-card .hp-button-secondary {
    border: 1px solid var(--hp-border);
    background: #fff;
    color: var(--hp-text);
}

    .hp-content-card .hp-button-secondary:hover {
        border-color: #cfd6de;
        color: var(--hp-text);
        text-decoration: none;
    }

.hp-content-card .hp-step-actions-step1 .hp-button {
    min-width: 150px;
    height: 42px;
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
}

/*
            UI-Anpassung f�r das bestehende AvailabilityWidget.
            Die eigentliche Logik, IDs, Formulare und Kalender bleiben unangetastet.
        */

.hp-content-card .wrap {
    min-width: 0;
}

.hp-content-card .widget,
.hp-content-card .panel,
.hp-content-card .box {
    border: 1px solid var(--hp-border);
    border-radius: 12px;
    box-shadow: 0 8px 26px rgba(31, 45, 61, .035);
    overflow: hidden;
}

.hp-content-card .widget-header,
.hp-content-card .panel-heading {
    background: #fffaf7 !important;
    border-bottom: 1px solid #fff0e8 !important;
}

.hp-content-card .widget-title,
.hp-content-card .panel-title {
    color: var(--hp-text);
    font-weight: 900;
}

.hp-content-card #availabilityHelpCollapse .panel-body {
    font-size: 13px;
    line-height: 1.5;
    color: var(--hp-muted);
    font-weight: 600;
}

    .hp-content-card #availabilityHelpCollapse .panel-body p {
        margin: 0 0 8px;
    }

    .hp-content-card #availabilityHelpCollapse .panel-body b,
    .hp-content-card #availabilityHelpCollapse .panel-body strong {
        color: var(--hp-text);
        font-weight: 800;
    }

.hp-content-card label {
    font-weight: 800;
    color: var(--hp-text);
}

.hp-content-card .form-control,
.hp-content-card input[type="text"],
.hp-content-card input[type="search"],
.hp-content-card select,
.hp-content-card textarea {
    border: 1px solid #dfe4e8;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(31, 45, 61, .05);
    font-family: Raleway, Arial, sans-serif;
    font-weight: 600;
}

    .hp-content-card .form-control:focus,
    .hp-content-card input[type="text"]:focus,
    .hp-content-card input[type="search"]:focus,
    .hp-content-card select:focus,
    .hp-content-card textarea:focus {
        border-color: var(--hp-primary);
        box-shadow: 0 0 0 3px rgba(202, 83, 26, .12);
    }

.hp-content-card .btn-primary,
.hp-content-card .btn-success,
.hp-content-card input[type="submit"].btn-primary,
.hp-content-card button.btn-primary {
    background: var(--hp-primary) !important;
    border-color: var(--hp-primary) !important;
    color: #fff !important;
    border-radius: 5px !important;
    min-height: 44px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(202, 83, 26, .18);
}

    .hp-content-card .btn-primary:hover,
    .hp-content-card .btn-success:hover,
    .hp-content-card input[type="submit"].btn-primary:hover,
    .hp-content-card button.btn-primary:hover {
        background: var(--hp-primary-dark) !important;
        border-color: var(--hp-primary-dark) !important;
    }

.hp-content-card .btn-default,
.hp-content-card .btn-secondary,
.hp-content-card button:not(.fc-button):not(.btn-primary):not(.btn-success) {
    border: 1px solid var(--hp-border);
    background: #fff;
    color: var(--hp-text);
    border-radius: 5px;
    font-weight: 900;
}

.hp-content-card .alert {
    border-radius: 8px;
    font-weight: 700;
}

.hp-content-card .hp-bulk-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    padding-top: 4px;
}

    .hp-content-card .hp-bulk-actions .btn {
        margin: 0 !important;
    }

.hp-content-card .hp-skill-action-btn {
    width: 132px;
    min-width: 132px;
    height: 28px;
    min-height: 28px !important;
    padding: 0 8px !important;
    font-size: 11px !important;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: none !important;
}

.hp-content-card .hp-skill-action-btn-top {
    height: 34px;
    min-height: 34px !important;
    font-size: 12px !important;
}

.hp-setup-page .hp-setup-contact,
.hp-setup-page .hp-contact-phone,
.hp-setup-page .hp-footer-time,
.hp-setup-page .hp-footer-phone,
#calendar .fc-time,
#calendar .fc-axis,
#calendar .fc-time span {
    font-family: Raleway, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
}

#calendar {
    background: #fff;
    border: 1px solid var(--hp-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(31, 45, 61, .035);
}

    #calendar .fc-view-container {
        background: #fff;
    }

    #calendar .fc-widget-header {
        background: #fffaf7;
        border-color: #f4e4d9;
        color: var(--hp-text);
        font-weight: 900;
    }

    #calendar .fc-widget-content {
        border-color: #edf0f2;
    }

    #calendar .fc-time-grid .fc-slats td {
        height: 2.2em;
    }

    #calendar .fc-event {
        background: var(--hp-primary) !important;
        border-color: var(--hp-primary-dark) !important;
        border-radius: 5px;
        font-weight: 800;
        padding: 2px 4px;
    }

    #calendar .fc-highlight {
        background: rgba(202, 83, 26, .12);
    }

    #calendar .fc-day-header {
        cursor: pointer;
    }

.hp-register-footer {
    border-top: 1px solid var(--hp-border);
    padding: 28px 40px 36px;
}

.hp-footer-trust {
    max-width: 1100px;
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.hp-footer-trust-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    color: var(--hp-muted);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
}

    .hp-footer-trust-item i {
        font-size: 34px;
        color: #172033;
    }

    .hp-footer-trust-item strong {
        display: block;
        color: var(--hp-text);
        font-weight: 900;
        margin-bottom: 4px;
    }

.hp-footer-meta {
    display: flex;
    justify-content: center;
    gap: 36px;
    color: var(--hp-muted);
    font-size: 12px;
    font-weight: 600;
}

    .hp-footer-meta a {
        color: var(--hp-muted);
        text-decoration: none;
    }

@media (max-width: 1050px) {
    .hp-setup-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hp-setup-sidebar {
        order: 2;
    }

    .hp-setup-content {
        order: 1;
    }
}

@media (max-width: 760px) {
    .hp-setup-header {
        height: auto;
        padding: 20px;
        flex-direction: column;
        gap: 16px;
    }

    .hp-setup-contact {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
        white-space: normal;
    }

    .hp-setup-layout {
        padding: 20px;
    }

    .hp-content-card {
        padding: 26px 20px;
    }

    .hp-step-header h1 {
        font-size: 28px;
    }

    .hp-footer-trust {
        grid-template-columns: 1fr;
    }

    .hp-footer-meta {
        flex-wrap: wrap;
        gap: 14px 24px;
    }
}
/* Extracted from Views/UserSetup/Complete.cshtml */

        @media (max-width: 767px) {
            #formWizard .col-md-3:not(.widget-active) {
                display: none;
            }

            .lightbox {
                display: none;
            }
        }
        .privacy-info-consent .dxICheckBox,
        .privacy-info-consent .dxichCellSys,
        .privacy-info-consent .dxichTextCellSys {
            vertical-align: middle;
        }
        .privacy-info-box {
            max-width: 520px;
            width: fit-content;
            margin: 6px auto 0 auto;
            padding: 5px 10px !important;
            font-size: 12px;
            line-height: 1.35;
            margin-bottom: 0;
            border: 1px solid #d9ecd4 !important;
            background-color: #edf8e9 !important;
        }

        .contact-footer-row {
            text-align: left;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .contact-footer-row > [class*="col-"] {
            width: auto;
            float: none;
            padding-left: 0;
            padding-right: 0;
        }

        .contact-footer-item {
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 14px;
        }

        .contact-footer-icon {
            font-size: 30px;
            width: 34px;
            min-width: 34px;
            text-align: center;
        }

        .contact-footer-text {
            line-height: 1.35;
        }

            .contact-footer-text strong {
                font-weight: 700;
            }

            .contact-footer-text span {
                display: inline-block;
            }

        @media (max-width: 1100px) {
            .contact-footer-row {
                grid-template-columns: 1fr;
                gap: 14px;
            }
        }

        .app-download-section {
            padding: 30px 0;
        }

        .app-download-card {
            max-width: 620px;
            margin: 0 auto;
            padding: 18px 14px;
            background: #ffffff;
        }

        .app-preview {
            max-width: 430px;
            width: 100%;
            height: auto;
            border-radius: 18px;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
            margin-bottom: 18px;
        }

        .app-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .store-badge {
            width: 180px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .store-badge:hover {
            transform: translateY(-2px);
            opacity: 0.9;
        }

        .store-badge img {
            width: 100%;
            height: auto;
            display: block;
        }

        .play-store-badge-img {
            transform: scale(1.12);
            transform-origin: center;
        }

        .store-badge-fallback {
            display: none;
            min-width: 170px;
            padding: 10px 12px;
            border: 1px solid #ccd8e6;
            border-radius: 8px;
            background: #f8fbff;
            color: #1f2d3d;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            line-height: 1.2;
            text-align: center;
        }

        .store-badge-fallback:hover,
        .store-badge-fallback:focus {
            text-decoration: none;
            color: #1f2d3d;
            background: #eef5ff;
        }

        :root {
            --hp-primary: #ca531a;
            --hp-primary-dark: #9c3f09;
            --hp-blue: #086ec6;
            --hp-text: #172033;
            --hp-muted: #667085;
            --hp-border: #e8edf2;
            --hp-soft-orange: #fff4ee;
            --hp-soft-blue: #f1f8ff;
        }

        body.hp-setup-page {
            min-height: 100vh;
            font-family: Raleway, Arial, sans-serif;
            background: #fff;
            color: var(--hp-text);
        }

        .hp-setup-shell {
            min-height: 100vh;
            background: #fff;
        }

        .hp-setup-shell .app-main {
            margin: 0 !important;
            padding: 0 !important;
            min-height: auto;
        }

        .hp-setup-header {
            height: 78px;
            padding: 0 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--hp-border);
            background: #fff;
        }

        .hp-setup-header-logo img {
            height: 52px;
            width: auto;
            display: block;
        }

        .hp-setup-contact {
            display: flex;
            align-items: center;
            gap: 28px;
            color: var(--hp-muted);
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
        }

        .hp-setup-contact i {
            color: var(--hp-primary);
            margin-right: 7px;
        }

        .hp-setup-contact .hp-contact-logout {
            color: inherit;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            line-height: 1;
        }

        .hp-setup-contact .hp-contact-logout:hover,
        .hp-setup-contact .hp-contact-logout:focus {
            color: var(--hp-text);
            text-decoration: none;
        }

        .hp-setup-page,
        .hp-setup-page .hp-setup-contact,
        .hp-setup-page .hp-contact-phone,
        .hp-setup-page .hp-footer-time,
        .hp-setup-page .hp-footer-phone {
            font-variant-numeric: lining-nums tabular-nums;
            font-feature-settings: "lnum" 1, "tnum" 1;
        }

        .hp-setup-layout {
            display: grid;
            grid-template-columns: 300px minmax(0, 1fr);
            gap: 56px;
            max-width: 1220px;
            margin: 0 auto;
            padding: 28px 40px 72px;
        }

        .hp-setup-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .hp-setup-content {
            min-width: 0;
        }

        .hp-sidebar-card,
        .hp-side-info-card,
        .hp-content-card {
            background: #fff;
            border: 1px solid var(--hp-border);
            box-shadow: 0 8px 26px rgba(31, 45, 61, .04);
        }

        .hp-sidebar-card {
            border-radius: 16px;
            padding: 22px 18px;
        }

        .hp-phase-box {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid #f2e6dd;
            margin-bottom: 22px;
        }

        .hp-phase-box-head {
            background: var(--hp-soft-orange);
            padding: 18px;
        }

        .hp-phase-kicker {
            color: var(--hp-primary);
            font-size: 13px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .hp-phase-box-head strong {
            display: block;
            font-size: 18px;
            margin-bottom: 8px;
        }

        .hp-phase-box-head p {
            margin: 0;
            color: var(--hp-muted);
            line-height: 1.45;
            font-size: 13px;
            font-weight: 600;
        }

        .hp-sidebar-title {
            font-size: 18px;
            font-weight: 900;
            margin: 0 0 12px;
        }

        .hp-phase-text {
            font-size: 13px;
            font-weight: 900;
            margin-bottom: 10px;
        }

        .hp-progress-track {
            width: 100%;
            height: 6px;
            border-radius: 999px;
            background: #e6e9ed;
            overflow: hidden;
            margin-bottom: 24px;
        }

        .hp-progress-fill {
            width: 50%;
            height: 100%;
            background: var(--hp-primary);
            border-radius: inherit;
        }

        .hp-step-list {
            position: relative;
            padding: 18px 0 4px;
        }

        .hp-step-list:before {
            content: "";
            position: absolute;
            left: 29px;
            top: 18px;
            bottom: 18px;
            width: 1px;
            background: #e5e9ee;
        }

        .hp-step-item {
            position: relative;
            display: grid;
            grid-template-columns: 58px 1fr;
            min-height: 68px;
        }

        .hp-step-number {
            position: relative;
            z-index: 1;
            width: 30px;
            height: 30px;
            margin-left: 14px;
            border-radius: 50%;
            border: 1px solid #d7dde3;
            background: #fff;
            color: #667085;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 900;
        }

        .hp-step-item.is-done .hp-step-number {
            background: var(--hp-primary);
            border-color: var(--hp-primary);
            color: #fff;
            font-size: 0;
        }

        .hp-step-item.is-done .hp-step-number:before {
            content: "\f00c";
            font-family: FontAwesome;
            font-size: 12px;
            line-height: 1;
        }

        .hp-step-item.is-done .hp-step-number i {
            display: none;
        }

        .hp-step-item.is-active .hp-step-number {
            background: var(--hp-primary);
            border-color: var(--hp-primary);
            color: #fff;
            box-shadow: 0 0 0 4px rgba(202, 83, 26, .12);
        }

        .hp-step-copy strong {
            display: block;
            font-size: 13px;
            font-weight: 900;
            margin-bottom: 5px;
        }

        .hp-step-copy span {
            color: var(--hp-muted);
            font-size: 12px;
            font-weight: 600;
        }

        .hp-side-info-card {
            border-radius: 14px;
            padding: 18px;
            background: var(--hp-soft-blue);
            border-color: #d9eafe;
        }

        .hp-side-info-card i {
            color: var(--hp-blue);
            font-size: 32px;
            margin-bottom: 10px;
        }

        .hp-side-info-card strong {
            display: block;
            font-size: 17px;
            line-height: 1.25;
            margin-bottom: 8px;
        }

        .hp-side-info-card p {
            margin: 0;
            color: var(--hp-muted);
            font-size: 13px;
            line-height: 1.45;
            font-weight: 600;
        }

        .hp-content-card {
            border-radius: 18px;
            padding: 42px;
        }

        .hp-step-eyebrow {
            color: var(--hp-muted);
            font-size: 14px;
            font-weight: 900;
            margin-bottom: 8px;
        }

        .hp-step-header h1 {
            font-size: 34px;
            line-height: 1.15;
            margin: 0 0 10px;
            font-weight: 900;
            letter-spacing: -.7px;
        }

        .hp-step-header p {
            color: var(--hp-muted);
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 28px;
        }

        .hp-content-card .widget {
            border: 1px solid var(--hp-border);
            border-radius: 12px;
            box-shadow: 0 8px 26px rgba(31, 45, 61, .035);
            overflow: hidden;
        }

        .hp-content-card .widget-header {
            background: #fffaf7;
            border-bottom: 1px solid #fff0e8;
        }

        .hp-content-card .widget-header .widget-title {
            font-weight: 900;
        }

        .hp-content-card .widget-body {
            font-size: 14px;
            font-weight: 500;
            line-height: 1.45;
        }

        .hp-content-card .widget-body p,
        .hp-content-card .widget-body span,
        .hp-content-card .widget-body label {
            font-weight: 500;
        }

        .hp-content-card .btn-primary,
        .hp-content-card .btn-success,
        .hp-content-card button.btn-primary,
        .hp-content-card button.btn-success {
            background: var(--hp-primary) !important;
            border-color: var(--hp-primary) !important;
            color: #fff !important;
            border-radius: 5px !important;
            font-weight: 900;
        }

        .hp-content-card .btn-primary:hover,
        .hp-content-card .btn-success:hover,
        .hp-content-card button.btn-primary:hover,
        .hp-content-card button.btn-success:hover {
            background: var(--hp-primary-dark) !important;
            border-color: var(--hp-primary-dark) !important;
        }

        .hp-content-card .btn-link {
            color: var(--hp-primary);
            font-weight: 800;
        }

        .hp-content-card .hp-step-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 28px;
            width: 100%;
        }

        .hp-content-card .hp-button {
            min-width: 178px;
            height: 50px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 900;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-decoration: none;
        }

        .hp-content-card .hp-button-primary {
            border: 0;
            background: var(--hp-primary);
            color: #fff;
            box-shadow: 0 8px 18px rgba(239, 75, 22, .18);
        }

        .hp-content-card .hp-button-primary:hover {
            background: var(--hp-primary-dark);
            color: #fff;
            text-decoration: none;
        }

        .hp-content-card .hp-button-secondary {
            border: 1px solid var(--hp-border);
            background: #fff;
            color: var(--hp-text);
        }

        .hp-content-card .hp-button-secondary:hover {
            border-color: #cfd6de;
            color: var(--hp-text);
            text-decoration: none;
        }

        .hp-content-card .hp-step-actions-step1 .hp-button {
            min-width: 150px;
            height: 42px;
            font-size: 14px;
            font-weight: 800;
            gap: 8px;
        }

        .hp-content-card .hp-step-actions-step1 .hp-button-secondary {
            font-weight: 900;
        }

        body.hp-setup-page .hp-content-card .hp-booking-button {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            text-align: center !important;
        }

        .hp-orga-selection {
            max-width: 860px;
            text-align: left;
        }

        .hp-orga-selection h4 {
            color: var(--hp-text);
            font-weight: 500;
            line-height: 1.45;
            font-size: 10px;
        }

        .hp-orga-selection .hp-orga-intro {
            color: var(--hp-muted);
            font-size: 15px;
            font-weight: 600;
            line-height: 1.5;
            margin: 0 0 20px;
        }

        .hp-orga-selection .hp-orga-empty-note {
            color: var(--hp-muted);
            font-size: 15px;
            font-weight: 600;
            line-height: 1.5;
            text-align: left;
            display: block;
            margin: 12px 0 0;
            max-width: 420px;
        }

        .hp-content-card .blocksatz_l.text-center.html-emoji.custom-enumeration {
            color: var(--hp-muted);
            font-size: 16px;
            font-weight: 600;
            line-height: 1.5;
            text-align: center;
        }

        .hp-content-card .blocksatz_l.text-center.html-emoji.custom-enumeration p,
        .hp-content-card .blocksatz_l.text-center.html-emoji.custom-enumeration li,
        .hp-content-card .blocksatz_l.text-center.html-emoji.custom-enumeration span,
        .hp-content-card .blocksatz_l.text-center.html-emoji.custom-enumeration div {
            color: inherit;
            font-size: inherit;
            font-weight: inherit;
            line-height: inherit;
        }

        .hp-orga-selection label.control-label,
        .hp-orga-selection .control-label {
            display: block;
            text-align: left;
            color: #344054;
            font-size: 13px;
            font-weight: 900 !important;
            margin-bottom: 8px;
        }

        .hp-orga-selection .hp-orga-control-wrap {
            width: 420px;
            max-width: 100%;
            margin: 0;
        }

        .hp-orga-selection .hp-orga-control-wrap.is-full {
            width: 100%;
        }

        .hp-orga-selection .hp-orga-control-wrap.is-full .leftEditor.contentEditor,
        .hp-orga-selection .hp-orga-control-wrap.is-full .dxeListBox {
            width: 100% !important;
        }

        .hp-orga-selection .leftEditor.contentEditor,
        .hp-orga-selection .hp-orga-control-wrap p {
            margin: 0;
        }

        .hp-orga-selection .dxeBase,
        .hp-orga-selection .dxeListBox,
        .hp-orga-selection .dxeEditAreaSys,
        .hp-orga-selection .dxeButtonEditSys {
            font-family: Raleway, Arial, sans-serif !important;
        }

        .hp-orga-selection .dxeListBox,
        .hp-orga-selection .dxeButtonEdit,
        .hp-orga-selection .dxeButtonEditSys,
        .hp-orga-selection .dxeTextBox {
            border-color: #dfe4e8 !important;
            border-radius: 8px !important;
            box-shadow: 0 1px 3px rgba(31, 45, 61, .05) !important;
            background: #fff !important;
        }

        .hp-orga-selection .dxeListBoxItem,
        .hp-orga-selection [class*="dxeListBoxItem"] {
            font-size: 13px !important;
            font-weight: 600 !important;
            color: var(--hp-text) !important;
            line-height: 1.4;
        }

        .hp-orga-selection .dxeEditAreaSys,
        .hp-orga-selection .dxeButtonEdit .dxeEditAreaSys,
        .hp-orga-selection .dxeButtonEdit input[type="text"],
        .hp-orga-selection .dxeButtonEditSys input[type="text"],
        .hp-orga-selection .dxeButtonEditSys .dxeEditArea,
        .hp-orga-selection .dxeButtonEditSys td,
        .hp-orga-selection .dxeButtonEditSys span {
            font-size: 15px !important;
            font-weight: 600 !important;
            color: var(--hp-muted) !important;
            line-height: 1.5 !important;
        }

        .hp-orga-selection .hoveredItem,
        .hp-orga-selection [class*="hoveredItem"] {
            background: #fff8f4 !important;
            color: var(--hp-text) !important;
        }

        .hp-orga-selection .selectedItem,
        .hp-orga-selection [class*="selectedItem"] {
            background: #fff4ee !important;
            color: var(--hp-text) !important;
            font-weight: 700 !important;
        }

        .hp-membership-card {
            border: 1px solid #e9edf2;
            border-radius: 12px;
            background: #fff;
            overflow: hidden;
            text-align: left;
        }

        .hp-membership-intro {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px;
        }

        .hp-membership-intro h4 {
            margin: 0 0 4px;
            font-size: 18px;
            font-weight: 900;
            color: var(--hp-text);
        }

        .hp-membership-title {
            margin: 0;
            font-size: 18px;
            font-weight: 900;
            color: var(--hp-text);
            line-height: 1.3;
        }

        .hp-membership-subtitle {
            margin: 10px 0 0;
            font-size: 14px;
            font-weight: 600;
            color: var(--hp-muted);
            line-height: 1.5;
        }

        .hp-membership-intro span {
            color: var(--hp-muted);
            font-size: 13px;
            font-weight: 600;
            line-height: 1.45;
        }

        .hp-membership-card .orga-document-item {
            padding: 8px 14px;
            border-top: 1px solid #eef2f6;
        }

        .hp-membership-card .orga-document-item.required {
            padding: 12px 14px;
        }

        .hp-membership-card .orga-document-item.required .dxichTextCellSys,
        .hp-membership-card .orga-document-item.required label,
        .hp-membership-card .orga-document-item.required span {
            font-size: 13px !important;
            font-weight: 600 !important;
            line-height: 1.5;
            color: var(--hp-muted) !important;
        }

        .hp-membership-note {
            margin-top: 12px;
            border: 1px solid var(--hp-border);
            border-radius: 10px;
            padding: 12px 14px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            text-align: left;
        }

        .hp-membership-note h5 {
            margin: 0 0 4px;
            font-size: 15px;
            font-weight: 900;
            color: var(--hp-text);
        }

        .hp-membership-note span {
            color: var(--hp-muted);
            font-size: 13px;
            font-weight: 600;
            line-height: 1.45;
        }

        .hp-membership-submit {
            margin-top: 18px;
            min-width: 220px !important;
            height: 42px !important;
            min-height: 42px !important;
            font-size: 14px !important;
            font-weight: 800 !important;
        }

        .hp-mail-verification {
            max-width: 760px;
            margin: 0 auto;
            text-align: center;
        }

        .hp-mail-verification-title {
            margin: 0 0 10px;
            font-size: 19px;
            font-weight: 700;
            color: var(--hp-text);
            line-height: 1.3;
        }

        .hp-mail-verification-subtitle {
            margin: 16px 0 8px;
            font-size: 14px;
            font-weight: 700;
            color: var(--hp-text);
            line-height: 1.4;
        }

        .hp-mail-verification-text {
            margin: 0 0 10px;
            font-size: 15px;
            font-weight: 600;
            color: var(--hp-muted);
            line-height: 1.55;
        }

        .hp-mail-verification-text-last {
            margin-bottom: 0;
        }

        .hp-mail-verification-link {
            color: var(--hp-primary);
            font-weight: 700;
            text-decoration: none;
            border-bottom: 1px solid rgba(202, 83, 26, .35);
        }

        .hp-mail-verification-link:hover,
        .hp-mail-verification-link:focus {
            color: var(--hp-primary-dark);
            text-decoration: none;
            border-bottom-color: rgba(156, 63, 9, .5);
        }

        .hp-register-footer {
            border-top: 1px solid var(--hp-border);
            padding: 28px 40px 36px;
        }

        .hp-footer-trust {
            max-width: 1100px;
            margin: 0 auto 28px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 34px;
        }

        .hp-footer-trust-item {
            display: grid;
            grid-template-columns: 46px 1fr;
            gap: 14px;
            align-items: center;
            color: var(--hp-muted);
            font-size: 13px;
            line-height: 1.35;
            font-weight: 600;
        }

        .hp-footer-trust-item i {
            font-size: 34px;
            color: #172033;
        }

        .hp-footer-trust-item strong {
            display: block;
            color: var(--hp-text);
            font-weight: 900;
            margin-bottom: 4px;
        }

        .hp-footer-meta {
            display: flex;
            justify-content: center;
            gap: 36px;
            color: var(--hp-muted);
            font-size: 12px;
            font-weight: 600;
        }

        .hp-footer-meta a {
            color: var(--hp-muted);
            text-decoration: none;
        }

        @media (max-width: 1050px) {
            .hp-setup-layout {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 760px) {
            .hp-setup-header {
                height: auto;
                padding: 20px;
                flex-direction: column;
                gap: 16px;
            }

            .hp-setup-contact {
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px 20px;
                white-space: normal;
            }

            .hp-setup-layout {
                padding: 20px;
            }

            .hp-content-card {
                padding: 26px 20px;
            }

            .hp-step-header h1 {
                font-size: 28px;
            }

            .hp-footer-trust {
                grid-template-columns: 1fr;
            }

            .hp-footer-meta {
                flex-wrap: wrap;
                gap: 14px 24px;
            }
        }

