/* ============================================================
   Portal Karir Cendekia Muslim — Public Theme v1
   Gaya: modern-corporate (referensi persada.id), hijau + emas
   ============================================================ */
:root {
    --primary-50: #ecfdf5;
    --primary-100: #d1fae5;
    --primary-200: #a7f3d0;
    --primary-300: #6ee7b7;
    --primary-400: #34d399;
    --primary-500: #10b981;
    --primary-600: #059669;
    --primary-700: #047857;
    --primary-800: #065f46;
    --primary-900: #064e3b;
    --primary-950: #022c22;

    --gold-300: #fcd34d;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;

    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --danger: #ef4444;
    --danger-light: #fee2e2;
    --success: #10b981;
    --success-light: #d1fae5;
    --info: #3b82f6;

    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgb(15 23 42 / .05);
    --shadow: 0 1px 3px 0 rgb(15 23 42 / .08), 0 1px 2px -1px rgb(15 23 42 / .08);
    --shadow-md: 0 4px 6px -1px rgb(15 23 42 / .08), 0 2px 4px -2px rgb(15 23 42 / .06);
    --shadow-lg: 0 12px 24px -6px rgb(15 23 42 / .12);
    --shadow-xl: 0 24px 48px -12px rgb(15 23 42 / .18);
    --shadow-green: 0 8px 24px -6px rgb(5 150 105 / .45);
    --shadow-gold: 0 8px 24px -6px rgb(245 158 11 / .45);

    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --ease: cubic-bezier(.4, 0, .2, 1);
    --t-fast: 160ms var(--ease);
    --t-base: 240ms var(--ease);
    --t-slow: 400ms var(--ease);

    --container: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-main);
    line-height: 1.65;
    color: var(--gray-700);
    background: #fff;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .7rem 1.4rem;
    font-size: .92rem;
    font-weight: 700;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base), color var(--t-base), border-color var(--t-base);
}
.btn:active { transform: scale(.97); }
.btn-primary { background: linear-gradient(135deg, var(--primary-600), var(--primary-800)); color: #fff; box-shadow: var(--shadow-green); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -6px rgb(5 150 105 / .55); }
.btn-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: #3b2405; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -6px rgb(245 158 11 / .6); }
.btn-outline { background: transparent; color: var(--primary-700); border-color: var(--primary-600); }
.btn-outline:hover { background: var(--primary-600); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-white { background: #fff; color: var(--primary-800); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--gray-600); }
.btn-ghost:hover { color: var(--primary-700); background: var(--primary-50); }
.btn-lg { padding: .95rem 2rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .85rem; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: box-shadow var(--t-base), border-color var(--t-base), background var(--t-base);
}
.navbar.scrolled { background: rgba(255,255,255,.98); border-color: var(--gray-100); box-shadow: var(--shadow-md); }

.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 76px; }

.brand { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.brand-logo {
    width: 46px; height: 46px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-900));
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
}
.brand-logo img { width: 34px; height: 34px; object-fit: contain; }
.brand-text { line-height: 1.15; }
.brand-title { display: block; font-size: 1.05rem; font-weight: 800; color: var(--primary-900); }
.brand-sub { display: block; font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600); }

.nav-menu { display: flex; align-items: center; gap: .25rem; list-style: none; }
.nav-menu a {
    position: relative;
    display: inline-block;
    padding: .55rem .95rem;
    font-size: .92rem;
    font-weight: 600;
    color: var(--gray-600);
    border-radius: 10px;
    transition: color var(--t-fast), background var(--t-fast);
}
.nav-menu a::after {
    content: '';
    position: absolute;
    left: .95rem; right: .95rem; bottom: .3rem;
    height: 2.5px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary-500), var(--gold-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary-700); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border: none; border-radius: 12px;
    background: var(--primary-50);
    color: var(--primary-700);
    font-size: 1.15rem;
    cursor: pointer;
    transition: background var(--t-fast);
}
.nav-toggle:hover { background: var(--primary-100); }

