.badge i {
    font-size: 12px;
}

.hover-card {
    transition: 0.3s ease;
    border-radius: 15px;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.quick-access-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    background:
        radial-gradient(
            circle at top right,
            rgba(13, 110, 253, 0.1),
            transparent 28%
        ),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.quick-access-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 110, 253, 0.22);
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.12);
}

.quick-access-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
}

.quick-access-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    height: 100%;
    padding: 1.25rem;
}

.quick-access-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.quick-access-card__icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 18px;
    font-size: 1.35rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.quick-access-card__icon--primary {
    background: linear-gradient(
        180deg,
        rgba(13, 110, 253, 0.16),
        rgba(13, 110, 253, 0.06)
    );
    color: #0d6efd;
}

.quick-access-card__icon--success {
    background: linear-gradient(
        180deg,
        rgba(25, 135, 84, 0.16),
        rgba(25, 135, 84, 0.06)
    );
    color: #198754;
}

.quick-access-card__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.42rem 0.78rem;
    background: rgba(15, 23, 42, 0.05);
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.quick-access-card__content {
    flex: 1 1 auto;
}

.quick-access-card__title {
    color: #0f172a;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 0.45rem;
}

.quick-access-card__text {
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 0;
}

.quick-access-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    color: #0d6efd;
    font-weight: 700;
    font-size: 0.92rem;
}

.quick-access-card__footer i {
    font-size: 0.95rem;
}

.profile-progress-card {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at top right,
            rgba(13, 110, 253, 0.1),
            transparent 28%
        ),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.profile-progress-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 1.5rem 0;
}

.profile-progress-card__title-wrap {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.profile-progress-card__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 18px;
    background: linear-gradient(
        180deg,
        rgba(13, 110, 253, 0.14),
        rgba(13, 110, 253, 0.08)
    );
    color: #0d6efd;
    font-size: 1.2rem;
}

.profile-progress-card__eyebrow {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.35rem;
}

.profile-progress-card__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.profile-progress-card__subtitle {
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 700px;
}

.profile-progress-card__status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
    border-radius: 999px;
    padding: 0.6rem 0.95rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.profile-progress-card__status--done {
    background: rgba(25, 135, 84, 0.12);
    color: #198754;
    border-color: rgba(25, 135, 84, 0.12);
}

.profile-progress-card__status--progress {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-color: rgba(13, 110, 253, 0.12);
}

.profile-progress-card__body {
    padding: 1.35rem 1.5rem 1.5rem;
}

.profile-progress-card__summary {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    padding: 1rem 1rem 1.1rem;
    margin-bottom: 1rem;
}

.profile-progress-card__summary-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.profile-progress-card__summary-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.3rem;
}

.profile-progress-card__summary-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
}

.profile-progress-card__summary-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    border-radius: 16px;
    padding: 0.8rem 1rem;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    font-weight: 800;
    font-size: 1.05rem;
}

.profile-progress-card__progress {
    height: 12px;
    border-radius: 999px;
    background: #e9eef7;
}

.profile-progress-card__progress .progress-bar {
    border-radius: 999px;
    background: linear-gradient(90deg, #0d6efd, #20c997);
}

.profile-progress-card__helper {
    color: #64748b;
    margin: 0.75rem 0 0;
    line-height: 1.6;
}

.profile-progress-card__steps {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.profile-progress-step {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.78);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.profile-progress-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.profile-progress-step__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    font-size: 1rem;
}

.profile-progress-step__icon--done {
    background: rgba(25, 135, 84, 0.12);
    color: #198754;
}

.profile-progress-step__icon--current {
    background: rgba(13, 110, 253, 0.12);
    color: #0d6efd;
}

.profile-progress-step__icon--upcoming {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
}

.profile-progress-step__content {
    flex: 1 1 auto;
}

.profile-progress-step__meta {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.profile-progress-step__meta--done {
    color: #198754;
}

.profile-progress-step__meta--current {
    color: #0d6efd;
}

.profile-progress-step__meta--upcoming {
    color: #94a3b8;
}

.profile-progress-step__title {
    display: block;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
}

.profile-progress-step__description {
    color: #64748b;
    margin-top: 0.2rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.profile-progress-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.profile-progress-card__footer-text {
    color: #64748b;
    margin-bottom: 0;
}

.job-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(13, 110, 253, 0.14);
    border-radius: 26px;
    background:
        radial-gradient(
            circle at top right,
            rgba(32, 201, 151, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at top left,
            rgba(13, 110, 253, 0.1),
            transparent 24%
        ),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.job-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
}

.job-card:hover {
    transform: translateY(-8px);
    border-color: rgba(13, 110, 253, 0.28);
    box-shadow: 0 28px 54px rgba(15, 23, 42, 0.14);
}

.job-card__body {
    position: relative;
    z-index: 1;
    padding: 1.4rem;
}

.job-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.job-card__header-main {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 0;
}

.job-card__icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 18px;
    background: linear-gradient(
        180deg,
        rgba(13, 110, 253, 0.14),
        rgba(13, 110, 253, 0.06)
    );
    color: #0d6efd;
    font-size: 1.25rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.job-card__title {
    display: inline-block;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
    margin-bottom: 0.35rem;
}

.job-card__title:hover {
    color: #0d6efd;
}

.job-card__subtitle {
    color: #6b7280;
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 0;
}

.job-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid transparent;
}

.job-card__badge--active {
    background: rgba(25, 135, 84, 0.12);
    border-color: rgba(25, 135, 84, 0.08);
    color: #198754;
}

.job-card__badge--inactive {
    background: rgba(220, 53, 69, 0.12);
    border-color: rgba(220, 53, 69, 0.08);
    color: #dc3545;
}

.job-card__panel {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.job-card__panel--description {
    padding: 1rem 1rem 0.9rem;
    margin-bottom: 1rem;
}

.job-card__section-label {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: #94a3b8;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.job-card__description {
    color: #334155;
    line-height: 1.75;
    font-size: 1rem;
}

.job-card__description > *:last-child {
    margin-bottom: 0;
}

.job-card__description p {
    margin-bottom: 0.7rem;
}

.job-card__description ul,
.job-card__description ol {
    padding-left: 1.45rem;
    margin-bottom: 0;
}

.job-card__description li {
    margin-bottom: 0.45rem;
    padding-left: 0.2rem;
}

.job-card__description strong,
.job-card__description b {
    color: #0f172a;
    font-weight: 700;
}

.job-card__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.job-card__meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.78);
}

.job-card__meta-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(
        180deg,
        rgba(13, 110, 253, 0.14),
        rgba(13, 110, 253, 0.06)
    );
    color: #0d6efd;
}

