﻿:root {
    --wsm-ne-bg: #f7f9fc;
    --wsm-ne-surface: #ffffff;
    --wsm-ne-ink: #0b1f3a;
    --wsm-ne-muted: #64748b;
    --wsm-ne-line: #dfe7ef;
    --wsm-ne-teal: #00a8c8;
    --wsm-ne-teal-2: #e5fbff;
    --wsm-ne-teal-dark: #007d95;
    --wsm-ne-red: #dc2626;
    --wsm-ne-green: #16a34a;
    --wsm-ne-shadow: 0 18px 44px rgba(11,31,58,.08);
    --wsm-ne-shadow-lg: 0 28px 70px rgba(11,31,58,.13);
}

.wsm-newemp-page {
    background: var(--wsm-ne-bg);
    color: var(--wsm-ne-ink);
    overflow-x: hidden;
}

.wsm-newemp-shell {
    width: 100%;
    max-width: none;
    padding-left: 32px;
    padding-right: 32px;
    margin: 0 auto;
}

.wsm-newemp-hero {
    padding: clamp(52px,5vw,90px) 0;
    background: linear-gradient(rgba(11,31,58,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.035) 1px, transparent 1px), radial-gradient(circle at 8% 12%, rgba(0,168,200,.11), transparent 30%), radial-gradient(circle at 90% 18%, rgba(29,78,216,.07), transparent 28%), linear-gradient(135deg,#fbfdff 0%,#f4f8fb 52%,#eef5f8 100%);
    background-size: 46px 46px,46px 46px,auto,auto,auto;
}

.wsm-newemp-grid {
    display: grid;
    grid-template-columns: minmax(0,.8fr) minmax(760px,1fr);
    gap: 36px;
    align-items: start;
}

.wsm-newemp-intro,
.wsm-newemp-formcard {
    position: relative;
    border-radius: 32px;
    background: rgba(255,255,255,.95);
    border: 1px solid var(--wsm-ne-line);
    box-shadow: var(--wsm-ne-shadow-lg);
    overflow: hidden;
}

.wsm-newemp-intro {
    padding: 48px;
    min-height: 760px;
    position: sticky;
    top: 24px;
}

.wsm-newemp-formcard {
    padding: 0;
}

    .wsm-newemp-intro::before,
    .wsm-newemp-formcard::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(11,31,58,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.035) 1px, transparent 1px);
        background-size: 34px 34px;
        opacity: .5;
        pointer-events: none;
    }

    .wsm-newemp-intro > *,
    .wsm-newemp-formcard > * {
        position: relative;
        z-index: 1;
    }

.wsm-newemp-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--wsm-ne-line);
    color: var(--wsm-ne-teal-dark);
    font-size: .82rem;
    font-weight: 950;
    letter-spacing: .11em;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(11,31,58,.05);
}

.wsm-newemp-intro h1 {
    margin: 28px 0 18px;
    font-size: clamp(3rem,5vw,5.6rem);
    line-height: .95;
    letter-spacing: -.07em;
    font-weight: 950;
    color: var(--wsm-ne-ink);
}

.wsm-newemp-intro p {
    max-width: 720px;
    color: var(--wsm-ne-muted);
    line-height: 1.9;
    font-size: 1.04rem;
    font-weight: 620;
}

.wsm-newemp-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

    .wsm-newemp-proof span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 42px;
        padding: 0 14px;
        border-radius: 999px;
        background: #fff;
        border: 1px solid var(--wsm-ne-line);
        font-size: .84rem;
        font-weight: 900;
        box-shadow: 0 8px 22px rgba(11,31,58,.05);
    }

    .wsm-newemp-proof i {
        color: var(--wsm-ne-teal-dark);
    }

.wsm-newemp-orbit {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 420px;
    margin: 60px auto 0;
    border-radius: 999px;
}

    .wsm-newemp-orbit::before,
    .wsm-newemp-orbit::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 999px;
        border: 1px dashed rgba(0,168,200,.25);
        animation: wsmNewOrbit 18s linear infinite;
    }

    .wsm-newemp-orbit::after {
        inset: 42px;
        animation-direction: reverse;
        animation-duration: 22s;
    }

@keyframes wsmNewOrbit {
    to {
        transform: rotate(360deg);
    }
}

.wsm-newemp-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 220px;
    min-height: 220px;
    border-radius: 34px;
    background: var(--wsm-ne-ink);
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
    box-shadow: 0 24px 58px rgba(11,31,58,.25);
    animation: wsmNewCoreFloat 5s ease-in-out infinite;
}

@keyframes wsmNewCoreFloat {
    0%, 100% {
        transform: translate(-50%,-50%);
    }

    50% {
        transform: translate(-50%, calc(-50% - 10px));
    }
}

.wsm-newemp-core i {
    font-size: 2.4rem;
    color: #9ceeff;
}

.wsm-newemp-core strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 950;
}

.wsm-newemp-core small {
    color: rgba(255,255,255,.72);
    font-size: .8rem;
}

