        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --orange: #FF6600;
            --orange-dark: #D95400;
            --orange-pale: rgba(255, 102, 0, 0.09);
            --dark: #0A0E1A;
            --dark-2: #111628;
            --dark-3: #1C2235;
            --text: #1A1A2E;
            --text-mid: #4B5563;
            --text-muted: #9CA3AF;
            --border: #E5E7EB;
            --bg: #F7F8FC;
            --white: #FFFFFF;
            --green: #10B981;
            --nav-h: 72px;
            --max-w: 1280px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Noto Sans JP', 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            background: var(--bg);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ===== PAGE HERO ===== */
        .page-hero {
            background: var(--dark);
            padding: calc(var(--nav-h) + 56px) 28px 64px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 100% at 0% 50%, rgba(255, 102, 0, .13), transparent),
                radial-gradient(ellipse 50% 80% at 100% 20%, rgba(255, 102, 0, .07), transparent);
            pointer-events: none;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        .page-hero-in {
            max-width: var(--max-w);
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 40px;
            align-items: center;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
            font-size: .8rem;
            color: rgba(255, 255, 255, .4);
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, .5);
            transition: color .2s;
        }

        .breadcrumb a:hover {
            color: rgba(255, 255, 255, .8);
        }

        .page-hero h1 {
            color: #fff;
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 900;
            line-height: 1.25;
            margin-bottom: 12px;
        }

        .page-hero h1 em {
            font-style: normal;
            color: var(--orange);
        }

        .page-hero p {
            color: rgba(255, 255, 255, .6);
            font-size: .95rem;
        }

        .hero-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .hero-tag {
            padding: 5px 14px;
            border-radius: 100px;
            font-size: .78rem;
            font-weight: 700;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .15);
            color: rgba(255, 255, 255, .8);
        }

        .hero-tag.accent {
            background: rgba(255, 102, 0, .2);
            border-color: rgba(255, 102, 0, .35);
            color: #FF8533;
        }

        .hero-apply-box {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 16px;
            padding: 28px 24px;
            text-align: center;
            backdrop-filter: blur(10px);
            min-width: 220px;
        }

        .apply-num {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--orange);
            font-family: 'Inter', sans-serif;
            line-height: 1;
        }

        .apply-num-label {
            color: rgba(255, 255, 255, .5);
            font-size: .78rem;
            margin-bottom: 16px;
        }

        .btn-apply-hero {
            display: block;
            width: 100%;
            padding: 14px;
            background: var(--orange);
            color: #fff;
            border-radius: 8px;
            font-weight: 700;
            font-size: .95rem;
            transition: all .2s;
            margin-top: 8px;
        }

        .btn-apply-hero:hover {
            background: var(--orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 102, 0, .3);
        }

        /* ===== ANCHOR NAV ===== */
        .anchor-nav {
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: var(--nav-h);
            z-index: 800;
        }

        .anchor-nav-in {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 28px;
            display: flex;
            gap: 0;
            overflow-x: auto;
        }

        .anchor-nav-in::-webkit-scrollbar {
            display: none;
        }

        .anchor-nav-in a {
            padding: 16px 20px;
            font-size: .84rem;
            font-weight: 600;
            color: var(--text-mid);
            white-space: nowrap;
            border-bottom: 2px solid transparent;
            transition: all .2s;
        }

        .anchor-nav-in a:hover {
            color: var(--orange);
            border-bottom-color: var(--orange);
        }

        /* ===== SECTIONS COMMON ===== */
        .sec {
            padding: 88px 28px;
        }

        .sec-in {
            max-width: var(--max-w);
            margin: 0 auto;
        }

        .sec-eye {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--orange);
            font-size: .76rem;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .sec-eye::before {
            content: '';
            width: 22px;
            height: 2px;
            background: var(--orange);
        }

        .sec-h2 {
            font-size: clamp(1.6rem, 2.8vw, 2.2rem);
            font-weight: 900;
            color: var(--text);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .sec-lead {
            font-size: .97rem;
            color: var(--text-mid);
            max-width: 600px;
            line-height: 1.85;
        }

        .tc {
            text-align: center;
        }

        .tc .sec-eye {
            justify-content: center;
        }

        .tc .sec-eye::before {
            display: none;
        }

        .tc .sec-lead {
            margin: 0 auto;
        }

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .65s ease, transform .65s ease;
        }

        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== HIGHLIGHTS ===== */
        .sec-highlights {
            background: #fff;
        }

        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 52px;
        }

        .hl-card {
            background: var(--bg);
            border: 2px solid var(--border);
            border-radius: 18px;
            padding: 32px 28px;
            transition: all .3s;
            position: relative;
            overflow: hidden;
        }

        .hl-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 102, 0, .05), transparent);
            opacity: 0;
            transition: opacity .3s;
        }

        .hl-card:hover {
            border-color: var(--orange);
            transform: translateY(-6px);
            box-shadow: 0 16px 44px rgba(255, 102, 0, .1);
        }

        .hl-card:hover::before {
            opacity: 1;
        }

        .hl-icon {
            font-size: 2.4rem;
            margin-bottom: 16px;
        }

        .hl-card h3 {
            font-size: 1.1rem;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .hl-card p {
            font-size: .875rem;
            color: var(--text-mid);
            line-height: 1.8;
        }

        .hl-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--orange);
            color: #fff;
            padding: 4px 12px;
            border-radius: 100px;
            font-size: .72rem;
            font-weight: 700;
        }

        /* ===== WORK POINTS ===== */
        .sec-points {
            background: var(--dark);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .sec-points::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 80% at 100% 0, rgba(255, 102, 0, .1), transparent),
                radial-gradient(ellipse 50% 60% at 0 100%, rgba(255, 102, 0, .07), transparent);
            pointer-events: none;
        }

        .sec-points .sec-h2 {
            color: #fff;
        }

        .point-list {
            display: flex;
            flex-direction: column;
            gap: 80px;
            margin-top: 60px;
        }

        .point-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
        }

        .point-item.reverse {
            direction: rtl;
        }

        .point-item.reverse>* {
            direction: ltr;
        }

        .point-num {
            font-size: .72rem;
            font-weight: 800;
            letter-spacing: .14em;
            color: var(--orange);
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .point-item h3 {
            font-size: clamp(1.4rem, 2.5vw, 2rem);
            font-weight: 900;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .point-item p {
            color: rgba(255, 255, 255, .65);
            font-size: .95rem;
            line-height: 1.9;
        }

        .point-visual {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 20px;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 280px;
            position: relative;
            overflow: hidden;
        }

        .point-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 80% at 50% 60%, rgba(255, 102, 0, .12), transparent);
        }

        .point-visual-inner {
            text-align: center;
            z-index: 1;
        }

        .pv-emoji {
            font-size: 3.5rem;
            margin-bottom: 16px;
            display: block;
        }

        .pv-text {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.5;
        }

        .point-item p strong {
            color: var(--orange);
            font-weight: 700;
        }

        /* ===== TRAINING ===== */
        .sec-training {
            background: #fff;
        }

        .training-timeline {
            margin-top: 56px;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .t-step {
            display: grid;
            grid-template-columns: 160px 1fr;
            gap: 32px;
            position: relative;
        }

        .t-step::before {
            content: '';
            position: absolute;
            left: 79px;
            top: 56px;
            bottom: 0;
            width: 2px;
            background: var(--border);
        }

        .t-step:last-child::before {
            display: none;
        }

        .t-step-left {
            text-align: center;
            padding-top: 20px;
        }

        .t-dot {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            color: #fff;
            font-weight: 900;
            font-size: .85rem;
            font-family: 'Inter', sans-serif;
            position: relative;
            z-index: 1;
        }

        .t-dot.gray {
            background: var(--text-mid);
        }

        .t-month {
            font-size: .78rem;
            font-weight: 700;
            color: var(--text-muted);
        }

        .t-step-right {
            background: var(--bg);
            border-radius: 16px;
            padding: 24px 28px;
            margin-bottom: 24px;
            border: 1px solid var(--border);
            transition: all .3s;
        }

        .t-step-right:hover {
            border-color: var(--orange);
            box-shadow: 0 8px 24px rgba(255, 102, 0, .08);
        }

        .t-step-right h4 {
            font-size: 1.05rem;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 12px;
        }

        .t-items {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .t-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: .875rem;
            color: var(--text-mid);
        }

        .t-item::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--orange);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* tech tags */
        .tech-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 12px;
        }

        .tech-tag {
            background: rgba(255, 102, 0, .08);
            color: var(--orange);
            padding: 3px 12px;
            border-radius: 100px;
            font-size: .75rem;
            font-weight: 700;
            border: 1px solid rgba(255, 102, 0, .2);
        }

        /* ===== CAREER PATH ===== */
        .sec-career {
            background: var(--bg);
        }

        .career-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: 56px;
            position: relative;
        }

        .career-grid::before {
            content: '';
            position: absolute;
            top: 32px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: linear-gradient(to right, var(--orange), rgba(255, 102, 0, .3));
        }

        .career-card {
            padding: 24px 16px;
            text-align: center;
        }

        .career-dot {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #fff;
            border: 3px solid var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: .85rem;
            font-weight: 900;
            color: var(--orange);
            font-family: 'Inter', sans-serif;
            position: relative;
            z-index: 1;
        }

        .career-card h4 {
            font-size: .9rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 8px;
        }

        .career-card p {
            font-size: .8rem;
            color: var(--text-mid);
            line-height: 1.7;
        }

        /* salary bar */
        .salary-bar {
            background: linear-gradient(135deg, var(--dark), var(--dark-3, #1C2235));
            border-radius: 20px;
            padding: 40px 44px;
            margin-top: 48px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 32px;
            align-items: center;
        }

        .salary-item {
            text-align: center;
        }

        .salary-year {
            font-size: .78rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .5);
            margin-bottom: 6px;
        }

        .salary-num {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--orange);
            font-family: 'Inter', sans-serif;
            line-height: 1;
        }

        .salary-unit {
            font-size: .85rem;
            color: rgba(255, 255, 255, .5);
            margin-top: 4px;
        }

        .salary-divider {
            width: 1px;
            height: 60px;
            background: rgba(255, 255, 255, .12);
            margin: 0 auto;
        }

        /* ===== FIT ===== */
        .sec-fit {
            background: var(--dark);
        }

        .sec-fit .sec-eye {
            color: #FF8533;
        }

        .sec-fit .sec-eye::before {
            background: #FF8533;
        }

        .sec-fit .sec-h2 {
            color: #fff;
        }

        .sec-fit .sec-lead {
            color: rgba(255, 255, 255, .55);
        }

        .fit-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 52px;
        }

        .fit-col {
            border-radius: 16px;
            padding: 32px 28px;
        }

        .fit-col-good {
            background: rgba(255, 102, 0, .08);
            border: 1px solid rgba(255, 102, 0, .25);
        }

        .fit-col-bad {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .1);
        }

        .fit-col-label {
            font-size: .72rem;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .fit-col-good .fit-col-label {
            color: var(--orange);
        }

        .fit-col-bad .fit-col-label {
            color: rgba(255, 255, 255, .35);
        }

        .fit-col-label::before {
            content: '';
            display: inline-block;
            width: 18px;
            height: 2px;
        }

        .fit-col-good .fit-col-label::before {
            background: var(--orange);
        }

        .fit-col-bad .fit-col-label::before {
            background: rgba(255, 255, 255, .3);
        }

        .fit-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .fit-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 13px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            font-size: .92rem;
            line-height: 1.6;
        }

        .fit-list li:last-child {
            border-bottom: none;
        }

        .fit-list li::before {
            content: '';
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            margin-top: 2px;
            background-size: 12px;
            background-repeat: no-repeat;
            background-position: center;
        }

        .fit-col-good .fit-list li::before {
            background-color: rgba(255, 102, 0, .2);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23FF6600' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        }

        .fit-col-bad .fit-list li::before {
            background-color: rgba(255, 255, 255, .08);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='rgba(255,255,255,0.3)' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
        }

        .fit-col-good .fit-list li {
            color: rgba(255, 255, 255, .85);
        }

        .fit-col-bad .fit-list li {
            color: rgba(255, 255, 255, .45);
        }

        /* ===== BENEFITS ===== */
        .sec-benefits {
            background: #fff;
        }

        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 52px;
        }

        .benefit-card {
            background: var(--bg);
            border-radius: 14px;
            padding: 22px 20px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            border: 1px solid var(--border);
            transition: all .25s;
        }

        .benefit-card:hover {
            border-color: var(--orange);
            background: rgba(255, 102, 0, .03);
        }

        .benefit-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .benefit-card h4 {
            font-size: .875rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 4px;
        }

        .benefit-card p {
            font-size: .8rem;
            color: var(--text-mid);
            line-height: 1.65;
        }

        /* holidays */
        .holiday-box {
            background: linear-gradient(135deg, var(--dark), var(--dark-3, #1C2235));
            border-radius: 20px;
            padding: 36px 40px;
            margin-top: 24px;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 40px;
            align-items: center;
        }

        .holiday-num {
            text-align: center;
        }

        .holiday-big {
            font-size: 4.5rem;
            font-weight: 900;
            color: var(--orange);
            font-family: 'Inter', sans-serif;
            line-height: 1;
        }

        .holiday-label {
            color: rgba(255, 255, 255, .55);
            font-size: .82rem;
        }

        .holiday-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .holiday-item {
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .12);
            color: rgba(255, 255, 255, .8);
            padding: 5px 14px;
            border-radius: 100px;
            font-size: .8rem;
        }

        /* ===== INTERVIEW ===== */
        .sec-interview {
            background: var(--bg);
        }

        .bm-grid {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 56px;
            align-items: start;
        }

        .bm-photo-col {
            position: sticky;
            top: calc(var(--nav-h) + 40px);
        }

        .bm-photo {
            width: 100%;
            aspect-ratio: 3/4;
            border-radius: 16px;
            overflow: hidden;
            background: var(--dark-3);
            position: relative;
        }

        .bm-photo img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .bm-id {
            margin-top: 18px;
            padding-top: 14px;
            border-top: 2px solid var(--orange);
        }

        .bm-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
            letter-spacing: .02em;
        }

        .bm-role {
            font-size: .78rem;
            color: var(--text-muted);
            font-weight: 600;
            letter-spacing: .04em;
            margin-top: 5px;
        }

        .bm-passages {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .bm-passage {
            background: #fff;
            border-radius: 16px;
            padding: 28px 32px;
            border: 1px solid var(--border);
            transition: box-shadow .25s;
        }

        .bm-passage:hover {
            box-shadow: 0 8px 32px rgba(0, 0, 0, .07);
        }

        .bm-theme {
            font-size: .78rem;
            font-weight: 800;
            color: var(--orange);
            letter-spacing: .06em;
            margin-bottom: 12px;
        }

        .bm-passage p {
            font-size: .9rem;
            color: var(--text-mid);
            line-height: 1.9;
        }

        .bm-passage p strong {
            color: var(--text);
            font-weight: 700;
        }

        .interview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin-top: 52px;
        }

        .interview-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
        }

        .int-top {
            background: linear-gradient(135deg, var(--dark), var(--dark-3, #1C2235));
            padding: 28px 28px 24px;
            position: relative;
            overflow: hidden;
        }

        .int-top::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 100% at 0 100%, rgba(255, 102, 0, .15), transparent);
        }

        .int-role {
            font-size: .75rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .5);
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
        }

        .int-name {
            font-size: 1.25rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 4px;
            position: relative;
            z-index: 1;
        }

        .int-prev {
            font-size: .8rem;
            color: rgba(255, 255, 255, .5);
            position: relative;
            z-index: 1;
        }

        .int-headline {
            background: rgba(255, 102, 0, .1);
            border: 1px solid rgba(255, 102, 0, .2);
            border-radius: 8px;
            padding: 10px 14px;
            margin-top: 16px;
            position: relative;
            z-index: 1;
            font-size: .88rem;
            font-weight: 700;
            color: #FF8533;
        }

        .int-body {
            padding: 24px 28px;
        }

        .int-body p {
            font-size: .875rem;
            color: var(--text-mid);
            line-height: 1.85;
        }

        /* ===== JOB DETAILS ===== */
        .sec-details {
            background: #fff;
        }

        .details-wrap {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 48px;
            align-items: start;
            margin-top: 52px;
        }

        .detail-row {
            display: grid;
            grid-template-columns: 140px 1fr;
            gap: 16px;
            padding: 18px 0;
            border-bottom: 1px solid var(--border);
        }

        .detail-row:first-child {
            border-top: 1px solid var(--border);
        }

        .detail-lbl {
            font-size: .82rem;
            font-weight: 800;
            color: var(--text-muted);
            padding-top: 2px;
        }

        .detail-val {
            font-size: .875rem;
            color: var(--text);
            line-height: 1.8;
        }

        .detail-val ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .detail-val ul li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .detail-val ul li::before {
            content: '◆';
            color: var(--orange);
            font-size: .7rem;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .detail-val strong {
            color: var(--orange);
        }

        .detail-check {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: .82rem;
            color: var(--text-mid);
            padding: 3px 0;
        }

        .detail-check::before {
            content: '✓';
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: rgba(16, 185, 129, .12);
            color: var(--green);
            font-size: .68rem;
            font-weight: 900;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* sidebar */
        .details-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .sidebar-card {
            background: var(--bg);
            border-radius: 16px;
            border: 1px solid var(--border);
            padding: 24px 22px;
        }

        .sidebar-card h4 {
            font-size: .9rem;
            font-weight: 800;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sidebar-card h4::before {
            content: '';
            width: 4px;
            height: 16px;
            background: var(--orange);
            border-radius: 2px;
        }

        /* ===== SELECTION FLOW ===== */
        .sec-flow {
            background: var(--bg);
        }

        .flow-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: 52px;
            position: relative;
        }

        .flow-steps::before {
            content: '';
            position: absolute;
            top: 28px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: linear-gradient(to right, var(--orange), rgba(255, 102, 0, .3));
        }

        .flow-step {
            text-align: center;
            padding: 0 12px;
        }

        .flow-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 900;
            font-size: 1.1rem;
            font-family: 'Inter', sans-serif;
            margin: 0 auto 16px;
            position: relative;
            z-index: 1;
        }

        .flow-step h4 {
            font-size: .88rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 6px;
        }

        .flow-step p {
            font-size: .78rem;
            color: var(--text-mid);
            line-height: 1.65;
        }

        .flow-note {
            text-align: center;
            margin-top: 28px;
        }

        .flow-note p {
            font-size: .85rem;
            color: var(--text-mid);
        }

        .flow-note p span {
            color: var(--orange);
            font-weight: 700;
        }

        /* ===== CTA BAND ===== */
        .cta-band {
            background: linear-gradient(135deg, var(--dark), var(--dark-2));
            padding: 88px 28px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-band::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 100% at 50% 110%, rgba(255, 102, 0, .18), transparent);
            pointer-events: none;
        }

        .cta-band-in {
            position: relative;
            z-index: 1;
            max-width: 640px;
            margin: 0 auto;
        }

        .cta-band-in h2 {
            color: #fff;
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            margin-bottom: 12px;
        }

        .cta-band-in p {
            color: rgba(255, 255, 255, .6);
            font-size: .97rem;
            line-height: 1.85;
            margin-bottom: 36px;
        }

        .cta-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 15px 32px;
            background: var(--orange);
            color: #fff;
            border-radius: 8px;
            font-weight: 700;
            font-size: .95rem;
            transition: all .25s;
            border: 2px solid var(--orange);
        }

        .btn-primary:hover {
            background: var(--orange-dark);
            border-color: var(--orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 102, 0, .3);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 15px 32px;
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, .5);
            border-radius: 8px;
            font-weight: 700;
            font-size: .95rem;
            transition: all .25s;
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, .1);
            border-color: #fff;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1060px) {
            .page-hero-in {
                grid-template-columns: 1fr;
            }

            .hero-apply-box {
                display: none;
            }

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

            .point-item {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .point-item.reverse {
                direction: ltr;
            }

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

            .career-grid::before {
                display: none;
            }

            .salary-bar {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .salary-divider {
                width: 80%;
                height: 1px;
            }

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

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

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

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

            .bm-photo-col {
                position: static;
            }

            .bm-photo {
                aspect-ratio: 4/3;
                max-height: 360px;
            }

            .details-wrap {
                grid-template-columns: 1fr;
            }

            .details-sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
            }

            .flow-steps {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .flow-steps::before {
                display: none;
            }

        }

        @media (max-width: 640px) {
            .sec {
                padding: 56px 16px;
            }

            .anchor-nav-in {
                padding: 0 8px;
            }

            .anchor-nav-in a {
                padding: 16px 12px;
            }

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

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

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

            .flow-steps {
                grid-template-columns: 1fr;
            }

            .details-sidebar {
                grid-template-columns: 1fr;
            }

            .cta-btns {
                flex-direction: column;
                align-items: center;
            }

            .holiday-box {
                grid-template-columns: 1fr;
            }

            .t-step {
                grid-template-columns: 80px 1fr;
                gap: 16px;
            }

            .t-step::before {
                left: 39px;
            }
        }

        /* Extracted from inline style attributes */
        .u-inline-001 {
            font-size: 1.4rem;
        }

        .u-inline-002 {
            display: block;
            margin-top: 10px;
            color: rgba(255, 255, 255, .5);
            font-size: .8rem;
            text-align: center;
        }

        .u-inline-003 {
            transition-delay: .08s;
        }

        .u-inline-004 {
            transition-delay: .18s;
        }

        .u-inline-005 {
            border-color: var(--orange);
        }

        .u-inline-006 {
            transition-delay: .03s;
        }

        .u-inline-007 {
            transition-delay: .07s;
        }

        .u-inline-008 {
            transition-delay: .11s;
        }

        .u-inline-009 {
            transition-delay: .15s;
        }

        .u-inline-010 {
            transition-delay: .19s;
        }

        .u-inline-011 {
            transition-delay: .23s;
        }

        .u-inline-012 {
            transition-delay: .27s;
        }

        .u-inline-013 {
            transition-delay: .31s;
        }

        .u-inline-014 {
            transition-delay: .35s;
        }

        .u-inline-015 {
            transition-delay: .39s;
        }

        .u-inline-016 {
            transition-delay: .43s;
        }

        .u-inline-017 {
            transition-delay: .47s;
        }

        .u-inline-018 {
            transition-delay: .1s;
        }

        .u-inline-019 {
            color: rgba(255, 255, 255, .5);
            font-size: .8rem;
        }

        .u-inline-020 {
            color: rgba(255, 255, 255, .35);
            font-size: .72rem;
            margin-top: 4px;
        }

        .u-inline-021 {
            color: rgba(255, 255, 255, .7);
            font-size: .88rem;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .u-inline-022 {
            background: rgba(255, 102, 0, .15);
            border-color: rgba(255, 102, 0, .3);
            color: #FF8533;
        }

        .u-inline-023 {
            margin-top: 52px;
            transition-delay: .08s;
        }

        .u-inline-024 {
            margin-top: 16px;
            font-weight: 700;
            color: var(--text);
        }

        .u-inline-025 {
            margin-top: 10px;
            font-size: .82rem;
            color: var(--text-muted);
        }

        .u-inline-026 {
            font-size: .82rem;
            color: var(--text-muted);
        }

        .u-inline-027 {
            font-size: .8rem;
            color: var(--text-muted);
        }

        .u-inline-028 {
            margin-top: 8px;
            font-size: .82rem;
            color: var(--text-muted);
        }

        .u-inline-029 {
            margin-top: 0;
        }

        .u-inline-030 {
            color: var(--orange);
        }

        .u-inline-031 {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .u-inline-032 {
            display: grid;
            grid-template-columns: 72px 1fr;
            gap: 8px;
            font-size: .84rem;
        }

        .u-inline-033 {
            color: var(--text-muted);
            font-weight: 700;
        }

        .u-inline-034 {
            text-align: center;
            padding: 16px 0;
        }

        .u-inline-035 {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--orange);
            font-family: 'Inter', sans-serif;
            line-height: 1;
        }

        .u-inline-036 {
            font-size: 1.5rem;
        }

        .u-inline-037 {
            font-size: .8rem;
            color: var(--text-muted);
            margin-top: 6px;
        }

        .u-inline-038 {
            transition-delay: .22s;
        }

        .u-inline-039 {
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: .84rem;
            color: var(--text-mid);
        }

        .u-inline-040 {
            display: flex;
            gap: 8px;
            align-items: flex-start;
        }

        .u-inline-041 {
            color: var(--orange);
            flex-shrink: 0;
        }

        .u-inline-042 {
            background: var(--green);
        }

        .u-inline-043 {
            margin-top: 20px;
            color: rgba(255, 255, 255, .35);
            font-size: .8rem;
        }

        .u-inline-044 {
            color: rgba(255, 255, 255, .5);
        }