/* Mobile drawer */
.nav-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: #fff;
    z-index: 1200;
    padding: 1.5rem;
    transform: translateX(105%);
    transition: transform var(--t-slow);
    display: flex; flex-direction: column; gap: .4rem;
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
}
.nav-drawer.open { transform: none; }
.nav-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.nav-drawer a.drawer-link {
    display: flex; align-items: center; gap: .8rem;
    padding: .85rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--gray-700);
    transition: background var(--t-fast), color var(--t-fast);
}
.nav-drawer a.drawer-link:hover { background: var(--primary-50); color: var(--primary-700); }
.nav-drawer a.drawer-link i { width: 22px; text-align: center; color: var(--primary-500); }
.nav-drawer .drawer-cta { margin-top: auto; display: grid; gap: .6rem; padding-top: 1.25rem; }
.nav-backdrop {
    position: fixed; inset: 0;
    background: rgb(2 44 34 / .5);
    backdrop-filter: blur(3px);
    z-index: 1100;
    opacity: 0; pointer-events: none;
    transition: opacity var(--t-base);
}
.nav-backdrop.show { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 168px 0 0;
    background:
        radial-gradient(1000px 500px at 85% -10%, rgb(16 185 129 / .25), transparent 60%),
        radial-gradient(700px 420px at -10% 110%, rgb(245 158 11 / .14), transparent 55%),
        linear-gradient(150deg, var(--primary-900) 0%, var(--primary-950) 70%);
    color: #fff;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 8l4.7 10.9L44 20l-8 8.3 1.9 11.7L28 34.5 18.1 40 20 28.3 12 20l11.3-1.1z' fill='%23ffffff' fill-opacity='.03'/%3E%3C/svg%3E");
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 4.5rem;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: .55rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    padding: .45rem 1.05rem .45rem .5rem;
    border-radius: 999px;
    margin-bottom: 1.4rem;
    font-size: .85rem; font-weight: 600;
    color: rgba(255,255,255,.92);
}
.hero-badge .dot {
    width: 26px; height: 26px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    display: flex; align-items: center; justify-content: center;
    color: #3b2405; font-size: .7rem;
}
.hero h1 {
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.02em;
    margin-bottom: 1.25rem;
}
.hero h1 .grad {
    background: linear-gradient(100deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero p.lead {
    font-size: 1.08rem;
    color: rgba(255,255,255,.78);
    max-width: 560px;
    margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* Hero visual card stack */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(14px);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.6rem;
    width: min(360px, 100%);
    animation: floatY 6s ease-in-out infinite;
}
.hero-card .hc-row { display: flex; align-items: center; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero-card .hc-row:last-child { border-bottom: 0; }
.hero-card .hc-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
}
.hc-icon.green { background: rgba(16,185,129,.22); color: var(--primary-300); }
.hc-icon.gold { background: rgba(245,158,11,.2); color: var(--gold-300); }
.hc-icon.blue { background: rgba(59,130,246,.2); color: #93c5fd; }
.hero-card .hc-title { font-weight: 700; font-size: .95rem; color: #fff; }
.hero-card .hc-sub { font-size: .78rem; color: rgba(255,255,255,.6); }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Hero stats band */
.hero-stats {
    position: relative;
    background: rgba(255,255,255,.05);
    border-top: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
}
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.9rem 0;
}
.stat { text-align: center; }
.stat-value {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.stat-value .plus { color: var(--gold-400); }
.stat-label { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.65); letter-spacing: .04em; text-transform: uppercase; margin-top: .3rem; }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section.alt { background: var(--gray-50); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 3.25rem; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--primary-50);
    color: var(--primary-700);
    border: 1px solid var(--primary-100);
    padding: .4rem 1.1rem;
    border-radius: 999px;
    font-size: .8rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.section-title {
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -.02em;
    margin-bottom: .9rem;
}
.section-title .accent { color: var(--primary-600); }
.section-desc { font-size: 1.05rem; color: var(--gray-500); }

/* ---------- Vacancy cards ---------- */
.vacancy-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1.6rem; }

.vacancy-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    box-shadow: var(--shadow);
    display: flex; flex-direction: column;
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
    overflow: hidden;
}
.vacancy-card::before {
    content: '';
    position: absolute; inset: 0 0 auto 0; height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--gold-400));
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--t-slow);
}
.vacancy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--primary-200); }
.vacancy-card:hover::before { transform: scaleX(1); }

