/* ===========================================================================
   akademikerja.id — Design System
   Portal P3MI Tangsel
   =========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* surfaces */
  --bg: #f4f7fb;
  --bg-soft: #eef2f8;
  --card: #ffffff;
  /* ink */
  --ink: #0f1b2d;
  --ink-2: #3a4a61;
  --muted: #6b7a90;
  --line: #e5ebf3;
  /* brand */
  --brand: #1c4e8a;
  --brand-2: #2a6fc4;
  --brand-dark: #12345c;
  --accent: #e3aa31;
  --accent-soft: #fdf4e1;
  /* status */
  --ok: #15a05a; --ok-soft: #e4f6ec;
  --warn: #c9760a; --warn-soft: #fdf0db;
  --danger: #dc2626;
  /* effects */
  --shadow-sm: 0 1px 2px rgba(16,27,45,.06), 0 1px 1px rgba(16,27,45,.04);
  --shadow: 0 8px 24px rgba(16,27,45,.09);
  --shadow-lg: 0 20px 44px rgba(16,27,45,.16);
  --radius: 16px;
  --radius-sm: 11px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { letter-spacing: -0.01em; }

/* ---------- Top bar (halaman internal) ---------- */
.topbar {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: #fff;
  border-bottom: 3px solid var(--accent);
  position: relative; z-index: 5;
}
.topbar-inner {
  max-width: 1140px; margin: 0 auto; padding: 14px 22px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.topbar .logo {
  width: 46px; height: 46px; flex: none;
  background: #fff; border-radius: 12px; padding: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.topbar h1 { font-size: 19px; margin: 0; line-height: 1.2; font-weight: 700; }
.topbar .eyebrow { font-size: 10.5px; line-height: 1.35; opacity: .82; margin: 0 0 4px; font-weight: 600; max-width: 300px; }
.topbar .sub { font-size: 12.5px; opacity: .8; margin: 0; }
.topbar .spacer { flex: 1; }
.topbar a.adminlink {
  color: #fff; font-size: 13px; opacity: .92; font-weight: 500;
  padding: 7px 13px; border-radius: 9px; transition: background .15s;
}
.topbar a.adminlink:hover { background: rgba(255,255,255,.14); text-decoration: none; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 28px 22px 72px; }

/* ---------- Hero (landing) ---------- */
.hero-banner {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(125deg, var(--brand-dark) 0%, var(--brand) 52%, var(--brand-2) 100%);
  border-bottom: 3px solid var(--accent);
}
.hero-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.10) 1.2px, transparent 1.3px);
  background-size: 22px 22px; opacity: .55;
}
.hero-banner::after {
  content: ""; position: absolute; right: -140px; top: -140px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(227,170,49,.30), transparent 65%);
}
.hero-nav { position: relative; z-index: 2; max-width: 1140px; margin: 0 auto; padding: 18px 22px; display: flex; align-items: center; gap: 13px; }
.hero-nav .logo { width: 44px; height: 44px; background: #fff; border-radius: 12px; padding: 5px; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.hero-nav .brandtext { font-weight: 700; font-size: 15.5px; line-height: 1.15; }
.hero-nav .brandtext small { display: block; font-weight: 500; font-size: 10.5px; line-height: 1.35; opacity: .82; max-width: 290px; margin-top: 2px; }
.hero-nav .spacer { flex: 1; }
.hero-nav a.navlink {
  color: #fff; font-weight: 600; font-size: 14px;
  padding: 9px 18px; border-radius: 10px; border: 1px solid rgba(255,255,255,.28);
  transition: background .15s;
}
.hero-nav a.navlink:hover { background: rgba(255,255,255,.16); text-decoration: none; }

.hero-inner { position: relative; z-index: 2; max-width: 1140px; margin: 0 auto; padding: 40px 22px 64px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.24);
  padding: 7px 15px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #6ee7a8; box-shadow: 0 0 0 3px rgba(110,231,168,.25); }
.hero-title { font-size: clamp(29px, 4.8vw, 48px); font-weight: 800; line-height: 1.08; letter-spacing: -.025em; margin: 20px 0 14px; max-width: 780px; }
.hero-title .hl { color: #ffd479; }
.hero-desc { font-size: clamp(15px, 1.8vw, 18px); opacity: .92; max-width: 600px; margin: 0 0 30px; }
.hero-search {
  display: flex; align-items: center; gap: 8px; background: #fff;
  border-radius: 15px; padding: 7px 7px 7px 16px; max-width: 640px;
  box-shadow: var(--shadow-lg);
}
.hero-search svg { flex: none; color: var(--muted); }
.hero-search input { flex: 1; border: none; outline: none; font-size: 15.5px; padding: 11px 4px; background: transparent; color: var(--ink); font-family: inherit; }
.hero-search input::placeholder { color: #9aa7b8; }
.hero-stats { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-stat { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 15px; padding: 14px 22px; min-width: 132px; }
.hero-stat .num { font-size: 27px; font-weight: 800; line-height: 1; }
.hero-stat .lbl { font-size: 12px; opacity: .86; margin-top: 5px; }

/* ---------- Section heading ---------- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin: 4px 0 20px; flex-wrap: wrap; }
.section-head h2 { font-size: 22px; margin: 0; font-weight: 700; }
.section-head p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }

/* ---------- Cards grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #d3e0f1; }
.card-top { display: flex; align-items: center; gap: 12px; }
.avatar { width: 52px; height: 52px; flex: none; border-radius: 13px; object-fit: contain; background: #fff; border: 1px solid var(--line); padding: 5px; }
.avatar-mono {
  width: 52px; height: 52px; flex: none; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.card .name { font-weight: 700; font-size: 16px; margin: 0; line-height: 1.25; }
.card .tagline { color: var(--ink-2); font-size: 13.5px; margin: 0; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card .meta { font-size: 12.5px; color: var(--muted); }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; border-top: 1px solid var(--line); padding-top: 13px; }
.card-foot .go { font-weight: 600; font-size: 13.5px; color: var(--brand); display: inline-flex; align-items: center; gap: 5px; transition: gap .15s; }
.card:hover .card-foot .go { gap: 9px; }

.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { font-size: 11.5px; background: #eef4fc; color: var(--brand); border: 1px solid #dbe7f7; padding: 3px 10px; border-radius: 999px; font-weight: 500; }

/* ---------- Badge ---------- */
.badge { font-size: 11.5px; font-weight: 600; padding: 3px 11px 3px 9px; border-radius: 999px; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge.aktif { background: var(--ok-soft); color: #0f7a43; }
.badge.menunggu { background: var(--warn-soft); color: #a85d06; }
.badge.nonaktif { background: #eef1f5; color: #5a6b7e; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px; cursor: pointer;
  font-size: 14px; font-weight: 600; font-family: inherit; padding: 10px 18px; border-radius: 11px;
  border: 1px solid var(--brand); background: var(--brand); color: #fff;
  transition: transform .12s, box-shadow .15s, background .15s; box-shadow: 0 1px 2px rgba(28,78,138,.25);
}
.btn:hover { background: var(--brand-dark); text-decoration: none; box-shadow: 0 5px 14px rgba(28,78,138,.3); }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: #fff; color: var(--brand); border-color: #cfdcec; box-shadow: none; }
.btn.ghost:hover { background: #f3f7fc; border-color: var(--brand); }
.btn.sm { padding: 7px 13px; font-size: 13px; border-radius: 9px; }
.btn.block { width: 100%; }
.btn:focus-visible { outline: 3px solid rgba(42,111,196,.4); outline-offset: 1px; }

/* ---------- Company profile ---------- */
.profile-head { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.profile-head .info { flex: 1; min-width: 240px; }
.profile-head h2 { margin: 0 0 4px; font-size: 25px; font-weight: 800; }
.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); margin-top: 18px; }
.panel h3 { margin: 0 0 14px; font-size: 16px; font-weight: 700; }
.kv { display: grid; grid-template-columns: 160px 1fr; gap: 8px 14px; font-size: 14px; }
.kv dt { color: var(--muted); }
.kv dd { margin: 0; color: var(--ink-2); }

table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-weight: 600; font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; }
tbody tr:hover { background: var(--bg-soft); }

/* ---------- QR card ---------- */
.qrcard { text-align: center; }
.qrcard img { width: 230px; height: 230px; border: 1px solid var(--line); border-radius: 14px; padding: 10px; background: #fff; box-shadow: var(--shadow-sm); }
.qrcard .url { font-size: 12px; color: var(--muted); word-break: break-all; margin: 10px 0 14px; }

/* ---------- Forms ---------- */
input, select, textarea {
  width: 100%; padding: 10px 13px; font-size: 14px; font-family: inherit;
  border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand-2); box-shadow: 0 0 0 3px rgba(42,111,196,.14); }
textarea { min-height: 96px; resize: vertical; }
label { font-size: 13px; font-weight: 600; color: var(--ink-2); display: block; margin: 14px 0 5px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- Admin ---------- */
.adminbar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 18px; }

/* ---------- Modal ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(15,27,45,.55); display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 50; backdrop-filter: blur(2px); animation: fadeIn .15s ease; }
.modal { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; max-width: 460px; padding: 26px; animation: popIn .2s ease; }
.modal h3 { margin: 0 0 4px; font-size: 18px; }
.modal .modal-sub { color: var(--muted); font-size: 13px; margin: 0 0 8px; }
.modal code { background: var(--bg-soft); padding: 1px 6px; border-radius: 6px; font-size: 12.5px; }
.modal-actions { display: flex; gap: 10px; margin-top: 20px; align-items: center; }
.modal-actions .spacer { flex: 1; }

/* ---------- Auth (login) split-screen ---------- */
.auth { min-height: 100vh; display: grid; grid-template-columns: 1.1fr .9fr; }
.auth-brand { position: relative; overflow: hidden; color: #fff; padding: 54px 52px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(155deg, var(--brand-dark), var(--brand) 58%, var(--brand-2)); }
.auth-brand::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.10) 1.2px, transparent 1.3px); background-size: 22px 22px; opacity: .5; }
.auth-brand::after { content: ""; position: absolute; right: -120px; bottom: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(227,170,49,.28), transparent 65%); }
.auth-brand > * { position: relative; z-index: 2; }
.auth-brand .logo-lockup { display: flex; align-items: center; gap: 13px; }
.auth-brand .logo-lockup img { width: 50px; height: 50px; background: #fff; border-radius: 13px; padding: 5px; box-shadow: 0 2px 10px rgba(0,0,0,.2); }
.auth-brand .eyebrow { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; opacity: .82; font-weight: 600; margin: 0; }
.auth-brand h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; line-height: 1.12; margin: 22px 0 14px; max-width: 420px; }
.auth-brand .lead { opacity: .9; font-size: 15.5px; max-width: 400px; margin: 0; }
.auth-points { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 13px; }
.auth-points li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; font-weight: 500; }
.auth-points .ck { width: 24px; height: 24px; flex: none; border-radius: 50%; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); display: flex; align-items: center; justify-content: center; font-size: 13px; }
.auth-brand .foot-note { font-size: 12.5px; opacity: .75; margin: 0; }
.auth-form { display: flex; align-items: center; justify-content: center; padding: 40px 24px; background: var(--bg); }
.auth-card { width: 100%; max-width: 400px; }
.auth-card h3 { font-size: 23px; font-weight: 800; margin: 0 0 4px; }
.auth-card .sub { color: var(--muted); font-size: 14px; margin: 0 0 22px; }
@media (max-width: 860px) { .auth { grid-template-columns: 1fr; } .auth-brand { display: none; } }

/* ---------- Misc ---------- */
.empty, .loading { text-align: center; color: var(--muted); padding: 48px 0; grid-column: 1 / -1; }
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 12px; font-size: 14px; font-weight: 500; box-shadow: var(--shadow-lg); z-index: 100; }
.foot { text-align: center; color: var(--muted); font-size: 12.5px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }

/* ---------- Skeleton ---------- */
.skeleton { background: linear-gradient(100deg, #e9eef6 30%, #f5f8fc 50%, #e9eef6 70%); background-size: 200% 100%; animation: shimmer 1.3s infinite; border-radius: 8px; }
.skel-card { height: 196px; border-radius: var(--radius); }

@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes popIn { from { opacity: 0; transform: translateY(10px) scale(.985); } }

@media (max-width: 560px) {
  .row2 { grid-template-columns: 1fr; }
  .kv { grid-template-columns: 1fr; }
  .hero-stat { flex: 1; min-width: 0; }
}

/* ===========================================================================
   Alur Proses CPMI (publik / landing) — kartu langkah untuk calon PMI.
   Dirender oleh /assets/alur-pmi.js ke dalam [data-alur-public].
   =========================================================================== */
.alur-section h2 { margin: 0 0 4px; font-size: 18px; font-weight: 800; color: var(--ink); }
.alur-section .alur-lead { margin: 0 0 16px; font-size: 13.5px; color: var(--muted); }
.alur {
  list-style: none; margin: 4px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 14px;
  counter-reset: alur;
}
.alur-step {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 16px 16px 14px;
}
.alur-num {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-size: 14px; font-weight: 800;
  color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 2px 6px rgba(28,78,138,.28);
}
.alur-body { min-width: 0; }
.alur-step h4 {
  margin: 2px 0 5px; font-size: 14px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 7px; line-height: 1.25;
}
.alur-ico { font-size: 15px; flex: none; }
.alur-step p { margin: 0; font-size: 12.7px; color: var(--ink-2); line-height: 1.45; }
.alur-note {
  margin: 14px 0 0; font-size: 12.5px; color: var(--ink-2);
  border-left: 3px solid var(--accent); background: var(--accent-soft);
  padding: 10px 13px; border-radius: 0 8px 8px 0;
}

/* Public landing CTA under the alur cards */
.alur-cta { margin-top: 18px; display: flex; justify-content: center; }

/* ===========================================================================
   SOP Tim Kerja — varian padat & dapat dilipat untuk admin dashboard
   Dirender oleh /assets/alur-pmi.js ke dalam [data-alur-sop].
   =========================================================================== */
.sop-panel { padding: 16px 22px; }
.sop-panel > summary {
  cursor: pointer; list-style: none; font-size: 15px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 9px; user-select: none;
}
.sop-panel > summary::-webkit-details-marker { display: none; }
.sop-panel > summary::before {
  content: "▸"; color: var(--brand); font-size: 13px; transition: transform .15s ease;
}
.sop-panel[open] > summary::before { transform: rotate(90deg); }
.sop-panel .alur-lead { margin: 10px 0 0; }
.sop {
  list-style: none; margin: 12px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 8px;
}
.sop-item {
  display: flex; gap: 10px; align-items: baseline;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 8px;
  padding: 9px 12px; font-size: 12.7px; line-height: 1.45;
}
.sop-n {
  flex: none; width: 22px; height: 22px; border-radius: 6px;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
  color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.sop-text { color: var(--ink-2); min-width: 0; }
.sop-text b { color: var(--ink); font-weight: 700; }

/* ===========================================================================
   Halaman Panduan "Cara Menjadi PMI" (/alur) — gaya landing, komprehensif
   =========================================================================== */
.guide-section { margin-top: 50px; }
.guide-h2 { font-size: clamp(20px,2.6vw,26px); font-weight: 800; letter-spacing: -.02em; margin: 0 0 6px; }
.guide-sub { color: var(--muted); margin: 0 0 22px; font-size: 14.5px; max-width: 700px; }

/* Manfaat jalur resmi */
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 16px; }
.benefit { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.benefit .ico { font-size: 26px; }
.benefit h4 { margin: 10px 0 5px; font-size: 15.5px; }
.benefit p { margin: 0; font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* Panduan lengkap per tahap */
.phase { display: flex; gap: 18px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); margin-bottom: 16px; position: relative; overflow: hidden; }
.phase::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(var(--brand),var(--brand-2)); }
.phase .ph-num { flex: none; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; font-size: 20px; font-weight: 800; color: #fff; background: linear-gradient(135deg,var(--brand),var(--brand-2)); box-shadow: 0 4px 10px rgba(28,78,138,.3); }
.ph-body { min-width: 0; flex: 1; }
.ph-body > h3 { margin: 4px 0 4px; font-size: 18px; }
.ph-desc { margin: 0 0 14px; color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.ph-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; }
.ph-block h5 { margin: 0 0 7px; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.ph-block ul { margin: 0; padding-left: 18px; }
.ph-block li { font-size: 13px; color: var(--ink-2); line-height: 1.5; margin-bottom: 4px; }
.ph-tip { grid-column: 1/-1; background: var(--accent-soft); border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; padding: 9px 13px; font-size: 12.7px; color: var(--ink-2); }
@media (max-width: 620px){ .ph-cols { grid-template-columns: 1fr; } }

/* Checklist dokumen */
.doc-checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 9px; }
.doc-checklist li { display: flex; gap: 9px; align-items: flex-start; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 9px; padding: 11px 13px; font-size: 13px; color: var(--ink-2); }
.doc-checklist li::before { content: "✓"; flex: none; color: var(--ok); font-weight: 800; }

/* Peringatan penempatan ilegal */
.warnbox { background: #fff6f6; border: 1px solid #f3c9c9; border-left: 4px solid var(--danger); border-radius: var(--radius); padding: 22px 24px; }
.warnbox h3 { margin: 0 0 12px; color: #b42318; font-size: 17px; }
.warnbox ul { margin: 0; padding-left: 20px; }
.warnbox li { font-size: 13.5px; color: #7a271a; line-height: 1.55; margin-bottom: 6px; }
.warnbox .report { margin: 14px 0 0; font-size: 13px; color: #7a271a; }

/* FAQ */
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.faq summary { cursor: pointer; list-style: none; padding: 15px 18px; font-weight: 700; font-size: 14.5px; display: flex; align-items: center; gap: 10px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "+"; color: var(--brand); font-weight: 800; font-size: 18px; line-height: 1; }
.faq details[open] summary::before { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .faq-a { padding: 14px 18px 18px; font-size: 13.5px; color: var(--ink-2); line-height: 1.6; }

/* CTA band */
.cta-band { margin: 56px 0 0; border-radius: var(--radius); padding: 42px 28px; text-align: center; color: #fff; background: linear-gradient(125deg,var(--brand-dark),var(--brand) 60%,var(--brand-2)); box-shadow: var(--shadow); }
.cta-band h2 { font-size: clamp(20px,2.6vw,26px); margin: 0 0 8px; font-weight: 800; }
.cta-band p { margin: 0 0 20px; opacity: .92; font-size: 14.5px; }
.cta-band .btn { background: #fff; color: var(--brand-dark); border-color: #fff; }

/* Login brand lockup — nama sistem (utama) + nama lengkap (membungkus 2 baris) */
.auth-brand .logo-lockup .brand-name { display: block; font-size: 17px; font-weight: 800; line-height: 1.15; }
.auth-brand .logo-lockup .brand-full { margin: 5px 0 0; font-size: 11px; line-height: 1.4; font-weight: 500; opacity: .8; max-width: 295px; }

/* ===========================================================================
   Lowongan — direktori (/lowongan), kartu, detail (/lowongan/:slug/:jobId),
   dan editor lowongan di CMS.
   =========================================================================== */
.go { color: var(--brand); font-weight: 600; font-size: 13.5px; white-space: nowrap; }

/* Filter bar */
.job-filter { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin: 4px 0 10px; }
.job-search { flex: 1; min-width: 240px; display: flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 9px 14px; box-shadow: var(--shadow-sm); }
.job-search svg { color: var(--muted); flex: none; }
.job-search input { flex: 1; border: none; outline: none; font-size: 14.5px; font-family: inherit; background: transparent; color: var(--ink); }
.job-filter select { border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; font-size: 14px; font-family: inherit; background: var(--card); color: var(--ink); box-shadow: var(--shadow-sm); }
.job-resultinfo { color: var(--muted); font-size: 13.5px; margin: 0 0 18px; }

/* Job cards grid */
.job-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; }
.job-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #d3e0f1; text-decoration: none; }
.job-thumb { height: 150px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.job-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.job-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.job-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.job-card-head h3 { margin: 0; font-size: 16px; font-weight: 700; line-height: 1.25; }
.job-company { font-size: 13px; color: var(--ink-2); }
.job-card .chips { margin: 2px 0; }
.job-meta { display: flex; flex-wrap: wrap; gap: 4px 14px; font-size: 13px; color: var(--ink-2); margin-top: auto; }
.job-deadline { font-size: 12px; color: var(--muted); }
.job-deadline.closed { color: var(--danger); font-weight: 600; }

/* Badges */
.job-badge { flex: none; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.job-badge.open { background: var(--ok-soft); color: var(--ok); }
.job-badge.closed { background: #fdeaea; color: var(--danger); }
.job-badge.sm { font-size: 10px; padding: 1px 7px; vertical-align: middle; }

/* Job detail */
.backlink { display: inline-block; margin-bottom: 14px; font-size: 13.5px; color: var(--muted); }
.job-hero { display: flex; gap: 20px; flex-wrap: wrap; align-items: stretch; }
.job-hero-img { flex: none; width: 300px; max-width: 100%; height: 200px; border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: var(--shadow-sm); }
.job-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.job-hero-info { flex: 1; min-width: 240px; display: flex; flex-direction: column; justify-content: center; }
.job-hero-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.job-hero-info h2 { margin: 0; font-size: clamp(22px, 3vw, 28px); font-weight: 800; letter-spacing: -.02em; }
.job-company-link { display: inline-block; margin-top: 8px; font-size: 15px; font-weight: 600; color: var(--brand); }
.closed-note { margin: 18px 0 0; background: #fff6f6; border: 1px solid #f3c9c9; border-left: 4px solid var(--danger); border-radius: 12px; padding: 12px 16px; font-size: 13.5px; color: #7a271a; }
.req-list { margin: 0; padding-left: 20px; }
.req-list li { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin-bottom: 6px; }
.contact-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.contact-wa { background: #25d366; border-color: #25d366; }
.contact-wa:hover { background: #1fb457; border-color: #1fb457; }
.warn-illegal { margin: 16px 0 0; font-size: 12.5px; color: var(--ink-2); background: var(--accent-soft); border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; padding: 10px 13px; }

/* CMS — kartu editor lowongan */
.job-edit { position: relative; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; margin-bottom: 14px; background: var(--bg-soft); }
.job-edit-del { position: absolute; top: 12px; right: 12px; }