.orbit-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--wsm-ne-teal);
    box-shadow: 0 0 0 10px rgba(0,168,200,.12);
    animation: wsmNewPulse 2.4s ease-in-out infinite;
}

.dot-a {
    left: 30px;
    top: 80px;
}

.dot-b {
    right: 40px;
    top: 120px;
    animation-delay: .35s;
}

.dot-c {
    left: 50%;
    bottom: 32px;
    animation-delay: .7s;
}

@keyframes wsmNewPulse {
    0%, 100% {
        transform: scale(1);
        opacity: .9;
    }

    50% {
        transform: scale(1.45);
        opacity: .45;
    }
}

.wsm-newemp-head {
    min-height: 72px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--wsm-ne-line);
    background: rgba(251,253,255,.9);
}

    .wsm-newemp-head span,
    .wsm-newemp-head strong {
        text-transform: uppercase;
        letter-spacing: .11em;
        font-size: .74rem;
        font-weight: 950;
        color: #8a98aa;
    }

    .wsm-newemp-head strong {
        color: var(--wsm-ne-teal-dark);
    }

.wsm-newemp-form {
    padding: 34px;
}

.wsm-newemp-sectiontitle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 18px;
    padding-top: 16px;
    color: var(--wsm-ne-ink);
    font-size: 1rem;
    font-weight: 950;
}

    .wsm-newemp-sectiontitle i {
        color: var(--wsm-ne-teal-dark);
    }

.wsm-newemp-grid-2 {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px;
}

.wsm-newemp-grid-3 {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
}

.wsm-newemp-field {
    position: relative;
    margin-bottom: 18px;
}

    .wsm-newemp-field label {
        display: block;
        margin-bottom: 8px;
        color: var(--wsm-ne-ink);
        font-size: .78rem;
        letter-spacing: .09em;
        text-transform: uppercase;
        font-weight: 950;
    }

        .wsm-newemp-field label em {
            color: var(--wsm-ne-red);
            font-style: normal;
        }

    .wsm-newemp-field input,
    .wsm-newemp-field select,
    .wsm-newemp-field textarea {
        width: 100%;
        border: 1px solid var(--wsm-ne-line);
        border-radius: 16px;
        background: rgba(251,253,255,.92);
        color: var(--wsm-ne-ink);
        font-size: .95rem;
        font-weight: 750;
        outline: none;
        transition: all .22s ease;
    }

    .wsm-newemp-field input,
    .wsm-newemp-field select {
        min-height: 58px;
        padding: 0 18px;
    }

    .wsm-newemp-field textarea {
        min-height: 120px;
        padding: 16px 18px;
        resize: vertical;
    }

        .wsm-newemp-field input:focus,
        .wsm-newemp-field select:focus,
        .wsm-newemp-field textarea:focus {
            border-color: rgba(0,168,200,.48);
            box-shadow: 0 0 0 4px rgba(0,168,200,.10);
            background: #fff;
        }

    .wsm-newemp-field.is-valid input,
    .wsm-newemp-field.is-valid select,
    .wsm-newemp-field.is-valid textarea {
        border-color: rgba(22,163,74,.45);
        box-shadow: 0 0 0 4px rgba(22,163,74,.08);
    }

    .wsm-newemp-field.is-invalid input,
    .wsm-newemp-field.is-invalid select,
    .wsm-newemp-field.is-invalid textarea {
        border-color: rgba(220,38,38,.50);
        box-shadow: 0 0 0 4px rgba(220,38,38,.08);
    }

.wsm-newemp-error {
    display: block;
    min-height: 18px;
    margin-top: 7px;
    color: var(--wsm-ne-red);
    font-size: .78rem;
    line-height: 1.35;
    font-weight: 850;
}

.wsm-newemp-field.is-valid::after {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    right: 16px;
    top: 42px;
    color: var(--wsm-ne-green);
    font-size: 1rem;
    pointer-events: none;
}

.wsm-newemp-field:has(input[type="file"])::after {
    display: none;
}

.wsm-newemp-field input[type="file"] {
    padding: 13px 14px;
    min-height: 58px;
    cursor: pointer;
}

    .wsm-newemp-field input[type="file"]::file-selector-button {
        min-height: 38px;
        padding: 0 16px;
        margin-right: 14px;
        border-radius: 12px;
        border: 1px solid rgba(0,168,200,.30);
        color: var(--wsm-ne-teal-dark);
        background: var(--wsm-ne-teal-2);
        font-weight: 950;
        cursor: pointer;
        transition: all .22s ease;
    }

        .wsm-newemp-field input[type="file"]::file-selector-button:hover {
            background: #fff;
            box-shadow: 0 10px 22px rgba(0,168,200,.12);
        }