.vc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.1rem; }
.vc-icon {
    width: 58px; height: 58px;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border: 1px solid var(--primary-100);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--primary-700);
    transition: transform var(--t-base);
}
.vacancy-card:hover .vc-icon { transform: scale(1.08) rotate(-4deg); }

.pill {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .32rem .8rem;
    border-radius: 999px;
    font-size: .74rem; font-weight: 700;
}
.pill-green { background: var(--primary-50); color: var(--primary-700); }
.pill-gold { background: #fef3c7; color: var(--gold-600); }
.pill-red { background: var(--danger-light); color: #dc2626; }
.pill-blue { background: #dbeafe; color: #2563eb; }

.vc-title { font-size: 1.22rem; font-weight: 800; color: var(--gray-900); margin-bottom: .6rem; }
.vc-desc {
    font-size: .9rem; color: var(--gray-500);
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    margin-bottom: 1.1rem;
}
.vc-meta { display: flex; flex-wrap: wrap; gap: .9rem 1.25rem; padding: 1rem 0; border-top: 1px dashed var(--gray-200); margin-top: auto; }
.vc-meta span { display: inline-flex; align-items: center; gap: .45rem; font-size: .83rem; color: var(--gray-500); font-weight: 500; }
.vc-meta i { color: var(--primary-500); }

.vc-quota { margin-bottom: 1.1rem; }
.vc-quota-bar { height: 7px; background: var(--gray-100); border-radius: 99px; overflow: hidden; margin-top: .35rem; }
.vc-quota-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--primary-500), var(--gold-400)); transition: width 1s var(--ease); }
.vc-quota-text { font-size: .82rem; color: var(--gray-500); }
.vc-quota-text strong { color: var(--primary-700); }

.vc-actions { display: flex; gap: .6rem; }
.vc-actions .btn { flex: 1; }

/* Empty state */
.empty-state {
    text-align: center;
    padding: 4.5rem 2rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-200);
}
.empty-state i { font-size: 3.2rem; color: var(--gray-300); margin-bottom: 1.1rem; }
.empty-state h3 { font-size: 1.35rem; color: var(--gray-700); margin-bottom: .4rem; }
.empty-state p { color: var(--gray-500); }

/* ---------- Process timeline ---------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    counter-reset: step;
}
.process-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 2rem 1.4rem 1.6rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.process-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-200); }
.process-num {
    width: 52px; height: 52px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; font-weight: 800;
    box-shadow: var(--shadow-green);
    transition: transform var(--t-base), border-radius var(--t-base);
}
.process-card:hover .process-num { transform: rotate(-8deg) scale(1.08); border-radius: 50%; }
.process-card:nth-child(4n+2) .process-num { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: #3b2405; box-shadow: var(--shadow-gold); }
.process-title { font-size: 1rem; font-weight: 800; color: var(--gray-800); margin-bottom: .35rem; }
.process-desc { font-size: .84rem; color: var(--gray-500); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: .9rem; }
.faq-item {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--t-base), box-shadow var(--t-base);
}
.faq-item.open { border-color: var(--primary-200); box-shadow: var(--shadow-md); }
.faq-q {
    width: 100%;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    background: none; border: none;
    padding: 1.15rem 1.4rem;
    font-size: .98rem; font-weight: 700;
    color: var(--gray-800);
    text-align: left;
    cursor: pointer;
}
.faq-q .faq-chev {
    width: 30px; height: 30px; flex-shrink: 0;
    border-radius: 50%;
    background: var(--primary-50); color: var(--primary-600);
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem;
    transition: transform var(--t-base), background var(--t-base), color var(--t-base);
}
.faq-item.open .faq-chev { transform: rotate(180deg); background: var(--primary-600); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-slow); }
.faq-a-inner { padding: 0 1.4rem 1.25rem; font-size: .92rem; color: var(--gray-500); }

/* ---------- CTA band ---------- */
.cta-band {
    position: relative;
    background:
        radial-gradient(800px 400px at 110% 0%, rgb(245 158 11 / .18), transparent 55%),
        linear-gradient(135deg, var(--primary-800), var(--primary-950));
    border-radius: var(--radius-xl);
    padding: 3.6rem 3rem;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 8l4.7 10.9L44 20l-8 8.3 1.9 11.7L28 34.5 18.1 40 20 28.3 12 20l11.3-1.1z' fill='%23ffffff' fill-opacity='.04'/%3E%3C/svg%3E");
}
.cta-band h2 { position: relative; font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800; margin-bottom: .8rem; }
.cta-band p { position: relative; color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 2rem; }
.cta-band .cta-actions { position: relative; display: flex; justify-content: center; flex-wrap: wrap; gap: .9rem; }