.job-card__meta-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.3rem;
}

.job-card__meta-value {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.job-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.job-card__actions .btn {
    flex: 1 1 160px;
    border-radius: 999px;
    font-weight: 600;
    padding: 0.82rem 1rem;
    border-width: 1px;
    box-shadow: none;
}

.job-card__actions .btn-primary {
    background: linear-gradient(90deg, #0d6efd, #0b5ed7);
    border-color: transparent;
}

.job-card__actions .btn-outline-primary {
    background: rgba(13, 110, 253, 0.04);
}

.job-empty-state {
    border: 1px dashed rgba(13, 110, 253, 0.24);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.job-detail-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(13, 110, 253, 0.14);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at top right,
            rgba(32, 201, 151, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at top left,
            rgba(13, 110, 253, 0.1),
            transparent 24%
        ),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.08);
}

.job-detail-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
}

.job-detail-card__body {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
}

.job-detail-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.job-detail-card__heading {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 0;
}

.job-detail-card__icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 20px;
    background: linear-gradient(
        180deg,
        rgba(13, 110, 253, 0.16),
        rgba(13, 110, 253, 0.06)
    );
    color: #0d6efd;
    font-size: 1.35rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.job-detail-card__eyebrow {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.job-detail-card__title {
    color: #0f172a;
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.45rem;
}

.job-detail-card__subtitle {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 760px;
}

.job-detail-card__meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.job-detail-card__meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    padding: 1rem 1.05rem;
}

.job-detail-card__meta-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(
        180deg,
        rgba(13, 110, 253, 0.14),
        rgba(13, 110, 253, 0.06)
    );
    color: #0d6efd;
}

.job-detail-card__meta-label {
    display: block;
    color: #94a3b8;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.job-detail-card__meta-value {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.55;
}

.job-detail-card__section {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    padding: 1.1rem 1.15rem;
}

.job-detail-card__section-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.job-detail-card__content {
    color: #334155;
    line-height: 1.75;
    font-size: 1rem;
}

.job-detail-card__content > *:last-child {
    margin-bottom: 0;
}

.job-detail-card__content p {
    margin-bottom: 0.8rem;
}

.job-detail-card__content ul,
.job-detail-card__content ol {
    margin-bottom: 0;
    padding-left: 1.45rem;
}

.job-detail-card__content li {
    margin-bottom: 0.45rem;
    padding-left: 0.2rem;
}

.job-detail-card__content strong,
.job-detail-card__content b {
    color: #0f172a;
}

.job-detail-card__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.job-detail-card__actions .btn {
    border-radius: 999px;
    padding: 0.82rem 1.1rem;
    font-weight: 600;
}

.job-detail-card__actions .btn-primary {
    background: linear-gradient(90deg, #0d6efd, #0b5ed7);
    border-color: transparent;
}

.account-profile-page {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.account-profile-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(13, 110, 253, 0.12);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at top right,
            rgba(32, 201, 151, 0.12),
            transparent 26%
        ),
        radial-gradient(
            circle at top left,
            rgba(13, 110, 253, 0.1),
            transparent 24%
        ),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.08);
}

.account-profile-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #20c997);
}

.account-profile-card__body {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
}

.account-profile-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.account-profile-header__main {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.account-profile-header__icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 20px;
    background: linear-gradient(
        180deg,
        rgba(13, 110, 253, 0.16),
        rgba(13, 110, 253, 0.06)
    );
    color: #0d6efd;
    font-size: 1.4rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.account-profile-header__eyebrow {
    display: inline-block;
    margin-bottom: 0.4rem;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.account-profile-header__title {
    color: #0f172a;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.4rem;
}

.account-profile-header__subtitle {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 760px;
}

.account-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
    border-radius: 999px;
    padding: 0.6rem 0.95rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.account-status-pill--active {
    background: rgba(25, 135, 84, 0.12);
    color: #198754;
    border-color: rgba(25, 135, 84, 0.12);
}

.account-status-pill--inactive {
    background: rgba(100, 116, 139, 0.12);
    color: #64748b;
    border-color: rgba(100, 116, 139, 0.12);
}

.account-profile-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.account-profile-summary__item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.78);
}

.account-profile-summary__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(
        180deg,
        rgba(13, 110, 253, 0.14),
        rgba(13, 110, 253, 0.06)
    );
    color: #0d6efd;
}

.account-profile-summary__label {
    display: block;
    color: #94a3b8;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.account-profile-summary__value {
    display: block;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    word-break: break-word;
}

.account-profile-form {
    display: grid;
    gap: 1rem;
}

.account-profile-section {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    padding: 1.15rem;
}

.account-profile-section__header {
    margin-bottom: 1rem;
}

.account-profile-section__eyebrow {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: #94a3b8;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.account-profile-section__title {
    color: #0f172a;
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.account-profile-section__text {
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 0;
}

.account-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.account-profile-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.account-profile-field--full {
    grid-column: 1 / -1;
}

.account-profile-label {
    color: #334155;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0;
}

.account-profile-label small {
    color: #94a3b8;
    font-weight: 600;
}

.account-profile-input {
    min-height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: #ffffff;
    color: #0f172a;
    box-shadow: none;
    padding: 0.85rem 1rem;
}

.account-profile-input:focus {
    border-color: rgba(13, 110, 253, 0.45);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.12);
}