.wsm-newemp-checks {
    display: grid;
    gap: 14px;
    margin-top: 6px;
}

    .wsm-newemp-checks label {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
        border-radius: 16px;
        background: #fff;
        border: 1px solid var(--wsm-ne-line);
        font-size: .92rem;
        line-height: 1.7;
        font-weight: 700;
        transition: all .22s ease;
    }

        .wsm-newemp-checks label:hover {
            border-color: rgba(0,168,200,.34);
            box-shadow: 0 14px 32px rgba(11,31,58,.07);
            transform: translateY(-2px);
        }

    .wsm-newemp-checks input {
        margin-top: 6px;
        accent-color: var(--wsm-ne-teal-dark);
    }

.wsm-newemp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    margin-top: 34px;
}

.wsm-newemp-btn {
    min-height: 56px;
    padding: 0 22px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-size: .94rem;
    font-weight: 950;
    transition: all .25s ease;
}

    .wsm-newemp-btn.primary {
        color: #fff;
        background: linear-gradient(135deg,#00a8c8,#007d95);
        box-shadow: 0 18px 38px rgba(0,168,200,.22);
    }

    .wsm-newemp-btn.outline {
        color: var(--wsm-ne-ink);
        background: #fff;
        border: 1px solid var(--wsm-ne-line);
    }

    .wsm-newemp-btn i {
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        background: rgba(255,255,255,.22);
        transition: transform .25s ease;
    }

    .wsm-newemp-btn.outline i {
        background: #eef7fa;
    }

    .wsm-newemp-btn:hover {
        transform: translateY(-3px);
    }

        .wsm-newemp-btn:hover i {
            transform: translateX(4px);
        }

.wsm-newemp-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-weight: 850;
    line-height: 1.55;
}

    .wsm-newemp-alert.success {
        color: #166534;
        background: #dcfce7;
        border: 1px solid #86efac;
    }

    .wsm-newemp-alert.error {
        color: #991b1b;
        background: #fee2e2;
        border: 1px solid #fecaca;
    }

.wsm-newemp-validation-summary {
    color: var(--wsm-ne-red);
    font-weight: 850;
    line-height: 1.5;
}

.wsm-newemp-hidden {
    display: none !important;
}

@media(max-width:1400px) {
    .wsm-newemp-grid {
        grid-template-columns: 1fr;
    }

    .wsm-newemp-intro {
        position: relative;
        top: auto;
        min-height: auto;
    }
}

@media(max-width:767.98px) {
    .wsm-newemp-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

    .wsm-newemp-intro,
    .wsm-newemp-form {
        padding: 22px;
    }

    .wsm-newemp-head {
        padding: 18px 22px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .wsm-newemp-intro h1 {
        font-size: clamp(2.5rem,12vw,3.8rem);
    }

    .wsm-newemp-grid-2,
    .wsm-newemp-grid-3 {
        grid-template-columns: 1fr;
    }

    .wsm-newemp-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .wsm-newemp-btn {
        width: 100%;
        justify-content: center;
    }

    .wsm-newemp-orbit {
        max-width: 320px;
        height: 320px;
    }

    .wsm-newemp-core {
        width: 180px;
        min-height: 180px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wsm-newemp-orbit::before,
    .wsm-newemp-orbit::after,
    .wsm-newemp-core,
    .orbit-dot {
        animation: none !important;
    }
}


/* =========================================================
   SUCCESS POPUP
========================================================= */

.wsm-newemp-success-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 12, 24, 0.58);
    backdrop-filter: blur(10px);
    animation: wsmFadeIn .35s ease;
}

    .wsm-newemp-success-overlay.hide {
        opacity: 0;
        visibility: hidden;
        transition: .3s ease;
    }

.wsm-newemp-success-modal {
    width: min(92%, 560px);
    padding: 42px 36px;
    border-radius: 34px;
    background: linear-gradient( 180deg, rgba(255,255,255,.98), rgba(248,252,255,.96) );
    border: 1px solid rgba(120, 210, 255, 0.18);
    box-shadow: 0 40px 100px rgba(7, 24, 52, 0.22), inset 0 1px 0 rgba(255,255,255,.8);
    text-align: center;
    animation: wsmPopupUp .45s cubic-bezier(.16,1,.3,1);
}

.wsm-newemp-success-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, #3ee08f, #11995e);
    color: #fff;
    font-size: 3rem;
    box-shadow: 0 18px 40px rgba(17, 153, 94, 0.28);
    animation: wsmPulse 2s infinite;
}

.wsm-newemp-success-modal h3 {
    margin-bottom: 14px;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 900;
    color: #082046;
}

.wsm-newemp-success-modal p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #5e708f;
    font-size: 1rem;
}

.wsm-newemp-success-btn {
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 999px;
    background: linear-gradient( 135deg, #16b5d8, #0284c7 );
    color: #fff;
    font-weight: 800;
    font-size: .95rem;
    box-shadow: 0 12px 30px rgba(2,132,199,.28);
    transition: .3s ease;
}

    .wsm-newemp-success-btn:hover {
        transform: translateY(-3px);
    }

@keyframes wsmFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes wsmPopupUp {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes wsmPulse {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}