/* ---------- Footer ---------- */
.footer { background: var(--primary-950); color: #fff; padding: 4.5rem 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 2.6rem;
    padding-bottom: 3rem;
}
.footer-brand .brand-title { color: #fff; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.6); margin-top: 1rem; max-width: 320px; }
.footer h4 {
    font-size: .84rem; font-weight: 800;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: grid; gap: .65rem; }
.footer-links a {
    font-size: .92rem; color: rgba(255,255,255,.68);
    display: inline-flex; align-items: center; gap: .5rem;
    transition: color var(--t-fast), transform var(--t-fast);
}
.footer-links a:hover { color: #fff; transform: translateX(4px); }
.footer-links a i { font-size: .6rem; color: var(--primary-400); }
.footer-contact { display: grid; gap: 1rem; }
.footer-contact-item { display: flex; gap: .85rem; font-size: .9rem; color: rgba(255,255,255,.68); }
.footer-contact-item i {
    width: 36px; height: 36px; flex-shrink: 0;
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    color: var(--primary-300);
    display: flex; align-items: center; justify-content: center;
}
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
    padding: 1.6rem 0;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .84rem; color: rgba(255,255,255,.5);
}
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 11px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.7);
    display: flex; align-items: center; justify-content: center;
    transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.footer-social a:hover { background: var(--primary-600); color: #fff; transform: translateY(-3px); }

/* Back-to-top */
.to-top {
    position: fixed;
    right: 1.4rem; bottom: 1.4rem;
    width: 46px; height: 46px;
    border: none; border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    color: #fff; font-size: 1rem;
    box-shadow: var(--shadow-green);
    cursor: pointer;
    opacity: 0; pointer-events: none; transform: translateY(12px);
    transition: opacity var(--t-base), transform var(--t-base);
    z-index: 900;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { transform: translateY(-3px); }

/* ---------- Detail page ---------- */
.page-hero {
    position: relative;
    padding: 130px 0 3rem;
    background:
        radial-gradient(800px 380px at 90% -20%, rgb(16 185 129 / .25), transparent 60%),
        linear-gradient(150deg, var(--primary-900), var(--primary-950));
    color: #fff;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 8l4.7 10.9L44 20l-8 8.3 1.9 11.7L28 34.5 18.1 40 20 28.3 12 20l11.3-1.1z' fill='%23ffffff' fill-opacity='.03'/%3E%3C/svg%3E");
}
.breadcrumb {
    position: relative;
    display: inline-flex; align-items: center; gap: .55rem; flex-wrap: wrap;
    font-size: .84rem; color: rgba(255,255,255,.6);
    margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(255,255,255,.8); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb i.sep { font-size: .6rem; }

.detail-head { position: relative; display: flex; gap: 1.6rem; align-items: flex-start; }
.detail-icon {
    width: 84px; height: 84px; flex-shrink: 0;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
    border-radius: 22px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--gold-300);
}
.detail-head h1 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); font-weight: 800; letter-spacing: -.01em; margin-bottom: .35rem; }
.detail-dept { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: .9rem; }
.detail-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.detail-badges .pill { backdrop-filter: blur(6px); }
.pill-glass { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.pill-glass-gold { background: rgba(245,158,11,.2); color: var(--gold-300); border: 1px solid rgba(245,158,11,.35); }
.pill-glass-red { background: rgba(239,68,68,.22); color: #fecaca; border: 1px solid rgba(239,68,68,.4); }

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.8rem;
    align-items: start;
}
.detail-main { display: grid; gap: 1.5rem; min-width: 0; }

.content-card {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.9rem;
    box-shadow: var(--shadow);
}
.content-card-title {
    display: flex; align-items: center; gap: .8rem;
    font-size: 1.08rem; font-weight: 800; color: var(--gray-900);
    margin-bottom: 1.1rem;
}
.content-card-title i {
    width: 38px; height: 38px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-700); font-size: .95rem;
}
.content-card.gold-card { border-color: #fde68a; background: linear-gradient(160deg, #fffbeb, #fff); }
.content-card.gold-card .content-card-title i { background: #fef3c7; color: var(--gold-600); }

.rich-content { color: var(--gray-600); line-height: 1.85; font-size: .95rem; overflow-wrap: anywhere; }
.rich-content p { margin-bottom: .75rem; }
.rich-content ul, .rich-content ol { margin: .75rem 0; padding-left: 1.5rem; }
.rich-content li { margin-bottom: .45rem; }
.rich-content strong, .rich-content b { color: var(--gray-800); }
.rich-content h1, .rich-content h2, .rich-content h3 { color: var(--gray-800); margin: 1rem 0 .5rem; }
.rich-content h1 { font-size: 1.4rem; } .rich-content h2 { font-size: 1.2rem; } .rich-content h3 { font-size: 1.05rem; }

/* Sidebar */
.detail-side { display: grid; gap: 1.5rem; position: sticky; top: 96px; }
.side-card {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow);
}
.side-meta { display: grid; gap: 1.05rem; }
.side-meta-item { display: flex; align-items: center; gap: .85rem; }
.side-meta-item i {
    width: 42px; height: 42px; flex-shrink: 0;
    border-radius: 12px;
    background: var(--gray-50); border: 1px solid var(--gray-100);
    color: var(--primary-600);
    display: flex; align-items: center; justify-content: center;
}
.side-meta-label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-400); }
.side-meta-value { font-size: .95rem; font-weight: 700; color: var(--gray-800); }

