        :root {
            --bg: #ffffff;
            --white: #ffffff;
            --surface: #fff8f4;
            --surface2: #f7f1ed;
            --border: rgba(0, 0, 0, .10);
            --border2: rgba(0, 0, 0, .20);
            --orange: #ff7f50;
            --orange-lt: #ff936b;
            --orange-dk: #374151;
            --orange-bg: rgba(255, 127, 80, .10);
            --orange-bg2: rgba(255, 127, 80, .18);
            --orange-glow: rgba(255, 127, 80, .20);
            --text: #374151;
            --text2: #374151;
            --text3: rgba(0, 0, 0, .48);
            --text4: #0000007a;
            --text5: rgba(0, 0, 0, .32);
            --ok: #248a52;
            --ok-bg: #eefaf3;
            --err: #c53b31;
            --err-bg: #fff2f1;
            --warn: #aa6d12;
            --warn-bg: #fff8ea;
            --sh-sm: 0 10px 30px rgba(0, 0, 0, .05);
            --sh-md: 0 18px 50px rgba(0, 0, 0, .07);
            --sh-lg: 0 28px 80px rgba(0, 0, 0, .10);
            --sh-xl: 0 40px 120px rgba(0, 0, 0, .12);
            --r-xs: 4px;
            --r-sm: 8px;
            --r-md: 14px;
            --r-lg: 20px;
            --r-xl: 28px;
            --r-2xl: 36px;
            --r-full: 999px;
            --ease: cubic-bezier(.4, 0, .2, 1);
            --ease-sp: cubic-bezier(.34, 1.56, .64, 1);
            --ease-out: cubic-bezier(0, 0, .2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px
        }

        body {
            font-family: 'DM Sans', system-ui, sans-serif;
            /* background:
                radial-gradient(circle at top left, rgba(255, 127, 80, .10), transparent 24%),
                linear-gradient(180deg, #ffffff 0%, #fff7f2 100%); */

            background: #ffffff !important;
            color: var(--text);
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none
        }

        input,
        textarea,
        select {
            font-family: inherit
        }

        a {
            text-decoration: none;
            color: inherit
        }

        ::selection {
            background: var(--orange-bg2);
            color: var(--text)
        }

        :focus-visible {
            outline: 2px solid var(--orange);
            outline-offset: 2px;
            border-radius: var(--r-xs)
        }

        ::-webkit-scrollbar {
            width: 5px
        }

        ::-webkit-scrollbar-track {
            background: var(--surface)
        }

        ::-webkit-scrollbar-thumb {
            background: var(--border2);
            border-radius: 10px
        }

        /* TOAST */
        #toast {
            position: fixed;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%) translateY(80px);
            padding: 12px 22px;
            border-radius: var(--r-full);
            font-size: 13px;
            font-weight: 500;
            z-index: 900;
            opacity: 0;
            white-space: nowrap;
            pointer-events: none;
            box-shadow: var(--sh-lg);
            transition: transform .32s var(--ease-sp), opacity .32s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        #toast.ok {
            background: #374151;
            color: #FAFAF8
        }

        #toast.err {
            background: var(--err-bg);
            color: var(--err);
            border: 1px solid rgba(196, 41, 26, .15)
        }

        /* HEADER */
        .hdr {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 200;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            background: rgba(255, 255, 255, .82);
            backdrop-filter: blur(22px) saturate(180%);
            border-bottom: 1px solid transparent;
            transition: all .3s var(--ease);
        }

        .hdr.scrolled {
            border-color: rgba(0, 0, 0, .08);
            box-shadow: var(--sh-sm)
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px
        }

        .logo-mark {
            width: 52px;
            height: 52px;
            flex: 0 0 52px;
            border-radius: 14px;
            padding: 8px;
            background: rgba(255, 255, 255, .76);
            border: 1px solid rgba(17, 17, 17, .06);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: var(--sh-sm);
            transition: transform .22s var(--ease-sp);
        }

        .logo-mark:hover {
            transform: scale(1.08) rotate(-3deg)
        }

        .logo-mark img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .logo-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            line-height: 1.15;
        }

        .logo-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            letter-spacing: .1px
        }

        .logo-tag {
            font-size: 11px;
            color: var(--text4);
            font-weight: 400;
            margin-top: 2px
        }

        .hdr-r {
            display: flex;
            align-items: center;
            gap: 10px
        }

        .hdr-pill {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 7px 14px;
            background: rgba(255, 255, 255, .82);
            border: 1px solid rgba(17, 17, 17, .06);
            border-radius: var(--r-full);
            font-size: 11.5px;
            color: var(--text2);
            font-weight: 600;
        }

        .hdr-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--orange);
            animation: livePulse 2.5s ease infinite
        }

        @keyframes livePulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(26, 138, 74, .4)
            }

            50% {
                box-shadow: 0 0 0 5px transparent
            }
        }

        .hdr-email {
            font-size: 12.5px;
            color: var(--text3);
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 7px 16px;
            border-radius: var(--r-full);
            border: 1px solid rgba(17, 17, 17, .06);
            background: rgba(255, 255, 255, .82);
            transition: all .2s var(--ease);
            font-weight: 500;
        }

        .hdr-email:hover {
            color: var(--orange);
            border-color: rgba(0, 113, 227, .26);
            background: var(--orange-bg)
        }

        /* ============================================
           HERO — rebuilt to match reference image
           ============================================ */

        .hero {
            position: relative;
            width: 100%;
            min-height: calc(100vh - 68px);
            background-color: #fcfcfc;
            /* background-color: #ffffff !important; */
            display: grid;
            grid-template-columns: minmax(0, 1.4fr) minmax(320px, 420px);
            grid-template-rows: auto 1fr;
            overflow: hidden;
            padding: 90px 120px 270px;
            column-gap: 88px;
        }

        /* Thin vertical rule between left and right columns (top area only) */
        .hero::before {
            content: '';
            position: absolute;
            left: 180px;
            top: 90px;
            height: 52%;
            width: 1px;
            background: rgba(17, 17, 17, .12);
            pointer-events: none;
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute;
            left: calc(100% - 120px - 420px - 44px);
            top: 90px;
            height: 52%;
            width: 1px;
            background: rgba(17, 17, 17, .12);
            pointer-events: none;
            z-index: 1;
        }

        /* LEFT: headline block */
        .hero-left {
            grid-column: 1;
            grid-row: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            text-align: left;
            z-index: 2;
            max-width: 760px;
            padding-left: 105px;
        }

        /* RIGHT: supporting copy */
        .hero-right {
            grid-column: 2;
            grid-row: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            text-align: left;
            z-index: 2;
            padding-top: 22px;
            padding-right: 44px;
            max-width: 420px;
            min-height: 360px;
            border-right: 1px solid rgba(17, 17, 17, .12);
        }

        /* VIDEO ROW: spans full width, sits below both columns */
        .hero-video-row {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            width: 100%;
            min-height: 420px;
            z-index: 2;
            pointer-events: none;
        }

        /* The video wrapper — natural size, centered, overflow hidden */
        .hero-video-wrap {
            position: absolute;
            left: 50%;
            bottom: 0;
            z-index: -1;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            width: auto;
            height: min(67vh, 100%);
            filter: saturate(.92) contrast(.98);
            pointer-events: auto;
        }

        .hero-video-wrap video {
            display: block;
            width: auto;
            height: 100%;
            object-fit: contain;
        }

        /* Bottom colorful strip — mimics the reference orange/teal blocks at bottom */
        .hero-tag {
            display: none;
        }

        .hero-h {
            font-family: SF Pro Display, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
            font-size: clamp(42px, 4.9vw, 58px);
            font-weight: 550;
            line-height: .98;
            letter-spacing: -3.2px;
            color: #374151;
            max-width: 620px;
            margin-bottom: 0;
            opacity: 0;
            animation: fadeUp .6s var(--ease-out) .2s both;
            z-index: 10;
        }

        /* The orange dot at the end — matches reference exactly */
        .hero-h .dot-accent {
            color: var(--orange);
            font-style: normal;
        }

        /* ---- Right copy ---- */
        .hero-copy-headline {
            font-family: 'DM Sans', system-ui, sans-serif;
            font-size: clamp(22px, 2.2vw, 28px);
            font-weight: 700;
            color: #121212;
            line-height: 1.35;
            letter-spacing: -.5px;
            margin-bottom: 34px;
            opacity: 0;
            animation: fadeUp .6s var(--ease-out) .25s both;
        }

        .hero-copy-headline em {
            color: var(--orange);
            font-style: normal;
        }

        .hero-copy-sub {
            font-size: 15px;
            color: #767676;
            line-height: 1.7;
            font-weight: 400;
            max-width: 360px;
            opacity: 0;
            z-index: 10;
            animation: fadeUp .6s var(--ease-out) .35s both;
        }

        .hero-copy-sub em {
            color: #111111;
            font-style: normal;
            font-weight: 600;
        }

        .hero-cta-wrap,
        .hero-stats,
        .hero-bottom-strip {
            display: none;
        }

        /* ---- CTA button — pill, dark, centered below video ---- */
        .hero-cta-wrap {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            opacity: 0;
            animation: fadeUp .6s var(--ease-out) .55s both;
        }

        .hero-cta-pill {
            padding: 16px 44px;
            background: var(--text);
            color: var(--bg);
            border-radius: var(--r-full);
            font-size: 15px;
            font-weight: 600;
            letter-spacing: .2px;
            box-shadow: 0 6px 24px rgba(26, 22, 18, .22);
            transition: all .22s var(--ease-sp);
            white-space: nowrap;
            border: none;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
        }

        .hero-cta-pill:hover {
            transform: translateY(-2px);
            background: var(--text2);
            box-shadow: 0 10px 32px rgba(26, 22, 18, .30);
        }

        .hero-cta-pill:active {
            transform: scale(.97)
        }

        /* ---- Stats row ---- */
        .hero-stats {
            display: flex;
            gap: 32px;
            margin-top: 48px;
            padding-top: 28px;
            border-top: 1px solid var(--border);
            opacity: 0;
            animation: fadeUp .6s var(--ease-out) .5s both;
        }

        .stat-num {
            font-family: 'Fraunces', serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--orange);
            line-height: 1;
        }

        .stat-label {
            font-size: 11.5px;
            color: var(--text4);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: .8px;
            margin-top: 5px
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* ============================================
           RESPONSIVE
           ============================================ */

        @media (max-width: 1000px) {
            .hero {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto auto;
                padding: 58px 20px 0;
                row-gap: 20px;
            }

            .hero::before,
            .hero::after {
                display: none;
            }

            .hero-left {
                grid-column: 1;
                grid-row: 1;
                padding-left: 0;
                justify-content: center;
                align-items: center;
                text-align: center;
                max-width: none;
            }

            .hero-right {
                grid-column: 1;
                grid-row: 2;
                align-items: center;
                text-align: center;
                padding: 0 0 230px;
                max-width: none;
                min-height: auto;
                border-right: none;
            }

            .hero-video-row {
                min-height: 300px;
            }

            .hero-h {
                font-size: clamp(40px, 8vw, 56px);
                letter-spacing: -1.5px;
                max-width: none;
            }

            .hero-copy-headline,
            .hero-copy-sub {
                max-width: 520px;
            }

            .hero-video-wrap {
                height: min(46vh, 440px);
            }

            .type-grid,
            .role-grid {
                grid-template-columns: 1fr;
            }

            .role-foot {
                grid-template-columns: 1fr;
                align-items: start;
            }

            .role-foot .detail-cta {
                width: 100%;
                min-width: 0;
            }

            .role-hero-actions {
                justify-content: center;
            }
        }

        @media (max-width: 640px) {
            .hero {
                padding: 72px 18px 0;
            }

            .hero-right {
                padding: 0 0 190px;
            }

            .hero-h {
                font-size: clamp(32px, 11vw, 44px);
                letter-spacing: -1px;
            }

            .hero-copy-headline {
                font-size: 18px;
                margin-bottom: 16px;
            }

            .hero-copy-sub {
                font-size: 14px;
            }

            .hero-video-wrap {
                height: min(38vh, 280px);
            }

            .role-title {
                font-size: 26px;
            }

            .role-foot {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .role-hero {
                padding: 22px;
                border-radius: 22px;
            }

            .role-section {
                padding: 18px;
                border-radius: 20px;
            }

            .role-summary {
                font-size: 14px;
                line-height: 1.65;
            }

            .search-wrap {
                min-width: 0;
            }

            .search-in {
                min-width: 0;
            }
        }

        /* WIZARD SECTION */
        .wizard-section {
            background: transparent;
            padding: 96px 0 120px;
            position: relative;
        }

        .wizard-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
        }

        .wizard-inner {
            max-width: 1060px;
            margin: 0 auto;
            padding: 0 28px;
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 36px;
            align-items: start;
        }

        /* SIDEBAR */
        .sidebar-progress {
            position: sticky;
            top: 76px;
            background: rgba(255, 255, 255, .72);
            border: 1px solid rgba(17, 17, 17, .06);
            border-radius: var(--r-2xl);
            padding: 30px 24px;
            box-shadow: var(--sh-md);
            backdrop-filter: blur(22px);
        }

        .sidebar-logo-mini {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 28px;
            padding-bottom: 22px;
            border-bottom: 1px solid var(--border);
        }

        .sidebar-logo-icon {
            width: 30px;
            height: 30px;
            border-radius: 9px;
            background: var(--orange-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            box-shadow: inset 0 0 0 1px rgba(0, 113, 227, .12);
        }

        .sidebar-logo-icon img {
            width: 18px;
            height: 18px;
            object-fit: contain;
            display: block;
        }

        .sidebar-brand {
            font-size: 12.5px;
            font-weight: 600;
            color: var(--text)
        }

        .timeline {
            display: flex;
            flex-direction: column;
            gap: 0
        }

        .tl-item {
            display: flex;
            gap: 14px;
            position: relative
        }

        .tl-item:not(:last-child) .tl-line {
            position: absolute;
            left: 13px;
            top: 36px;
            bottom: 0;
            width: 1.5px;
            background: var(--border);
            transition: background .4s var(--ease);
        }

        .tl-item.tl-done .tl-line {
            background: var(--orange)
        }

        .tl-left {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-shrink: 0;
            padding-top: 5px
        }

        .tl-circle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1.5px solid rgba(17, 17, 17, .08);
            background: rgba(255, 255, 255, .82);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            position: relative;
            z-index: 1;
            transition: all .3s var(--ease-sp);
        }

        .tl-item.tl-active .tl-circle {
            border-color: var(--orange);
            background: var(--orange);
            box-shadow: 0 0 0 5px var(--orange-bg);
        }

        .tl-item.tl-done .tl-circle {
            border-color: var(--orange);
            background: var(--orange)
        }

        .tl-item:not(.tl-active):not(.tl-done) {
            opacity: .45
        }

        .tl-dot-inner {
            font-size: 11px;
            line-height: 1;
            transition: opacity .2s
        }

        .tl-item.tl-active .tl-dot-inner,
        .tl-item.tl-done .tl-dot-inner {
            filter: brightness(0) invert(1)
        }

        .tl-item.tl-done .tl-circle::before {
            content: '✓';
            position: absolute;
            font-size: 12px;
            font-weight: 700;
            color: white
        }

        .tl-item.tl-done .tl-dot-inner {
            opacity: 0
        }

        .tl-right {
            padding: 3px 0 26px
        }

        .tl-step-name {
            font-size: 12px;
            font-weight: 600;
            color: var(--text3);
            letter-spacing: .2px;
            text-transform: uppercase
        }

        .tl-item.tl-active .tl-step-name,
        .tl-item.tl-done .tl-step-name {
            color: var(--orange)
        }

        .tl-step-sub {
            font-size: 11.5px;
            color: var(--text4);
            font-weight: 400;
            margin-top: 2px
        }

        .tl-step-val {
            margin-top: 7px;
            padding: 5px 10px;
            background: var(--orange-bg);
            border-radius: var(--r-sm);
            border: 1px solid rgba(232, 101, 10, .15);
            font-size: 11.5px;
            color: var(--orange-dk);
            font-weight: 500;
            display: none;
        }

        .tl-step-val.show {
            display: block
        }

        .sidebar-eta {
            margin-top: 22px;
            padding-top: 18px;
            border-top: 1px solid var(--border);
            font-size: 12px;
            color: var(--text4);
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .sidebar-help {
            margin-top: 16px;
            padding: 14px;
            background: rgba(255, 255, 255, .7);
            border-radius: var(--r-lg);
            border: 1px solid rgba(17, 17, 17, .06);
        }

        .sidebar-help-label {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text5);
            margin-bottom: 7px;
        }

        .sidebar-help-email {
            font-size: 12px;
            font-weight: 600;
            color: var(--orange);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .sidebar-help-email:hover {
            color: var(--orange-dk)
        }

        /* MAIN PANEL */
        .main-panel {
            min-width: 0
        }

        .step-panel {
            display: none
        }

        .step-panel.active {
            display: block;
            animation: panelIn .35s var(--ease-out) both
        }

        @keyframes panelIn {
            from {
                opacity: 0;
                transform: translateY(16px) scale(.99)
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1)
            }
        }

        .panel-card {
            background: rgba(255, 255, 255, .82);
            border: 1px solid rgba(17, 17, 17, .06);
            border-radius: var(--r-2xl);
            overflow: hidden;
            box-shadow: var(--sh-lg);
            margin-bottom: 20px;
            backdrop-filter: blur(22px);
        }

        .pc-header {
            padding: 30px 36px 22px;
            border-bottom: 1px solid rgba(17, 17, 17, .06);
            background: linear-gradient(180deg, rgba(251, 251, 253, .98) 0%, rgba(255, 255, 255, .85) 100%);
        }

        .pc-eyebrow {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 7px;
        }

        .pc-title {
            font-family: 'DM Sans', system-ui, sans-serif;
            font-size: clamp(24px, 2.8vw, 36px);
            font-weight: 650;
            color: var(--text);
            letter-spacing: -1.1px;
            line-height: 1.12;
        }

        .pc-sub {
            font-size: 15px;
            color: var(--text3);
            margin-top: 10px;
            line-height: 1.65;
            max-width: 580px
        }

        .pc-body {
            padding: 30px 36px 38px
        }

        /* SEARCH BAR */
        .search-zone {
            position: relative;
            margin-bottom: 22px
        }

        .search-wrap {
            display: flex;
            align-items: center;
            gap: 0;
            border: 1px solid rgba(17, 17, 17, .08);
            border-radius: var(--r-full);
            background: rgba(255, 255, 255, .86);
            transition: all .2s var(--ease);
            overflow: hidden;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
        }

        .search-wrap:focus-within {
            border-color: var(--orange);
            box-shadow: 0 0 0 3px var(--orange-glow);
        }

        .search-ico {
            padding: 0 14px 0 16px;
            font-size: 15px;
            color: var(--text4);
            flex-shrink: 0
        }

        .search-in {
            flex: 1;
            padding: 12px 0;
            font-size: 13.5px;
            font-family: 'DM Sans', sans-serif;
            background: transparent;
            outline: none;
            color: var(--text);
            border: none;
            font-weight: 400;
        }

        .search-in::placeholder {
            color: var(--text5)
        }

        .smart-btn {
            padding: 8px 16px 8px 12px;
            margin: 5px 6px 5px 0;
            border-radius: var(--r-full);
            background: var(--orange);
            color: white;
            font-size: 11.5px;
            font-weight: 600;
            letter-spacing: .3px;
            box-shadow: 0 10px 24px rgba(0, 113, 227, .18);
            transition: all .2s var(--ease-sp);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .smart-btn:hover {
            background: var(--orange-lt);
            transform: scale(1.04)
        }

        .search-dd {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            z-index: 400;
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: var(--r-lg);
            box-shadow: var(--sh-xl);
            overflow: hidden;
            display: none;
            max-height: 320px;
            overflow-y: auto;
            animation: ddIn .18s var(--ease-out);
        }

        .search-dd.open {
            display: block
        }

        @keyframes ddIn {
            from {
                opacity: 0;
                transform: translateY(-6px) scaleY(.97);
                transform-origin: top
            }

            to {
                opacity: 1;
                transform: none
            }
        }

        .dd-sec-lbl {
            padding: 10px 16px 6px;
            font-size: 10.5px;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: var(--text4);
            background: var(--surface);
            border-top: 1px solid var(--border);
            position: sticky;
            top: 0;
        }

        .dd-sec-lbl:first-child {
            border-top: none
        }

        .dd-row {
            padding: 10px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: background .1s;
            border-bottom: 1px solid var(--border);
        }

        .dd-row:last-child {
            border-bottom: none
        }

        .dd-row:hover {
            background: var(--orange-bg)
        }

        .dd-row-icon {
            width: 34px;
            height: 34px;
            border-radius: var(--r-sm);
            background: var(--surface);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
            border: 1px solid var(--border);
        }

        .dd-row-body {
            flex: 1;
            min-width: 0
        }

        .dd-row-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--text)
        }

        .dd-row-name mark {
            background: var(--orange-bg2);
            color: var(--orange-dk);
            border-radius: 2px;
            padding: 0 1px
        }

        .dd-row-sub {
            font-size: 11.5px;
            color: var(--text4);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis
        }

        .dd-badge {
            font-size: 10.5px;
            font-weight: 600;
            padding: 3px 9px;
            border-radius: var(--r-full);
            background: var(--orange-bg);
            color: var(--orange);
            border: 1px solid rgba(232, 101, 10, .2);
            flex-shrink: 0;
        }

        .dd-empty {
            padding: 20px 16px;
            text-align: center;
            color: var(--text4);
            font-size: 13px
        }

        .dd-recent-lbl {
            padding: 10px 16px 6px;
            font-size: 10.5px;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: var(--text4);
        }

        .dd-recent-row {
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: background .1s;
        }

        .dd-recent-row:hover {
            background: var(--surface)
        }

        .dd-recent-icon {
            font-size: 12px;
            color: var(--text4)
        }

        .dd-recent-txt {
            font-size: 13px;
            color: var(--text2);
            font-weight: 400
        }

        /* TYPE GRID */
        .type-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px
        }

        .t-card {
            background: rgba(255, 255, 255, .84);
            border: 1px solid rgba(17, 17, 17, .08);
            border-radius: 26px;
            padding: 26px 24px 24px;
            cursor: pointer;
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: all .22s var(--ease-sp);
            opacity: 0;
            transform: translateY(10px) scale(.98);
            box-shadow: var(--sh-sm);
            min-height: 238px;
        }

        .t-card.revealed {
            opacity: 1;
            transform: translateY(0) scale(1)
        }

        .t-card:hover {
            border-color: var(--orange);
            transform: translateY(-4px);
            box-shadow: var(--sh-lg), 0 0 0 1px rgba(75, 85, 99, .12);
            background: var(--orange-bg);
        }

        .t-card:active {
            transform: scale(.97)
        }

        .t-card.sel {
            border-color: var(--orange);
            background: var(--orange-bg);
            box-shadow: 0 0 0 2px rgba(75, 85, 99, .18), var(--sh-md);
            transform: translateY(-3px);
        }

        .t-check {
            position: absolute;
            top: 11px;
            right: 11px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 11px;
            font-weight: 700;
            transform: scale(0) rotate(-45deg);
            opacity: 0;
            transition: all .25s var(--ease-sp);
        }

        .t-card.sel .t-check {
            transform: scale(1) rotate(0);
            opacity: 1
        }

        .t-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 12px;
            background: var(--surface);
            border: 1px solid var(--border);
            transition: transform .22s var(--ease-sp);
        }

        .t-card:hover .t-icon,
        .t-card.sel .t-icon {
            transform: scale(1.08) rotate(-4deg)
        }

        .t-name {
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
            line-height: 1.15
        }

        .t-desc {
            font-size: 14px;
            color: var(--text3);
            line-height: 1.6;
            font-weight: 400
        }

        .job-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 18px;
        }

        .job-pill {
            padding: 7px 12px;
            border-radius: var(--r-full);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .4px;
            color: var(--text2);
            background: rgba(255, 255, 255, .92);
            border: 1px solid rgba(17, 17, 17, .07);
        }

        .role-detail {
            display: grid;
            gap: 22px;
        }

        .role-hero {
            padding: 28px;
            border-radius: 28px;
            background: linear-gradient(180deg, rgba(75, 85, 99, .06) 0%, rgba(255, 255, 255, .88) 100%);
            border: 1px solid rgba(17, 17, 17, .06);
            box-shadow: var(--sh-sm);
        }

        .role-kicker {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.8px;
            color: var(--text4);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .role-title {
            font-size: 34px;
            line-height: 1.06;
            letter-spacing: -1.4px;
            color: var(--text);
            font-weight: 700;
            margin-bottom: 14px;
        }

        .role-summary {
            font-size: 16px;
            line-height: 1.75;
            color: var(--text3);
            max-width: 760px;
        }

        .role-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        .role-section {
            background: rgba(255, 255, 255, .88);
            border: 1px solid rgba(17, 17, 17, .06);
            border-radius: 24px;
            padding: 24px;
            box-shadow: var(--sh-sm);
        }

        .role-section.full {
            grid-column: 1 / -1;
        }

        .role-section h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text2);
            margin-bottom: 14px;
            letter-spacing: -.2px;
        }

        .role-list {
            display: grid;
            gap: 10px;
            padding-left: 18px;
            color: var(--text3);
            font-size: 14px;
            line-height: 1.65;
        }

        .role-foot {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: center;
            gap: 24px;
            padding: 26px 0 0;
            margin-top: 8px;
            border-top: 1px solid rgba(17, 24, 39, .06);
        }

        .role-hero-actions {
            display: flex;
            justify-content: flex-end;
            margin-top: 18px;
        }

        .role-foot-copy {
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 13px;
            color: var(--text4);
            line-height: 1.55;
            max-width: 560px;
        }

        .role-foot-note {
            font-size: 13px;
            color: var(--text4);
        }

        .role-foot-help {
            font-size: 13px;
            color: var(--text4);
        }

        .role-foot-help a {
            color: var(--text2);
            font-weight: 600;
            border-bottom: 1px dashed rgba(75, 85, 99, .35);
        }

        .role-foot .detail-cta {
            align-self: center;
            min-width: 232px;
        }

        .detail-cta {
            padding: 14px 22px;
            border-radius: var(--r-full);
            background: #374151;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 18px 32px rgba(0, 0, 0, .16);
            transition: transform .2s var(--ease-sp), box-shadow .2s var(--ease-sp);
        }

        .detail-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 36px rgba(0, 0, 0, .22);
        }

        .detail-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 24px 40px rgba(0, 0, 0, .22);
        }

        .not-sure {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 18px;
            font-size: 13px;
            color: var(--text4);
        }

        .not-sure a {
            color: var(--orange);
            font-weight: 600;
            cursor: pointer;
            border-bottom: 1px dashed rgba(232, 101, 10, .4)
        }

        .not-sure a:hover {
            border-bottom-style: solid
        }

        /* CAT LIST */
        .cat-list {
            display: flex;
            flex-direction: column;
            gap: 8px
        }

        .cat-row {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            border-radius: var(--r-md);
            border: 1px solid rgba(17, 17, 17, .08);
            background: rgba(255, 255, 255, .84);
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            transition: all .2s var(--ease-sp);
            box-shadow: var(--sh-sm);
            opacity: 0;
            transform: translateX(-10px);
        }

        .cat-row.in {
            opacity: 1;
            transform: translateX(0)
        }

        .cat-row:hover {
            border-color: var(--orange);
            background: var(--orange-bg);
            transform: translateX(5px)
        }

        .cat-row:active {
            transform: scale(.98)
        }

        .cat-row.sel {
            border-color: var(--orange);
            background: var(--orange-bg);
            transform: translateX(5px)
        }

        .cat-row-icon {
            width: 40px;
            height: 40px;
            border-radius: 11px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            background: var(--surface);
            border: 1px solid var(--border);
            transition: all .22s var(--ease-sp);
        }

        .cat-row.sel .cat-row-icon {
            background: var(--orange);
            border-color: var(--orange)
        }

        .cat-row.sel .cat-row-icon span {
            filter: brightness(0) invert(1)
        }

        .cat-row-body {
            flex: 1
        }

        .cat-row-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text)
        }

        .cat-row.sel .cat-row-name {
            color: var(--orange-dk)
        }

        .cat-row-hint {
            font-size: 12px;
            color: var(--text4);
            margin-top: 2px;
            line-height: 1.45
        }

        .cat-row-arr {
            color: var(--text5);
            font-size: 18px;
            transition: all .2s
        }

        .cat-row:hover .cat-row-arr,
        .cat-row.sel .cat-row-arr {
            color: var(--orange);
            transform: translateX(3px)
        }

        /* TYPE BAR */
        .sel-type-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 32px;
            background: rgba(245, 247, 250, .9);
            border-bottom: 1px solid rgba(17, 17, 17, .06);
        }

        .sel-type-info {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 13px;
            color: var(--text2);
            font-weight: 500;
            min-width: 0;
            flex: 1;
        }

        .sti-ic {
            flex: 0 0 auto;
        }

        .sti-t {
            color: var(--text2);
            font-weight: 700;
            line-height: 1.25;
        }

        .sti-s {
            color: var(--text4);
            font-size: 11.5px;
            line-height: 1.35;
            margin-top: 2px;
        }

        .chg-btn {
            font-size: 12.5px;
            color: var(--orange);
            font-weight: 600;
            padding: 5px 14px;
            border-radius: var(--r-full);
            border: 1px solid rgba(0, 113, 227, .18);
            background: var(--orange-bg);
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            transition: all .2s var(--ease-sp);
            flex: 0 0 auto;
            white-space: nowrap;
        }

        .chg-btn:hover {
            background: var(--orange);
            color: white;
            border-color: var(--orange)
        }

        /* FORM */
        .form-bc {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 32px;
            background: rgba(245, 247, 250, .9);
            border-bottom: 1px solid rgba(17, 17, 17, .06);
            font-size: 12.5px;
        }

        .bc-path {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            color: var(--text4);
            min-width: 0;
            flex: 1;
            line-height: 1.4;
        }

        .bc-path .bc-active {
            color: var(--orange);
            font-weight: 600
        }

        .bc-sep {
            color: var(--text5)
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px
        }

        .apply-summary {
            grid-column: 1/-1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 4px;
        }

        .apply-card {
            padding: 14px 16px;
            border-radius: 18px;
            background: linear-gradient(180deg, rgba(249, 250, 251, .98) 0%, rgba(243, 244, 246, .94) 100%);
            border: 1px solid rgba(17, 24, 39, .08);
            box-shadow: 0 14px 34px rgba(17, 24, 39, .05);
        }

        .apply-card-label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .9px;
            text-transform: uppercase;
            color: var(--text4);
            margin-bottom: 6px;
        }

        .apply-card-value {
            font-size: 18px;
            line-height: 1.2;
            letter-spacing: -.3px;
            font-weight: 600;
            color: var(--text);
        }

        .apply-card-note {
            margin-top: 6px;
            font-size: 12px;
            line-height: 1.45;
            color: var(--text4);
        }

        .f-grp {
            display: flex;
            flex-direction: column;
            gap: 5px
        }

        .f-grp.full {
            grid-column: 1/-1
        }

        .f-label {
            font-size: 11px;
            font-weight: 600;
            color: var(--text3);
            text-transform: uppercase;
            letter-spacing: .7px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .f-req {
            color: var(--orange)
        }

        .f-stat {
            margin-left: auto;
            font-size: 10px;
            font-weight: 600
        }

        .f-stat.ok {
            color: var(--ok)
        }

        .f-stat.err {
            color: var(--err)
        }

        .f-wrap {
            position: relative
        }

        .f-inp,
        .f-ta,
        .f-sel {
            width: 100%;
            padding: 11px 14px;
            border: 1px solid rgba(17, 17, 17, .08);
            border-radius: var(--r-md);
            font-size: 13.5px;
            font-family: 'DM Sans', sans-serif;
            background: rgba(255, 255, 255, .88);
            outline: none;
            color: var(--text);
            transition: all .2s var(--ease);
            resize: none;
            appearance: none;
            font-weight: 400;
            line-height: 1.55;
        }

        .f-inp::placeholder,
        .f-ta::placeholder {
            color: var(--text5)
        }

        .f-inp:hover,
        .f-ta:hover {
            border-color: var(--border2)
        }

        .file-input-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .file-upload {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 12px 14px;
            border: 1px solid rgba(17, 17, 17, .08);
            border-radius: var(--r-md);
            background: rgba(255, 255, 255, .88);
            transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
        }

        .file-upload:focus-within {
            border-color: var(--orange);
            background: var(--white);
            box-shadow: 0 0 0 3px var(--orange-glow);
        }

        .file-upload-btn {
            flex-shrink: 0;
            padding: 9px 14px;
            border-radius: var(--r-full);
            background: var(--orange-bg);
            color: var(--orange-dk);
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: background .2s var(--ease), transform .2s var(--ease-sp);
        }

        .file-upload-btn:hover {
            background: var(--orange-bg2);
            transform: translateY(-1px);
        }

        .file-upload-meta {
            min-width: 0;
            flex: 1;
            font-size: 12.5px;
            color: var(--text4);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .f-help {
            font-size: 12px;
            line-height: 1.45;
            color: var(--text4);
            margin-top: 3px;
        }

        .f-inp:focus,
        .f-ta:focus,
        .f-sel:focus {
            border-color: var(--orange);
            background: var(--white);
            box-shadow: 0 0 0 3px var(--orange-glow);
        }

        .f-inp.f-ok {
            border-color: var(--ok)
        }

        .f-inp.f-err,
        .f-ta.f-err {
            border-color: var(--err);
            animation: shake .35s var(--ease)
        }

        .f-ta.f-ok {
            border-color: var(--ok)
        }

        @keyframes shake {

            0%,
            100% {
                transform: translateX(0)
            }

            20% {
                transform: translateX(-4px)
            }

            40% {
                transform: translateX(4px)
            }

            60% {
                transform: translateX(-3px)
            }

            80% {
                transform: translateX(3px)
            }
        }

        .f-tick {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%) scale(0);
            color: var(--ok);
            font-size: 15px;
            font-weight: 700;
            pointer-events: none;
            transition: transform .22s var(--ease-sp);
        }

        .f-inp.f-ok~.f-tick {
            transform: translateY(-50%) scale(1)
        }

        .f-err-msg {
            font-size: 11.5px;
            color: var(--err);
            font-weight: 500;
            display: flex;
            margin-top: 3px;
            padding-left: 2px;
            animation: errIn .2s var(--ease-out);
            display: none;
            align-items: center;
            gap: 5px;
        }

        @keyframes errIn {
            from {
                opacity: 0;
                transform: translateY(-3px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .f-inp.f-err~.f-err-msg,
        .f-ta.f-err~.f-err-msg {
            display: flex
        }

        .phone-row {
            display: flex;
            gap: 8px
        }

        .f-pfx {
            padding: 11px 10px;
            border: 1px solid rgba(17, 17, 17, .08);
            border-radius: var(--r-md);
            font-size: 13px;
            font-family: 'DM Sans', sans-serif;
            background: rgba(255, 255, 255, .88);
            color: var(--text2);
            outline: none;
            cursor: pointer;
            min-width: 90px;
            appearance: none;
            font-weight: 500;
            transition: all .2s var(--ease);
        }

        .f-pfx:focus {
            border-color: var(--orange);
            box-shadow: 0 0 0 3px var(--orange-glow)
        }

        .char-row {
            display: flex;
            justify-content: flex-end;
            margin-top: 4px
        }

        .char-c {
            font-size: 11px;
            color: var(--text5)
        }

        .char-c.warn {
            color: var(--warn)
        }

        .ctx-tip {
            margin-bottom: 20px;
            padding: 13px 16px;
            background: var(--orange-bg);
            border: 1px solid rgba(0, 113, 227, .12);
            border-radius: var(--r-md);
            font-size: 13px;
            color: var(--text2);
            line-height: 1.55;
            display: none;
            gap: 9px;
            align-items: flex-start;
        }

        .ctx-tip.show {
            display: flex;
            animation: fadeUp .25s var(--ease-out)
        }

        .helper-text {
            font-size: 11.5px;
            color: var(--text4);
            margin-top: 4px
        }

        /* CONSENT */
        .consent-block {
            margin-top: 20px;
            padding-top: 18px;
            border-top: 1px solid rgba(17, 17, 17, .06)
        }

        #consent-block {
            margin-top: 34px;
            padding-top: 22px;
            border-top: 1px solid rgba(17, 17, 17, .06);
        }

        .consent-row {
            display: flex;
            align-items: flex-start;
            gap: 11px;
            margin-bottom: 12px;
            margin-top: 12px;
        }

        .c-box {
            width: 17px;
            height: 17px;
            border-radius: 5px;
            border: 1.5px solid var(--border2);
            background: var(--white);
            flex-shrink: 0;
            margin-top: 2px;
            cursor: pointer;
            transition: all .2s var(--ease-sp);
            appearance: none;
            position: relative;
        }

        .c-box:checked {
            background: var(--orange);
            border-color: var(--orange)
        }

        .c-box:checked::after {
            content: '✓';
            position: absolute;
            color: white;
            font-size: 11px;
            font-weight: 700;
            left: 2px;
            top: -1px;
            line-height: 1.7
        }

        .c-box:focus {
            box-shadow: 0 0 0 3px var(--orange-glow)
        }

        .c-text {
            font-size: 12.5px;
            color: var(--text3);
            line-height: 1.6
        }

        .c-text a {
            color: var(--orange);
            font-weight: 600;
            border-bottom: 1px solid rgba(232, 101, 10, .3);
            cursor: pointer
        }

        .c-text a:hover {
            border-color: var(--orange)
        }

        /* SUBMIT */
        .submit-btn {
            width: 100%;
            margin-top: 22px;
            padding: 16px 28px;
            background: linear-gradient(135deg, #111111, #2a2a2e);
            color: white;
            border: none;
            border-radius: var(--r-full);
            font-size: 15px;
            font-weight: 600;
            font-family: 'DM Sans', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 16px 36px rgba(17, 17, 17, .18);
            position: relative;
            overflow: hidden;
            transition: all .22s var(--ease-sp);
        }

        .submit-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .2) 50%, transparent 60%);
            transform: translateX(-100%);
            transition: transform .5s;
        }

        .submit-btn:not(:disabled):hover {
            transform: translateY(-2px);
            box-shadow: 0 22px 44px rgba(17, 17, 17, .22);
        }

        .submit-btn:not(:disabled):hover::after {
            transform: translateX(100%)
        }

        .submit-btn:not(:disabled):active {
            transform: scale(.97)
        }

        .submit-btn:disabled {
            opacity: .35;
            cursor: not-allowed
        }

        .submit-btn.loading {
            pointer-events: none;
            opacity: .8
        }

        .btn-spin {
            width: 18px;
            height: 18px;
            border: 2px solid rgba(255, 255, 255, .3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin .65s linear infinite;
            display: none;
        }

        .submit-btn.loading .btn-spin {
            display: block
        }

        @keyframes spin {
            to {
                transform: rotate(360deg)
            }
        }

        .imm-help {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            margin-top: 16px;
            font-size: 12.5px;
            color: var(--text4);
        }

        .imm-help a {
            color: var(--orange);
            font-weight: 600;
            border-bottom: 1px solid rgba(232, 101, 10, .3)
        }

        .imm-help a:hover {
            border-color: var(--orange)
        }

        /* SUCCESS */
        .success-card {
            background: rgba(255, 255, 255, .84);
            border: 1px solid rgba(17, 17, 17, .06);
            border-radius: var(--r-2xl);
            padding: 52px 44px;
            text-align: center;
            box-shadow: var(--sh-lg);
            animation: panelIn .5s var(--ease-sp) both;
            backdrop-filter: blur(22px);
        }

        .suc-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--ok-bg);
            border: 1px solid rgba(36, 138, 82, .18);
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            animation: popIn .6s var(--ease-sp) both;
        }

        @keyframes popIn {
            from {
                transform: scale(0) rotate(-20deg);
                opacity: 0
            }

            to {
                transform: scale(1) rotate(0);
                opacity: 1
            }
        }

        .suc-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--ok-bg);
            border: 1px solid rgba(26, 138, 74, .2);
            border-radius: var(--r-full);
            padding: 5px 14px;
            font-size: 12px;
            color: var(--ok);
            font-weight: 600;
            margin-bottom: 14px;
        }

        .suc-h {
            font-family: 'DM Sans', system-ui, sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
            letter-spacing: -.8px;
        }

        .suc-p {
            font-size: 14.5px;
            color: var(--text3);
            line-height: 1.7;
            max-width: 400px;
            margin: 0 auto 24px
        }

        .suc-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 26px
        }

        .suc-chip {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 7px 15px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--r-full);
            font-size: 12.5px;
            font-weight: 500;
            color: var(--text2);
        }

        .suc-acts {
            display: flex;
            gap: 12px;
            justify-content: center
        }

        .btn-new-enq {
            padding: 12px 28px;
            background: #111111;
            color: white;
            border-radius: var(--r-full);
            font-size: 14px;
            font-weight: 600;
            font-family: 'DM Sans', sans-serif;
            box-shadow: 0 16px 30px rgba(17, 17, 17, .16);
            transition: all .2s var(--ease-sp);
        }

        .btn-new-enq:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 36px rgba(17, 17, 17, .20)
        }

        .btn-btt {
            padding: 12px 24px;
            background: rgba(255, 255, 255, .84);
            border: 1px solid rgba(17, 17, 17, .08);
            border-radius: var(--r-full);
            font-size: 14px;
            font-weight: 500;
            color: var(--text2);
            font-family: 'DM Sans', sans-serif;
            transition: all .2s var(--ease);
        }

        .btn-btt:hover {
            border-color: var(--border2);
            color: var(--text)
        }

        /* MODAL */
        .modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 1100;
            background: rgba(26, 22, 18, .55);
            backdrop-filter: blur(6px);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-overlay.open {
            display: flex;
            animation: fadeOverlay .2s var(--ease-out)
        }

        @keyframes fadeOverlay {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        .modal {
            position: relative;
            top: auto;
            right: auto;
            bottom: auto;
            left: auto;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--r-xl);
            box-shadow: var(--sh-xl);
            width: 100%;
            max-width: 580px;
            max-height: 88vh;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            animation: modalIn .3s var(--ease-sp);
        }

        @keyframes modalIn {
            from {
                opacity: 0;
                transform: scale(.92) translateY(20px)
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0)
            }
        }

        .modal-hdr {
            padding: 24px 30px 18px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 14px;
            flex-shrink: 0;
            background: linear-gradient(to bottom, var(--surface), var(--white));
        }

        .modal-ey {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 5px
        }

        .modal-title {
            font-family: 'Fraunces', serif;
            font-size: 19px;
            font-weight: 600;
            color: var(--text)
        }

        .modal-close {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--surface);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text3);
            font-size: 15px;
            cursor: pointer;
            flex-shrink: 0;
            margin-top: 2px;
            transition: all .2s var(--ease-sp);
        }

        .modal-close:hover {
            background: var(--err-bg);
            border-color: rgba(196, 41, 26, .2);
            color: var(--err);
            transform: rotate(90deg)
        }

        .modal-body {
            flex: 1;
            overflow-y: auto;
            padding: 22px 30px
        }

        .modal-body::-webkit-scrollbar {
            width: 4px
        }

        .modal-body::-webkit-scrollbar-thumb {
            background: var(--border2);
            border-radius: 8px
        }

        .modal-body h3 {
            font-size: 11.5px !important;
            font-weight: 600;
            color: var(--text2);
            text-transform: uppercase;
            letter-spacing: .7px;
            margin: 20px 0 8px;
            padding-bottom: 6px;
            border-bottom: 1px solid var(--border);
        }

        .modal-body h3:first-child {
            margin-top: 0
        }

        .modal-body p {
            font-size: 13px;
            color: var(--text3);
            line-height: 1.75;
            margin-bottom: 10px
        }

        .modal-body ul {
            padding-left: 18px;
            margin-bottom: 10px
        }

        .modal-body ul li {
            font-size: 13px;
            color: var(--text3);
            line-height: 1.75;
            margin-bottom: 4px
        }

        .modal-foot {
            padding: 16px 30px;
            border-top: 1px solid var(--border);
            background: var(--surface);
            flex-shrink: 0;
        }

        .scroll-prog-bar {
            height: 3px;
            background: var(--border);
            border-radius: 2px;
            margin-bottom: 12px;
            overflow: hidden
        }

        .scroll-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--orange), var(--orange-lt));
            border-radius: 2px;
            width: 0%;
            transition: width .2s var(--ease);
        }

        .scroll-note {
            text-align: center;
            font-size: 11.5px;
            color: var(--text4);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .modal-agree {
            width: 100%;
            padding: 14px;
            background: var(--orange);
            color: white;
            border-radius: var(--r-full);
            font-size: 14px;
            font-weight: 600;
            font-family: 'DM Sans', sans-serif;
            box-shadow: 0 4px 14px rgba(232, 101, 10, .25);
            transition: all .22s var(--ease-sp);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .modal-agree:not(:disabled):hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(232, 101, 10, .35)
        }

        .modal-agree:disabled {
            opacity: .3;
            cursor: not-allowed
        }

        .modal-decline {
            width: 100%;
            margin-top: 8px;
            padding: 11px;
            color: var(--text4);
            font-size: 13px;
            font-family: 'DM Sans', sans-serif;
            font-weight: 500;
            transition: color .15s;
        }

        .modal-decline:hover {
            color: var(--err)
        }

        /* INFO STRIP */
        .info-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: rgba(255, 255, 255, .8);
            border: 1px solid rgba(17, 17, 17, .06);
            border-radius: var(--r-2xl);
            overflow: hidden;
            box-shadow: var(--sh-md);
            margin-top: 60px;
            backdrop-filter: blur(22px);
        }

        .info-item {
            padding: 26px 18px;
            text-align: center;
            border-right: 1px solid rgba(17, 17, 17, .06);
            transition: background .2s, transform .2s var(--ease-sp);
        }

        .info-item:last-child {
            border-right: none
        }

        .info-item:hover {
            background: var(--surface);
            transform: translateY(-2px)
        }

        .info-ico {
            font-size: 22px;
            margin-bottom: 9px
        }

        .info-lbl {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text4);
            margin-bottom: 5px
        }

        .info-val {
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text)
        }

        .info-note {
            font-size: 11.5px;
            color: var(--text5);
            margin-top: 3px
        }

        /* MOBILE STEPPER */
        .mobile-stepper {
            display: none;
            background: rgba(255, 255, 255, .8);
            border-bottom: 1px solid rgba(17, 17, 17, .06);
            padding: 14px 20px;
            position: sticky;
            top: 80px;
            z-index: 100;
            backdrop-filter: blur(18px);
        }

        .ms-steps {
            display: flex;
            align-items: center;
            justify-content: center;
            width: min(100%, 520px);
            margin: 0 auto;
            gap: 10px
        }

        .ms-step {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            min-width: 0
        }

        .ms-step-inner {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-width: 0;
            margin: 0 auto;
            text-align: center
        }

        .ms-line {
            flex: 1 1 0;
            min-width: 32px;
            max-width: 148px;
            height: 1.5px;
            background: var(--border);
        }

        .ms-line.done {
            background: var(--orange)
        }

        .ms-dot {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 1.5px solid var(--border);
            background: var(--surface);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: var(--text4);
            flex-shrink: 0;
            transition: all .3s;
        }

        .ms-step.active .ms-dot {
            background: var(--orange);
            border-color: var(--orange);
            color: white
        }

        .ms-step.done .ms-dot {
            background: var(--orange);
            border-color: var(--orange);
            color: white
        }

        .ms-lbl {
            font-size: 11.5px;
            font-weight: 500;
            color: var(--text4);
            line-height: 1;
            white-space: nowrap
        }

        .ms-step.active .ms-lbl {
            color: var(--orange);
            font-weight: 600
        }

        .ms-step.done .ms-lbl {
            color: var(--text3)
        }

        /* SKELETON LOADER */
        .skeleton {
            background: linear-gradient(90deg, var(--surface) 25%, var(--border) 50%, var(--surface) 75%);
            background-size: 200% 100%;
            animation: shimmer 1.4s infinite;
            border-radius: var(--r-sm);
        }

        @keyframes shimmer {
            0% {
                background-position: 200% 0
            }

            100% {
                background-position: -200% 0
            }
        }

        /* RESPONSIVE */
        @media(max-width:900px) {
            .info-strip {
                grid-template-columns: 1fr 1fr
            }

            .info-item:nth-child(2) {
                border-right: none
            }

            .info-item:nth-child(3) {
                border-top: 1px solid var(--border)
            }

            .wizard-inner {
                grid-template-columns: 1fr
            }

            .sidebar-progress {
                display: none
            }

            .mobile-stepper {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 10px
            }

            .pc-body,
            .pc-header,
            .sel-type-bar,
            .form-bc {
                padding-left: 20px;
                padding-right: 20px
            }

            .sel-type-bar,
            .form-bc {
                align-items: flex-start;
                gap: 14px;
            }

            .role-grid {
                grid-template-columns: 1fr;
            }

            .role-foot {
                grid-template-columns: 1fr;
                align-items: stretch;
                gap: 18px;
            }

            .role-foot .detail-cta {
                width: 100%;
                min-width: 0;
            }

            .form-grid {
                grid-template-columns: 1fr
            }

            .apply-summary {
                grid-template-columns: 1fr;
            }

            .ms-step {
                min-width: 0;
            }

            .ms-lbl {
                font-size: 11px;
            }
        }

        @media(max-width:640px) {
            .hdr {
                padding: 0 16px
            }

            .logo {
                gap: 10px
            }

            .logo-mark {
                width: 44px;
                height: 44px;
                flex-basis: 44px;
                padding: 6px;
            }

            .logo-name {
                font-size: 12px;
            }

            .logo-tag {
                font-size: 10.5px;
            }

            .hdr-r .hdr-pill {
                display: none
            }

            .hdr-email {
                font-size: 11px;
                padding: 7px 12px;
            }

            .type-grid {
                grid-template-columns: 1fr
            }

            .form-grid {
                grid-template-columns: 1fr
            }

            .apply-card {
                padding: 12px 14px;
            }

            .apply-card-value {
                font-size: 16px;
            }

            .apply-card-note {
                font-size: 11.5px;
            }

            .pc-body,
            .pc-header,
            .sel-type-bar,
            .form-bc {
                padding-left: 18px;
                padding-right: 18px
            }

            .pc-header {
                padding-top: 24px;
                padding-bottom: 20px;
            }

            .sel-type-bar,
            .form-bc {
                flex-direction: column;
                align-items: stretch;
                padding-top: 14px;
                padding-bottom: 14px;
            }

            .sel-type-info {
                align-items: flex-start;
            }

            .bc-path {
                gap: 6px 8px;
            }

            .chg-btn {
                align-self: flex-start;
                padding: 8px 14px;
            }

            .sel-type-bar .chg-btn,
            .form-bc .chg-btn {
                align-self: flex-end;
            }

            .pc-title {
                font-size: clamp(22px, 8vw, 30px);
                line-height: 1.15;
            }

            .pc-sub {
                font-size: 14px;
                line-height: 1.55;
            }

            .role-hero {
                padding: 22px 18px;
                border-radius: 22px;
            }

            .role-title {
                font-size: 26px;
                line-height: 1.12;
                letter-spacing: -.7px;
            }

            .role-summary {
                font-size: 14px;
                line-height: 1.6;
            }

            .role-hero-actions {
                justify-content: stretch;
            }

            .role-hero-actions .detail-cta {
                width: 100%;
            }

            .imm-help {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 4px;
                text-align: center;
                line-height: 1.4;
            }

            .job-meta-row {
                gap: 7px;
                margin-top: 14px;
            }

            .job-pill {
                white-space: normal;
                line-height: 1.25;
            }

            .role-section {
                padding: 20px 18px;
                border-radius: 18px;
            }

            .role-list,
            .role-section ul {
                padding-left: 18px;
                font-size: 13.5px;
                line-height: 1.55;
            }

            .suc-acts {
                flex-direction: column
            }

            .mobile-stepper {
                padding: 12px 14px;
            }

            .ms-steps {
                gap: 8px;
            }

            .ms-step {
                flex: 0 0 auto;
            }

            .ms-step-inner {
                gap: 6px;
            }

            .ms-line {
                min-width: 18px;
                max-width: 96px;
            }

            .ms-dot {
                width: 22px;
                height: 22px;
                font-size: 9px;
            }

            .ms-lbl {
                font-size: 10px;
            }

            .success-card {
                padding: 32px 20px
            }

            .modal-hdr,
            .modal-body,
            .modal-foot {
                padding-left: 18px;
                padding-right: 18px
            }

            .info-strip {
                grid-template-columns: 1fr
            }

            .info-item {
                border-right: none;
                border-bottom: 1px solid var(--border)
            }
        }