.account-profile-input[readonly] {
    background: #f8fafc;
    color: #64748b;
}

.account-profile-hint {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.account-profile-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.account-profile-actions__text {
    color: #64748b;
    margin-bottom: 0;
}

.account-profile-actions .btn {
    border-radius: 999px;
    padding: 0.82rem 1.15rem;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .quick-access-grid {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }

    .quick-access-card {
        border-radius: 20px;
    }

    .quick-access-card__body {
        padding: 1rem 0.9rem;
        gap: 0.8rem;
        min-height: 100%;
    }

    .quick-access-card__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }

    .quick-access-card__icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        font-size: 1.1rem;
    }

    .quick-access-card__chip {
        padding: 0.35rem 0.65rem;
        font-size: 0.66rem;
    }

    .quick-access-card__title {
        font-size: 0.95rem;
        line-height: 1.35;
        margin-bottom: 0.35rem;
    }

    .quick-access-card__text {
        font-size: 0.82rem;
        line-height: 1.55;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .quick-access-card__footer {
        padding-top: 0.75rem;
        font-size: 0.82rem;
    }

    .profile-progress-card__header,
    .profile-progress-card__body {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .profile-progress-card__header {
        flex-direction: column;
        padding-top: 1.2rem;
    }

    .profile-progress-card__title-wrap {
        gap: 0.85rem;
    }

    .profile-progress-card__icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .profile-progress-card__title {
        font-size: 1.15rem;
    }

    .profile-progress-card__subtitle {
        font-size: 0.93rem;
    }

    .profile-progress-card__summary-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-progress-card__summary-count {
        min-width: auto;
        width: 100%;
        justify-content: flex-start;
    }

    .profile-progress-step {
        padding: 0.9rem;
    }

    .profile-progress-step__title {
        font-size: 0.95rem;
    }

    .profile-progress-step__description,
    .profile-progress-card__footer-text {
        font-size: 0.9rem;
    }

    .profile-progress-card__footer .btn {
        width: 100%;
    }

    .job-card {
        border-radius: 22px;
    }

    .job-card__body {
        padding: 1.15rem;
    }

    .job-card__header {
        flex-direction: column;
        gap: 0.85rem;
        margin-bottom: 0.9rem;
    }

    .job-card__header-main {
        width: 100%;
        gap: 0.85rem;
    }

    .job-card__icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 1.05rem;
    }

    .job-card__title {
        font-size: 1.1rem;
        line-height: 1.35;
        margin-bottom: 0.2rem;
    }

    .job-card__subtitle {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .job-card__badge {
        align-self: flex-start;
        padding: 0.45rem 0.8rem;
        font-size: 0.72rem;
    }

    .job-card__panel--description {
        padding: 0.9rem 0.9rem 0.8rem;
        margin-bottom: 0.9rem;
        border-radius: 18px;
    }

    .job-card__section-label {
        margin-bottom: 0.55rem;
        font-size: 0.72rem;
    }

    .job-card__description {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .job-card__description ul,
    .job-card__description ol {
        padding-left: 1.2rem;
    }

    .job-card__description li {
        margin-bottom: 0.35rem;
    }

    .job-card__meta-item {
        gap: 0.7rem;
        padding: 0.9rem;
        border-radius: 18px;
    }

    .job-card__meta-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 0.95rem;
    }

    .job-card__meta-label {
        font-size: 0.72rem;
        margin-bottom: 0.2rem;
    }

    .job-card__meta-value {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .job-card__actions {
        gap: 0.65rem;
        margin-top: 1rem;
    }

    .job-card__actions .btn {
        flex: 1 1 100%;
        width: 100%;
        padding: 0.75rem 0.9rem;
        font-size: 0.92rem;
    }

    .job-detail-card {
        border-radius: 24px;
    }

    .job-detail-card__body {
        padding: 1.15rem;
    }

    .job-detail-card__header {
        flex-direction: column;
        gap: 0.9rem;
        margin-bottom: 1rem;
    }

    .job-detail-card__heading {
        width: 100%;
        gap: 0.85rem;
    }

    .job-detail-card__icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
        font-size: 1.15rem;
    }

    .job-detail-card__title {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .job-detail-card__subtitle {
        font-size: 0.94rem;
        line-height: 1.6;
    }

    .job-detail-card__meta-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .job-detail-card__meta-item {
        padding: 0.9rem;
        border-radius: 18px;
    }

    .job-detail-card__meta-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .job-detail-card__meta-value {
        font-size: 0.92rem;
    }

    .job-detail-card__section {
        padding: 1rem;
        border-radius: 20px;
    }

    .job-detail-card__content {
        font-size: 0.94rem;
        line-height: 1.68;
    }

    .job-detail-card__actions {
        justify-content: stretch;
    }

    .job-detail-card__actions .btn {
        width: 100%;
    }

    .account-profile-card {
        border-radius: 24px;
    }

    .account-profile-card__body {
        padding: 1.15rem;
    }

    .account-profile-header {
        flex-direction: column;
        gap: 0.9rem;
        margin-bottom: 1rem;
    }

    .account-profile-header__main {
        width: 100%;
        gap: 0.85rem;
    }

    .account-profile-header__icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
        font-size: 1.15rem;
    }

    .account-profile-header__title {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .account-profile-header__subtitle {
        font-size: 0.94rem;
    }

    .account-profile-summary {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .account-profile-summary__item {
        padding: 0.9rem;
        border-radius: 18px;
    }

    .account-profile-summary__icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .account-profile-summary__value {
        font-size: 0.92rem;
    }

    .account-profile-section {
        padding: 1rem;
        border-radius: 20px;
    }

    .account-profile-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .account-profile-actions {
        justify-content: stretch;
    }

    .account-profile-actions .btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .quick-access-grid {
        --bs-gutter-x: 0.6rem;
        --bs-gutter-y: 0.6rem;
    }

    .quick-access-card__body {
        padding: 0.9rem 0.8rem;
    }

    .quick-access-card__icon {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    .quick-access-card__title {
        font-size: 0.9rem;
    }

    .quick-access-card__text {
        font-size: 0.78rem;
        -webkit-line-clamp: 4;
    }

    .quick-access-card__footer {
        font-size: 0.78rem;
    }

    .job-card__body {
        padding: 1rem;
    }

    .job-card__title {
        font-size: 1rem;
    }

    .job-card__subtitle {
        font-size: 0.86rem;
    }

    .job-card__badge {
        white-space: normal;
    }

    .job-card__panel--description {
        padding: 0.85rem 0.8rem 0.75rem;
    }

    .job-card__description {
        font-size: 0.9rem;
    }

    .job-card__meta-item {
        padding: 0.8rem;
    }

    .job-card__meta-value {
        font-size: 0.88rem;
    }

    .job-detail-card__body {
        padding: 1rem;
    }

    .job-detail-card__title {
        font-size: 1.15rem;
    }

    .job-detail-card__subtitle,
    .job-detail-card__content,
    .job-detail-card__meta-value {
        font-size: 0.9rem;
    }

    .account-profile-card__body {
        padding: 1rem;
    }

    .account-profile-header__title {
        font-size: 1.15rem;
    }

    .account-profile-header__subtitle,
    .account-profile-section__text,
    .account-profile-hint,
    .account-profile-actions__text,
    .account-profile-summary__value {
        font-size: 0.9rem;
    }

    .account-profile-input {
        min-height: 48px;
        padding: 0.78rem 0.9rem;
        border-radius: 14px;
    }
}

/* Biodata wizard */
.biodata-wizard {
    --wizard-primary: #0b76b7;
    --wizard-primary-dark: #0a4d74;
    --wizard-primary-soft: #edf7fd;
    --wizard-surface: #ffffff;
    --wizard-surface-alt: #f6f9fc;
    --wizard-border: #d6e3ec;
    --wizard-ink: #1b3243;
    --wizard-muted: #667a8a;
    --wizard-shadow: 0 18px 45px rgba(15, 74, 114, 0.1);
}

.biodata-wizard .wizard-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(260px, 1fr);
    gap: 1.5rem;
    align-items: end;
    padding: clamp(1.25rem, 2.5vw, 2rem);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 255, 255, 0.75),
            transparent 30%
        ),
        linear-gradient(135deg, #0a5e92 0%, #0e86c8 52%, #dff3fb 100%);
    color: #fff;
    box-shadow: var(--wizard-shadow);
}

.biodata-wizard .wizard-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.biodata-wizard .wizard-hero__title {
    margin: 1rem 0 0.75rem;
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    font-weight: 600;
    line-height: 1.15;
}

.biodata-wizard .wizard-hero__text {
    margin: 0;
    max-width: 60ch;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
}

.biodata-wizard .wizard-hero__progress {
    padding: 1.2rem;
    border-radius: 22px;
    background: rgba(9, 36, 54, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.biodata-wizard .wizard-hero__progress-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.85);
}

.biodata-wizard .wizard-hero__progress-label {
    display: block;
    margin-bottom: 0.85rem;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
}

.biodata-wizard .wizard-progress {
    width: 100%;
    height: 0.7rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.biodata-wizard .wizard-progress__bar {
    display: block;
    width: 16.666%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #ffffff 0%, #d3f0ff 100%);
    transition: width 0.3s ease;
}

.biodata-wizard .wizard-shell {
    margin-top: 1.75rem;
}

.biodata-wizard .sticky-tabs {
    position: sticky;
    top: 96px;
    z-index: 1020;
    margin-bottom: 1.5rem;
    padding: 0.65rem;
    border: 1px solid rgba(214, 227, 236, 0.95);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 35px rgba(18, 62, 89, 0.09);
    backdrop-filter: blur(12px);
}

.biodata-wizard #formTabs.form-steps {
    gap: 0.75rem;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
    overflow-x: auto;
    border-bottom: 0;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
}

.biodata-wizard #formTabs.form-steps::-webkit-scrollbar {
    display: none;
}

.biodata-wizard #formTabs.form-steps .nav-item {
    flex: 0 0 min(80vw, 240px);
    min-width: 0;
    scroll-snap-align: start;
}