.apply-card {
    background: linear-gradient(150deg, var(--primary-800), var(--primary-950));
    color: #fff;
    text-align: center;
    border: none;
}
.apply-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: .4rem; }
.apply-card p { font-size: .88rem; color: rgba(255,255,255,.72); margin-bottom: 1.3rem; }
.apply-nums { display: flex; justify-content: center; gap: 2.2rem; margin-bottom: 1.4rem; }
.apply-num-val { font-size: 1.9rem; font-weight: 800; color: var(--gold-300); line-height: 1.1; }
.apply-num-label { font-size: .74rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Auth pages ---------- */
.auth-page { min-height: 100vh; display: flex; background: var(--gray-50); }
.auth-side {
    flex: 1;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    padding: 3rem;
    color: #fff;
    background:
        radial-gradient(900px 480px at 100% 0%, rgb(16 185 129 / .28), transparent 60%),
        radial-gradient(600px 380px at -10% 110%, rgb(245 158 11 / .15), transparent 55%),
        linear-gradient(150deg, var(--primary-900), var(--primary-950));
    overflow: hidden;
}
.auth-side::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 8l4.7 10.9L44 20l-8 8.3 1.9 11.7L28 34.5 18.1 40 20 28.3 12 20l11.3-1.1z' fill='%23ffffff' fill-opacity='.03'/%3E%3C/svg%3E");
}
.auth-brand { position: relative; max-width: 440px; }
.auth-brand .auth-logo {
    width: 108px; height: 108px;
    margin: 0 auto 1.8rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
    border-radius: 26px;
    display: flex; align-items: center; justify-content: center;
    animation: floatY 6s ease-in-out infinite;
}
.auth-brand .auth-logo img { width: 78px; height: 78px; object-fit: contain; }
.auth-brand { text-align: center; }
.auth-brand h1 { font-size: 2.1rem; font-weight: 800; margin-bottom: .35rem; }
.auth-brand h1 span { color: var(--gold-300); }
.auth-brand h2 { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.8); margin-bottom: 1.2rem; }
.auth-brand > p { font-size: .95rem; color: rgba(255,255,255,.7); }

.auth-features { margin-top: 2.6rem; display: grid; gap: .8rem; text-align: left; }
.auth-feature {
    display: flex; align-items: center; gap: 1rem;
    padding: .95rem 1.15rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    transition: transform var(--t-base), background var(--t-base);
}
.auth-feature:hover { transform: translateX(6px); background: rgba(255,255,255,.12); }
.auth-feature i {
    width: 42px; height: 42px; flex-shrink: 0;
    background: rgba(245,158,11,.18);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-300); font-size: 1.05rem;
}
.auth-feature span { font-weight: 600; font-size: .93rem; }

.auth-form-side {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    padding: 3rem 2rem;
}
.auth-form-wrap { width: 100%; max-width: 440px; }
.auth-head { margin-bottom: 1.8rem; }
.auth-head h3 { font-size: 1.7rem; font-weight: 800; color: var(--gray-900); margin-bottom: .35rem; }
.auth-head p { color: var(--gray-500); font-size: .94rem; }

.auth-card {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.form-group { margin-bottom: 1.3rem; }
.form-label { display: block; font-weight: 700; font-size: .87rem; color: var(--gray-700); margin-bottom: .45rem; }
.form-label .required { color: var(--danger); }
.input-group { position: relative; }
.input-icon {
    position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
    color: var(--gray-400); font-size: .95rem;
    pointer-events: none;
}
.form-input, .form-select {
    width: 100%;
    padding: .85rem 1rem;
    font-size: .95rem;
    font-family: var(--font-main);
    color: var(--gray-800);
    background: #fff;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.input-group .form-input { padding-left: 2.7rem; }
.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgb(16 185 129 / .12);
}
.form-input.is-invalid, .form-select.is-invalid, .file-drop.is-invalid { border-color: var(--danger); }
.form-error { color: var(--danger); font-size: .78rem; font-weight: 600; margin-top: .35rem; }
.form-hint { color: var(--gray-400); font-size: .78rem; margin-top: .35rem; }

.password-toggle {
    position: absolute; right: .9rem; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer;
    color: var(--gray-400); font-size: .95rem;
    padding: .25rem;
}
.password-toggle:hover { color: var(--primary-600); }

.alert {
    display: flex; align-items: flex-start; gap: .7rem;
    padding: .95rem 1.15rem;
    border-radius: 12px;
    font-size: .89rem;
    margin-bottom: 1.4rem;
}
.alert i { margin-top: .15rem; }
.alert-danger { background: var(--danger-light); color: #b91c1c; border: 1px solid #fca5a5; }
.alert-success { background: var(--success-light); color: var(--primary-800); border: 1px solid var(--primary-300); }

.captcha-box {
    display: flex; align-items: center; gap: 1rem;
    background: var(--primary-50);
    border: 2px solid var(--primary-100);
    border-radius: 12px;
    padding: .8rem 1.1rem;
}
.captcha-question { font-size: 1.15rem; font-weight: 800; color: var(--primary-800); letter-spacing: .06em; }
.captcha-input {
    margin-left: auto;
    width: 110px;
    padding: .55rem .75rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem; font-weight: 700; text-align: center;
    font-family: var(--font-main);
    transition: border-color var(--t-fast);
}
.captcha-input:focus { outline: none; border-color: var(--primary-500); }
.captcha-input::-webkit-inner-spin-button, .captcha-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.auth-alt { text-align: center; margin-top: 1.4rem; font-size: .9rem; color: var(--gray-500); }
.auth-alt a { color: var(--primary-600); font-weight: 700; }
.auth-alt a:hover { color: var(--primary-800); }
.auth-foot { margin-top: 1.8rem; text-align: center; font-size: .82rem; color: var(--gray-400); }
.auth-foot a { color: var(--gray-400); }
.auth-foot a:hover { color: var(--primary-600); }

/* Register page */
.register-shell { padding: 120px 0 4rem; }
.form-section { padding: 1.9rem 0; border-bottom: 1px solid var(--gray-100); }
.form-section:first-of-type { padding-top: 0; }
.form-section:last-of-type { border-bottom: none; padding-bottom: 0; }
.form-section-title {
    display: flex; align-items: center; gap: .8rem;
    font-size: 1.05rem; font-weight: 800; color: var(--gray-900);
    margin-bottom: 1.4rem;
}
.form-section-title i {
    width: 38px; height: 38px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-700); font-size: .95rem;
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 1.4rem; }
.form-group.full-width { grid-column: 1 / -1; }

.file-drop {
    position: relative;
    border: 2px dashed var(--gray-300);
    border-radius: 12px;
    padding: 1.2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--t-fast), background var(--t-fast);
}
.file-drop:hover { border-color: var(--primary-400); background: var(--primary-50); }
.file-drop.has-file { border-color: var(--primary-500); border-style: solid; background: var(--primary-50); }
.file-drop input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-drop i { display: block; font-size: 1.4rem; color: var(--primary-500); margin-bottom: .45rem; }
.file-drop .file-label { font-weight: 700; font-size: .88rem; color: var(--gray-700); }
.file-drop .file-hint { display: block; font-size: .73rem; color: var(--gray-400); margin-top: .2rem; }
.file-drop .file-name { display: none; font-size: .82rem; font-weight: 700; color: var(--primary-700); margin-top: .45rem; overflow-wrap: anywhere; }
.file-drop.has-file .file-name { display: block; }