.biodata-wizard #formTabs.form-steps .nav-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: 100%;
    height: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--wizard-border);
    border-radius: 20px;
    background: var(--wizard-surface);
    box-shadow: 0 8px 18px rgba(21, 68, 98, 0.05);
    transition: all 0.22s ease;
}

.biodata-wizard #formTabs.form-steps .nav-link:hover {
    border-color: #a8cbdf;
    transform: translateY(-1px);
}

.biodata-wizard #formTabs.form-steps .nav-link.active {
    border-color: rgba(11, 118, 183, 0.18);
    background: linear-gradient(135deg, #0b76b7 0%, #10a0da 100%);
    box-shadow: 0 14px 24px rgba(11, 118, 183, 0.22);
}

.biodata-wizard .wizard-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    flex-shrink: 0;
    border-radius: 16px;
    background: var(--wizard-primary-soft);
    color: var(--wizard-primary);
    font-size: 0.95rem;
    font-weight: 700;
}

.biodata-wizard #formTabs.form-steps .nav-link.active .wizard-step__number {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.biodata-wizard .wizard-step__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.biodata-wizard .wizard-step__title {
    color: var(--wizard-ink);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
}

.biodata-wizard .wizard-step__caption {
    margin-top: 0.18rem;
    color: var(--wizard-muted);
    font-size: 0.8rem;
    line-height: 1.35;
}

.biodata-wizard #formTabs.form-steps .nav-link.active .wizard-step__title,
.biodata-wizard #formTabs.form-steps .nav-link.active .wizard-step__caption {
    color: #fff;
}

.biodata-wizard .wizard-panel {
    border: 1px solid rgba(214, 227, 236, 0.9);
    border-radius: 28px;
    background: var(--wizard-surface);
    box-shadow: var(--wizard-shadow);
}

.biodata-wizard .wizard-panel__body {
    padding: clamp(1rem, 2vw, 2rem);
}

.biodata-wizard .tab-pane > h6 {
    margin-bottom: 1.15rem;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    background: var(--wizard-primary-soft);
    color: var(--wizard-primary-dark) !important;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.biodata-wizard label {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--wizard-ink);
    font-weight: 600;
    line-height: 1.45;
}

.biodata-wizard .form-control,
.biodata-wizard .form-select {
    min-height: 3rem;
    border: 1px solid #cad9e3;
    border-radius: 14px;
    padding: 0.75rem 1rem;
    color: var(--wizard-ink);
    background-color: #fff;
    box-shadow: none;
}

.biodata-wizard textarea.form-control {
    min-height: 7rem;
    resize: vertical;
}

.biodata-wizard .form-control:focus,
.biodata-wizard .form-select:focus {
    border-color: #67afd6;
    box-shadow: 0 0 0 0.2rem rgba(11, 118, 183, 0.12);
}

.biodata-wizard .form-check {
    padding: 1rem 1.2rem 1rem 2.4rem;
    border: 1px solid var(--wizard-border);
    border-radius: 16px;
    background: var(--wizard-surface-alt);
}

.biodata-wizard .form-check-input {
    margin-top: 0.3rem;
}

.file-upload-box,
.file-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--wizard-border);
    border-radius: 18px;
    background-color: var(--wizard-surface-alt);
    font-size: 0.92rem;
}

.file-icon {
    color: var(--wizard-primary);
    font-size: 1.45rem;
}

.upload-label,
.file-info {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
    flex: 1;
    color: var(--wizard-muted);
}

.upload-label span,
.file-meta span {
    overflow-wrap: anywhere;
}

.btn-upload,
.btn-view,
.btn-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.7rem 1.1rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.btn-upload:hover,
.btn-view:hover,
.btn-delete:hover {
    transform: translateY(-1px);
    color: #fff;
}

.btn-upload {
    background: linear-gradient(135deg, #6e7e8d 0%, #95a6b3 100%);
    color: #fff;
}

.btn-view {
    background: linear-gradient(135deg, #0b76b7 0%, #2db3e0 100%);
    color: #fff;
}

.btn-delete {
    background: linear-gradient(135deg, #8f3831 0%, #df8476 100%);
    color: #fff;
}

input[type="file"] {
    display: none;
}

.file-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    color: var(--wizard-muted);
}

.btn-group-custom {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.7rem;
}

.biodata-wizard .wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(214, 227, 236, 0.9);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(21, 68, 98, 0.08);
}

.biodata-wizard .wizard-actions__next {
    display: flex;
    gap: 0.8rem;
    margin-left: auto;
}

.biodata-wizard .wizard-actions .btn {
    min-height: 3rem;
    padding: 0.78rem 1.35rem;
    border-radius: 14px;
    font-weight: 700;
}

.check-pasif {
    pointer-events: none;
}

.header {
    text-align: center;
    border-bottom: 3px solid #2c3e50;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.header h1 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section {
    margin-bottom: 30px;
}

.section-title {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    border-radius: 5px;
}

.subsection {
    margin-bottom: 20px;
}

.subsection-title {
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 8px 15px;
    font-weight: bold;
    margin-bottom: 10px;
    border-left: 4px solid #3498db;
}

.requirement-list {
    margin-left: 20px;
    margin-bottom: 15px;
}

.requirement-list li {
    margin-bottom: 8px;
    text-align: justify;
}

.legal-text {
    background-color: #fafafa;
    border-left: 4px solid #e74c3c;
    padding: 15px;
    margin: 15px 0;
    font-style: italic;
    border-radius: 0 5px 5px 0;
}

.checkbox-section {
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px;
    background: white;
    border-radius: 5px;
    border: 1px solid #e9ecef;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 15px;
    margin-top: 5px;
    transform: scale(1.2);
}

.checkbox-item label {
    cursor: pointer;
    text-align: justify;
    flex: 1;
}

.warning-box {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.warning-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.article-reference {
    background-color: #e8f4f8;
    border: 1px solid #bee5eb;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 14px;
}

.signature-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #2c3e50;
}

.signature-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.signature-field {
    text-align: center;
    padding: 20px;
    border: 2px dashed #bdc3c7;
    border-radius: 8px;
}

.signature-field h4 {
    margin-bottom: 60px;
    color: #2c3e50;
}

.signature-line {
    border-top: 2px solid #2c3e50;
    margin-top: 20px;
    padding-top: 10px;
}

@media (min-width: 992px) {
    .biodata-wizard #formTabs.form-steps {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
    }

    .biodata-wizard #formTabs.form-steps .nav-item {
        flex-basis: auto;
    }
}

@media (max-width: 991.98px) {
    .biodata-wizard .wizard-hero {
        grid-template-columns: 1fr;
    }

    .biodata-wizard .sticky-tabs {
        top: 72px;
    }
}