.steps-indicator { display: flex; justify-content: center; gap: .5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.step-chip {
    display: inline-flex; align-items: center; gap: .45rem;
    font-size: .78rem; font-weight: 700;
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    padding: .4rem .9rem;
}
.step-chip i { color: var(--gold-300); font-size: .7rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .detail-layout { grid-template-columns: 1fr; }
    .detail-side { position: static; }
}

@media (max-width: 992px) {
    .nav-menu { display: none; }
    .nav-cta .btn-outline { display: none; }
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .hero-grid { grid-template-columns: 1fr; gap: 2.4rem; }
    .hero-visual { display: none; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
    .auth-side { display: none; }
}

@media (max-width: 768px) {
    .section { padding: 3.8rem 0; }
    .hero { padding-top: 130px; }
    .hero-stats-grid { grid-template-columns: repeat(3, 1fr); gap: .5rem; padding: 1.4rem 0; }
    .stat-label { font-size: .68rem; }
    .vacancy-grid { grid-template-columns: 1fr; }
    .cta-band { padding: 2.6rem 1.5rem; border-radius: var(--radius-lg); }
    .detail-head { flex-direction: column; }
    .detail-icon { width: 68px; height: 68px; font-size: 1.6rem; border-radius: 18px; }
    .form-row { grid-template-columns: 1fr; }
    .auth-card, .content-card { padding: 1.5rem; }
    .navbar-inner { height: 68px; }
    .brand-title { font-size: .95rem; }
}

@media (max-width: 480px) {
    .hero-actions .btn, .cta-band .cta-actions .btn { width: 100%; }
    .process-grid { grid-template-columns: 1fr; }
    .vc-actions { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .apply-nums { gap: 1.4rem; }
}

/* ============================================================
   Bottom Navigation Mobile (halaman publik) — v2
   ============================================================ */
.pub-bnav { display: none; }

@media (max-width: 768px) {
    body { padding-bottom: 76px; }

    /* Footer disembunyikan di mobile — navigasi sudah tersedia di bottom nav */
    .footer { display: none; }

    .pub-bnav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 90;
        display: flex;
        align-items: stretch;
        justify-content: space-around;
        background: #fff;
        border-top: 1px solid var(--gray-100);
        box-shadow: 0 -6px 24px rgba(2, 44, 34, .10);
        padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    }

    .pub-bnav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        gap: 3px;
        text-decoration: none;
        color: var(--gray-400);
        font-size: .62rem;
        font-weight: 700;
        padding: 4px 0 2px;
        min-width: 0;
    }

    .pub-bnav-item i { font-size: 1.05rem; }

    .pub-bnav-item.active { color: var(--primary-700); }

    .pub-bnav-center { position: relative; }

    .pub-bnav-center .ic {
        width: 52px;
        height: 52px;
        margin-top: -28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
        color: #fff;
        font-size: 1.15rem;
        border: 4px solid #fff;
        box-shadow: 0 8px 18px rgba(217, 119, 6, .35);
    }

    .pub-bnav-center span:last-child { color: var(--gold-600); }

    .to-top { bottom: 92px; }
}