@media (max-width: 767.98px) {
    .biodata-wizard .wizard-hero {
        padding: 1.1rem;
        border-radius: 22px;
    }

    .biodata-wizard .wizard-hero__progress {
        padding: 1rem;
    }

    .biodata-wizard .sticky-tabs {
        position: static;
        padding: 0.45rem;
        border-radius: 22px;
    }

    .biodata-wizard #formTabs.form-steps .nav-item {
        flex: 0 0 84%;
    }

    .biodata-wizard .wizard-step__caption {
        display: none;
    }

    .biodata-wizard .wizard-panel {
        border-radius: 22px;
    }

    .biodata-wizard .wizard-panel__body {
        padding: 1rem;
    }

    .file-upload-box,
    .file-box,
    .upload-label,
    .file-info {
        align-items: flex-start;
    }

    .file-upload-box,
    .file-box {
        flex-direction: column;
    }

    .btn-upload,
    .btn-view,
    .btn-delete {
        width: 100%;
    }

    .btn-group-custom {
        width: 100%;
    }

    .biodata-wizard .wizard-actions {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }

    .biodata-wizard .wizard-actions__next {
        width: 100%;
        flex-direction: column-reverse;
        margin-left: 0;
    }

    .biodata-wizard .wizard-actions .btn {
        width: 100%;
    }

    .signature-box {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Halaman bantuan */
.help-page-banner {
    position: relative;
    overflow: hidden;
}

.help-page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.12),
            transparent 32%
        ),
        linear-gradient(135deg, rgba(7, 45, 75, 0.2), rgba(11, 118, 183, 0.06));
    pointer-events: none;
}

.help-page-hero {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.help-page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.help-page-hero__text {
    max-width: 62ch;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.8;
}

/* Beranda bantuan */
.faq-help-section {
    background:
        radial-gradient(
            circle at top left,
            rgba(11, 118, 183, 0.08),
            transparent 34%
        ),
        linear-gradient(180deg, #f7fbfe 0%, #eef5fa 100%);
}

.faq-help {
    padding: clamp(1.25rem, 2vw, 2rem);
    border: 1px solid rgba(204, 220, 231, 0.9);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 55px rgba(15, 74, 114, 0.08);
}

.faq-help__header {
    margin-bottom: 1.5rem;
}

.faq-help__eyebrow,
.faq-help-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: #e9f6fd;
    color: #0b76b7;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq-help__title {
    margin: 1rem 0 0.75rem;
    color: #163346;
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
}

.faq-help__lead {
    max-width: 58ch;
    margin: 0;
    color: #5f7281;
    font-size: 1rem;
    line-height: 1.8;
}

.faq-help__accordion {
    display: grid;
    gap: 1rem;
}

.faq-help__item {
    overflow: hidden;
    border: 1px solid #d6e3ec;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(17, 70, 101, 0.06);
}

.faq-help__item .accordion-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.3rem;
    background: #fff;
    color: #163346;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    box-shadow: none;
}

.faq-help__item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #0b76b7 0%, #11a3db 100%);
    color: #fff;
}

.faq-help__item .accordion-button::after {
    flex-shrink: 0;
    width: 1.15rem;
    height: 1.15rem;
    background-size: 1.15rem;
}

.faq-help__item .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-help__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    flex-shrink: 0;
    border-radius: 16px;
    background: #e9f6fd;
    color: #0b76b7;
    font-size: 0.95rem;
    font-weight: 700;
}

.faq-help__item .accordion-button:not(.collapsed) .faq-help__number {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.faq-help__item .accordion-body {
    padding: 0 1.3rem 1.3rem;
    color: #5c6f7d;
    font-size: 0.97rem;
    line-height: 1.8;
}

.faq-help__item .accordion-body ul {
    margin-bottom: 0;
}

.faq-help-card {
    position: sticky;
    top: 110px;
    overflow: hidden;
    border: 1px solid rgba(207, 221, 231, 0.95);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 24px 50px rgba(15, 74, 114, 0.12);
}

.faq-help-card__media {
    position: relative;
    padding: 1.5rem 1.5rem 0;
    background:
        radial-gradient(
            circle at top,
            rgba(11, 118, 183, 0.18),
            transparent 55%
        ),
        linear-gradient(180deg, #f4fbff 0%, rgba(244, 251, 255, 0.2) 100%);
}

.faq-help-card__media img {
    display: block;
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
}

.faq-help-card__body {
    padding: 1.6rem;
}

.faq-help-card__title {
    margin: 1rem 0 0.75rem;
    color: #163346;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
}

.faq-help-card__text {
    margin: 0;
    color: #607381;
    line-height: 1.8;
}

.faq-help-card__contact {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.faq-help-card__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1.05rem;
    border: 1px solid #d8e5ed;
    border-radius: 18px;
    background: #f8fbfd;
}

.faq-help-card__contact-item i {
    margin-top: 0.15rem;
    color: #0b76b7;
    font-size: 1.1rem;
}

.faq-help-card__contact-item small {
    display: block;
    margin-bottom: 0.25rem;
    color: #7b8f9d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.faq-help-card__contact-item a,
.faq-help-card__contact-item span {
    color: #163346;
    font-weight: 600;
    word-break: break-word;
}

.faq-help-card__contact-item a:hover {
    color: #0b76b7;
}

.faq-help-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.faq-help-card__actions .btn {
    min-height: 3rem;
    font-weight: 700;
}

@media (max-width: 1199.98px) {
    .faq-help-card {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .help-page-hero__eyebrow {
        font-size: 0.72rem;
    }

    .help-page-hero__text {
        font-size: 0.94rem;
    }

    .faq-help {
        padding: 1rem;
        border-radius: 24px;
    }

    .faq-help__title {
        font-size: 1.7rem;
    }

    .faq-help__item {
        border-radius: 18px;
    }

    .faq-help__item .accordion-button {
        align-items: flex-start;
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-help__number {
        width: 2.45rem;
        height: 2.45rem;
        border-radius: 14px;
        font-size: 0.86rem;
    }

    .faq-help__item .accordion-body {
        padding: 0 1rem 1rem;
        font-size: 0.93rem;
    }

    .faq-help-card {
        border-radius: 24px;
    }

    .faq-help-card__media {
        padding: 1.1rem 1.1rem 0;
    }

    .faq-help-card__body {
        padding: 1.15rem;
    }

    .faq-help-card__actions {
        flex-direction: column;
    }

    .faq-help-card__actions .btn {
        width: 100%;
    }
}

.clean-profile-page {
    padding-top: 24px;
    padding-bottom: 36px;
    background: #f6f8fb;
}

.clean-profile-shell {
    max-width: 980px;
    margin: 0 auto;
}

.clean-profile-topbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.clean-profile-eyebrow {
    display: inline-block;
    margin-bottom: 6px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.clean-profile-title {
    margin-bottom: 4px;
    color: #0f172a;
    font-size: 24px;
    font-weight: 800;
}

.clean-profile-subtitle {
    margin-bottom: 0;
    color: #64748b;
    font-size: 14px;
}

.clean-profile-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.clean-profile-status.is-active {
    color: #047857;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
}

.clean-profile-status.is-inactive {
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.clean-profile-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    padding: 24px;
}

.clean-profile-user {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eef2f7;
}

.clean-profile-avatar {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #2563eb;
    font-size: 26px;
    font-weight: 800;
}

.clean-profile-user-info {
    min-width: 0;
}

.clean-profile-user-info h5 {
    margin-bottom: 4px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 800;
    word-break: break-word;
}

.clean-profile-user-info p {
    margin-bottom: 0;
    color: #64748b;
    font-size: 14px;
    word-break: break-word;
}

.clean-profile-mini-info {
    min-width: 160px;
    padding: 11px 14px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
}

.clean-profile-mini-info span {
    display: block;
    margin-bottom: 3px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
}

.clean-profile-mini-info strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    word-break: break-word;
}

.clean-profile-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 14px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.clean-profile-alert i {
    margin-top: 3px;
}

.clean-profile-alert strong {
    display: block;
    margin-bottom: 2px;
    font-size: 13px;
}

.clean-profile-alert span {
    display: block;
    font-size: 13px;
    line-height: 1.5;
}

.clean-profile-section-head {
    margin-bottom: 14px;
}

.clean-profile-section-head h6 {
    margin-bottom: 4px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
}

.clean-profile-section-head p {
    margin-bottom: 0;
    color: #64748b;
    font-size: 13px;
}

.clean-profile-label {
    margin-bottom: 7px;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

.clean-profile-label span {
    color: #94a3b8;
    font-weight: 600;
}

.clean-profile-control {
    min-height: 46px;
    border-radius: 14px;
    border: 1px solid #dbe3ef;
    color: #0f172a;
    font-size: 14px;
    box-shadow: none;
}

.clean-profile-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.12);
}

.clean-profile-control:disabled,
.clean-profile-control[readonly] {
    background: #f8fafc;
    color: #64748b;
}

.clean-profile-help {
    margin-top: 6px;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.5;
}

.clean-profile-divider {
    height: 1px;
    background: #eef2f7;
    margin: 24px 0;
}

.clean-profile-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 20px;
    margin-top: 22px;
    border-top: 1px solid #eef2f7;
}

.clean-profile-btn {
    min-width: 145px;
    height: 43px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .clean-profile-page {
        padding-top: 16px;
        padding-bottom: 24px;
    }

    .clean-profile-topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .clean-profile-status {
        width: 100%;
        justify-content: center;
    }

    .clean-profile-card {
        padding: 18px;
        border-radius: 20px;
    }

    .clean-profile-user {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 12px;
        align-items: center;
    }

    .clean-profile-avatar {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 22px;
    }

    .clean-profile-mini-info {
        grid-column: 1 / -1;
        min-width: 100%;
    }

    .clean-profile-title {
        font-size: 21px;
    }

    .clean-profile-actions {
        flex-direction: column-reverse;
    }

    .clean-profile-btn {
        width: 100%;
    }
}

.home-clean-page {
    background: #f6f8fb;
}

.home-clean-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 16px;
}

.home-clean-hero__content,
.home-clean-progress-box,
.home-clean-alert,
.home-action-card,
.home-step-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.home-clean-hero__content {
    padding: 24px;
}

.home-clean-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
}

.home-clean-title {
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 24px;
    font-weight: 800;
}

.home-clean-subtitle {
    max-width: 720px;
    margin-bottom: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.home-clean-progress-box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-clean-progress-box__top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

.home-clean-progress-box__top strong {
    color: #0f172a;
}

.home-clean-progress {
    height: 9px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
    margin-bottom: 8px;
}

.home-clean-progress .progress-bar {
    border-radius: 999px;
    background: #2563eb;
}

.home-clean-progress-box small {
    color: #64748b;
    font-size: 12px;
}

.home-clean-alert {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    margin-bottom: 16px;
}

.home-clean-alert > i {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.home-clean-alert div {
    flex: 1 1 auto;
    min-width: 0;
}

.home-clean-alert strong {
    display: block;
    margin-bottom: 2px;
    color: #0f172a;
    font-size: 14px;
}

.home-clean-alert span {
    display: block;
    color: #64748b;
    font-size: 13px;
}

.home-clean-alert.is-warning {
    background: #fffbeb;
    border-color: #fde68a;
}

.home-clean-alert.is-warning > i {
    background: #fef3c7;
    color: #b45309;
}

.home-clean-alert.is-success {
    background: #ecfdf5;
    border-color: #bbf7d0;
}

.home-clean-alert.is-success > i {
    background: #d1fae5;
    color: #047857;
}

.home-action-card {
    min-height: 118px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    color: inherit;
    transition: 0.2s ease;
}

.home-action-card:hover {
    transform: translateY(-3px);
    border-color: #bfdbfe;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
}

.home-action-card.is-disabled {
    opacity: 0.78;
}

.home-action-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: #eff6ff;
    color: #2563eb;
    font-size: 18px;
}

.home-action-card__icon.is-green {
    background: #ecfdf5;
    color: #059669;
}

.home-action-card__body {
    flex: 1 1 auto;
    min-width: 0;
}

.home-action-card__body h6 {
    margin-bottom: 4px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
}

.home-action-card__body p {
    margin-bottom: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}

.home-action-card__arrow {
    color: #94a3b8;
    font-size: 14px;
}

.home-step-card {
    padding: 20px;
}

.home-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.home-section-head h5 {
    margin-bottom: 4px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 800;
}

.home-section-head p {
    margin-bottom: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.home-step-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.home-step-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}

.home-step-item > span {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: #e5e7eb;
    color: #64748b;
    font-size: 13px;
}

.home-step-item small {
    display: block;
    margin-bottom: 2px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
}

.home-step-item strong {
    display: block;
    color: #334155;
    font-size: 13px;
    line-height: 1.35;
}

.home-step-item.is-done {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.home-step-item.is-done > span {
    background: #dcfce7;
    color: #15803d;
}

.home-step-item.is-current {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.home-step-item.is-current > span {
    background: #dbeafe;
    color: #2563eb;
}

.home-step-item.is-current strong {
    color: #1d4ed8;
}

@media (max-width: 991.98px) {
    .home-clean-hero {
        grid-template-columns: 1fr;
    }

    .home-step-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .home-clean-hero__content,
    .home-clean-progress-box,
    .home-step-card {
        border-radius: 18px;
        padding: 17px;
    }

    .home-clean-title {
        font-size: 20px;
    }

    .home-clean-alert {
        align-items: flex-start;
        flex-wrap: wrap;
        border-radius: 18px;
    }

    .home-clean-alert .btn {
        width: 100%;
    }

    .home-action-card {
        min-height: auto;
        padding: 15px;
        border-radius: 18px;
    }

    .home-action-card__icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 16px;
    }

    .home-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-section-head .btn {
        width: 100%;
    }

    .home-step-list {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Override Biodata Wizard Hero - Compact & Mobile Friendly
   Letakkan PALING BAWAH custom.css
========================================================= */

.biodata-wizard .wizard-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.biodata-wizard .wizard-hero__eyebrow {
    margin: 0;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.biodata-wizard .wizard-hero__title,
.biodata-wizard .wizard-hero__text {
    display: none;
}

.biodata-wizard .wizard-hero__progress {
    width: 320px;
    flex: 0 0 auto;
    padding: 0.72rem 0.85rem;
    border-radius: 15px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    backdrop-filter: none;
}

.biodata-wizard .wizard-hero__progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    margin-bottom: 0.3rem;
    color: #64748b;
    font-size: 0.74rem;
    font-weight: 700;
}

.biodata-wizard .wizard-hero__progress-label {
    display: block;
    margin-bottom: 0.42rem;
    color: #0f172a;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.3;
}

.biodata-wizard .wizard-progress {
    width: 100%;
    height: 7px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
}

.biodata-wizard .wizard-progress__bar {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #2563eb;
    transition: width 0.25s ease;
}

/* Mobile compact */
@media (max-width: 575.98px) {
    .biodata-wizard .wizard-hero {
        gap: 0.6rem;
        padding: 0.7rem;
        border-radius: 16px;
    }

    .biodata-wizard .wizard-hero__eyebrow {
        padding: 0.38rem 0.55rem;
        font-size: 0.62rem;
        letter-spacing: 0.04em;
    }

    .biodata-wizard .wizard-hero__progress {
        width: auto;
        min-width: 0;
        flex: 1 1 auto;
        padding: 0.6rem;
        border-radius: 13px;
    }

    .biodata-wizard .wizard-hero__progress-top {
        gap: 0.45rem;
        margin-bottom: 0.25rem;
        font-size: 0.66rem;
    }

    .biodata-wizard .wizard-hero__progress-label {
        margin-bottom: 0.32rem;
        font-size: 0.74rem;
    }

    .biodata-wizard .wizard-progress {
        height: 6px;
    }
}

/* HP sangat kecil */
@media (max-width: 420px) {
    .biodata-wizard .wizard-hero__eyebrow {
        max-width: 72px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .biodata-wizard .wizard-hero__progress-top {
        font-size: 0.62rem;
    }

    .biodata-wizard .wizard-hero__progress-label {
        font-size: 0.7rem;
    }
}

/* Fix responsive label Profil Pelamar */
.biodata-wizard .wizard-hero__identity {
    flex: 0 0 auto;
    min-width: 0;
}

.biodata-wizard .wizard-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    max-width: 100%;
    white-space: nowrap;
}

/* HP sedang */
@media (max-width: 575.98px) {
    .biodata-wizard .wizard-hero__identity {
        flex: 0 0 auto;
    }

    .biodata-wizard .wizard-hero__eyebrow {
        padding: 0;
        width: 38px;
        height: 38px;
        border-radius: 13px;
        font-size: 0.8rem;
    }

    .biodata-wizard .wizard-hero__eyebrow span {
        display: none;
    }

    .biodata-wizard .wizard-hero__eyebrow i {
        margin: 0;
    }
}

/* Kurangi jarak bawah wizard */
.biodata-wizard .wizard-hero {
    margin-bottom: 0 !important;
}

.biodata-wizard .wizard-hero__progress {
    margin-bottom: 0 !important;
}

.biodata-wizard .wizard-progress {
    margin-bottom: 0 !important;
}

.biodata-wizard .wizard-shell {
    margin-top: 1rem !important; /* setara mb-3 */
}

.biodata-wizard .sticky-tabs {
    margin-bottom: 1rem !important; /* setara mb-3 */
}

@media (max-width: 767.98px) {
    .biodata-wizard .wizard-shell {
        margin-top: 1rem !important;
    }

    .biodata-wizard .sticky-tabs {
        margin-bottom: 1rem !important;
    }
}
