/* ─── RESET & BASE ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sky:    #7BBDD4;
  --sky2:   #A8D4E3;
  --sky3:   #D6EDF5;
  --sky4:   #EBF6FA;
  --navy:   #1A2B4A;
  --navy2:  #243757;
  --navy3:  #2E4470;
  --mid:    #4A7FA0;
  --white:  #FFFFFF;
  --off:    #F4F8FB;
  --border: rgba(123,189,212,0.25);
  --border2:rgba(123,189,212,0.5);
  --text:   #1A2B4A;
  --text2:  #4A6785;
  --text3:  #8AAEC4;
  --orange: #E8834A;
  --green:  #3DAA7A;
  --sidebar-bg: #1A2B4A;

  /* Surface/card vars (dipakai dark mode override) */
  --surface:   #FFFFFF;
  --card-bg:   #FFFFFF;
  --surface2:  var(--sky4);
  --input-bg:  #FFFFFF;
  --bg:        var(--off);
  --text-inv:  #FFFFFF;
}

/* ══════════════════════════════════════════════════
   DARK MODE VARIABLES
══════════════════════════════════════════════════ */
html.theme-dark {
  --sidebar-bg: #1e2d45;
  --bg:         #0f1623;
  --surface:    #1a2438;
  --card-bg:    #1a2438;
  --surface2:   rgba(255,255,255,0.06);
  --input-bg:   rgba(255,255,255,0.06);
  --border:     rgba(123,189,212,0.12);
  --border2:    rgba(123,189,212,0.25);
  --text:       rgba(255,255,255,0.88);
  --text2:      rgba(255,255,255,0.55);
  --text3:      rgba(255,255,255,0.3);
  --off:        #141e2e;
  --white:      #1a2438;
  --text-inv:   #1A2B4A;
}

@media (prefers-color-scheme: dark) {
  html.theme-system {
    --sidebar-bg: #1e2d45;
    --bg:         #0f1623;
    --surface:    #1a2438;
    --card-bg:    #1a2438;
    --surface2:   rgba(255,255,255,0.06);
    --input-bg:   rgba(255,255,255,0.06);
    --border:     rgba(123,189,212,0.12);
    --border2:    rgba(123,189,212,0.25);
    --text:       rgba(255,255,255,0.88);
    --text2:      rgba(255,255,255,0.55);
    --text3:      rgba(255,255,255,0.3);
    --off:        #141e2e;
    --white:      #1a2438;
    --text-inv:   #1A2B4A;
  }
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 56px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}
.nav-left { display: flex; align-items: center; gap: 40px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 36px; }
.logo-text { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--navy); letter-spacing: 0.04em; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--text2); text-decoration: none; }
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-actions { display: flex; gap: 10px; align-items: center; }

.btn-outline {
  padding: 9px 20px; font-size: 13px; font-weight: 500;
  border: 1px solid var(--border2); border-radius: 999px;
  background: transparent; color: var(--navy); cursor: pointer;
  font-family: inherit; transition: all 0.2s;
}
.btn-outline:hover { background: var(--sky4); border-color: var(--sky); }

/* ── btn-primary ── */
.btn-primary {
  padding: 9px 20px; font-size: 13px; font-weight: 600;
  border: none; border-radius: 999px;
  background: var(--navy); /* #1A2B4A — navy gelap, teks putih kelihatan */
  color:white;
  font-family: inherit; transition: background 0.2s, color 0.2s;
  text-decoration: none; display: inline-flex; align-items: center;
}
.btn-primary:hover { background: var(--navy2); }

/* btn-primary dark mode */
html.theme-dark .btn-primary {
  background: var(--sky);
  color: var(--navy);
}
html.theme-dark .btn-primary:hover {
  background: var(--sky2);
}

/* btn-primary orange variant (Lengkapi Profil) */
.btn-primary.btn-orange {
  background: #f97316;
  color: white;
}
.btn-primary.btn-orange:hover { background: #ea6c0a; }
html.theme-dark .btn-primary.btn-orange {
  background: #f97316;
  color: white;
}

/* ─── SECTION WRAPPER ─────────────────────── */
section { position: relative; overflow: hidden; }

/* ─── 1. HERO ─────────────────────────────── */
.s-hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  padding: 80px 56px 60px;
}
.s-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(123,189,212,0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  width: 680px; height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,189,212,0.15) 0%, transparent 70%);
  right: -120px; top: -120px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.hero-left { display: flex; flex-direction: column; gap: 28px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(123,189,212,0.15); border: 1px solid rgba(123,189,212,0.35);
  border-radius: 999px; padding: 6px 16px;
  font-size: 12px; font-weight: 500; color: var(--sky2);
  width: fit-content;
}
.hero-badge-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: 52px; line-height: 1.12; color: white;
}
.hero-title em { color: var(--sky); font-style: normal; }
.hero-sub { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 420px; }
.hero-sub strong { color: var(--sky2); font-weight: 500; }

.search-wrap {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(123,189,212,0.3);
  border-radius: 18px; padding: 6px;
  display: flex; gap: 0;
  backdrop-filter: blur(8px);
}
.sf {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; flex: 1;
}
.sf i { color: var(--sky); font-size: 13px; flex-shrink: 0; }
.sf input {
  border: none; outline: none; background: transparent;
  font-size: 13px; color: white; width: 100%;
  font-family: inherit;
}
.sf input::placeholder { color: rgba(255,255,255,0.35); }
.sf-div { width: 1px; background: rgba(123,189,212,0.25); align-self: stretch; margin: 8px 0; }
.btn-search {
  background: var(--sky); color: var(--navy);
  border: none; border-radius: 13px;
  padding: 12px 24px; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: inherit; white-space: nowrap;
  transition: background 0.2s;
}
.btn-search:hover { background: var(--sky2); }

.tags-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.tag-lbl { font-size: 12px; color: rgba(255,255,255,0.4); }
.tag {
  font-size: 12px; color: rgba(255,255,255,0.7);
  padding: 5px 14px; border: 1px solid rgba(123,189,212,0.3);
  border-radius: 999px; cursor: pointer; transition: all 0.2s;
}
.tag:hover { border-color: var(--sky); color: var(--sky); background: rgba(123,189,212,0.08); }

.hero-stats { display: flex; gap: 28px; }
.hstat { display: flex; flex-direction: column; gap: 2px; }
.hstat-num { font-size: 24px; font-weight: 600; color: white; }
.hstat-lbl { font-size: 11px; color: rgba(255,255,255,0.4); }
.hstat-sep { width: 1px; background: rgba(255,255,255,0.1); }

.hero-right { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-img-wrap { position: relative; width: 100%; }
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 24px;
  border: 1px solid rgba(123,189,212,0.2);
  background: rgba(123,189,212,0.06);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  overflow: hidden;
}
.hero-img-placeholder img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.img-ph-inner { text-align: center; color: rgba(123,189,212,0.5); }
.img-ph-inner i { font-size: 48px; margin-bottom: 12px; }
.img-ph-inner p { font-size: 12px; }

.hf-card {
  position: absolute;
  background: rgba(0, 128, 148, 0.349);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0);
  border-radius: 14px;
  padding: 12px 16px;
}
.hf-top { top: -20px; right: -5px; }
.hf-bot { bottom: -16px; left: -16px; }
.hf-card .hfc-num { font-size: 20px; font-weight: 600; color: white; }
.hf-card .hfc-lbl { font-size: 11px; color: rgb(255,255,255); margin-top: 2px; }
.hf-card .hfc-green { color: #00b041; font-size: 11px; font-weight: 500; margin-top: 4px; }

/* ─── 2. SEARCH FILTER BAR ────────────────── */
.s-filterbar {
  background: var(--sky4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 56px;
  margin-bottom: 20px;
  border-radius: 20px;
}
.filterbar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.fb-label { font-size: 13px; font-weight: 500; color: var(--text2); margin-right: 4px; white-space: nowrap; }
.fb-chip {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid var(--border2); background: white;
  font-size: 12px; font-weight: 500; color: var(--navy);
  cursor: pointer; transition: all 0.2s;
}
.fb-chip:hover, .fb-chip.on { background: var(--navy); color: white; border-color: var(--navy); }
.fb-chip i { font-size: 11px; }
.fb-sep { flex: 1; }
.fb-count { font-size: 12px; color: var(--text3); white-space: nowrap; }

/* ─── 3. FEATURED JOBS ────────────────────── */
.s-jobs {
  background: var(--white);
  padding: 80px 56px;
}
.section-inner { max-width: 1100px; margin: 0 auto; }
.sec-head { display: block; margin-bottom: 36px; }
.sec-eyebrow { font-size: 25px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sky); margin-bottom: 0px; }
.sec-title { font-family: 'DM Serif Display', serif; font-size: 50px; color: var(--navy); line-height: 1.2; }
.sec-title em { color: var(--sky); font-style: normal; }
.sec-link { font-size: 20px; font-weight: 500; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 5px; }
.sec-link-small {
  font-size: 18px; font-weight: 500; color: var(--sky2);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: opacity 0.2s;
}
.sec-link-small:hover { opacity: 0.8; }
.sec-link:hover { color: var(--mid); }
.eyebrow-wrapper {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.job-card {
  background: white;
  border: 1px solid rgba(123,189,212,0.25);
  border-radius: 18px; padding: 20px;
  cursor: pointer; transition: all 0.2s;
  display: flex; flex-direction: column; gap: 14px;
}
.job-card:hover { border-color: var(--sky); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,43,74,0.08); }
.job-card.featured-card { border-color: var(--sky); background: linear-gradient(135deg, var(--sky4) 0%, white 100%); }
.jc-top { display: flex; align-items: flex-start; gap: 12px; }
.jc-logo {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; border: 1px solid var(--border);
}
.jc-info { flex: 1; }
.jc-title { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.jc-company { font-size: 12px; color: var(--text2); margin-top: 3px; }
.jc-save { color: var(--text3); cursor: pointer; font-size: 14px; }
.jc-save:hover { color: var(--sky); }
.jc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.jc-tag { font-size: 11px; padding: 4px 10px; border-radius: 6px; font-weight: 500; }
.t-blue { background: var(--sky4); color: var(--mid); }
.t-green { background: #edfdf4; color: #1a7a52; }
.t-gray { background: var(--off); color: var(--text2); }
.t-orange { background: #fff4ec; color: #b85c1e; }
.t-navy { background: rgba(26,43,74,0.07); color: var(--navy); }
.jc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.jc-salary { font-size: 14px; font-weight: 600; color: var(--navy); }
.jc-loc { font-size: 11px; color: var(--text3); display: flex; align-items: center; gap: 4px; }

.s-jobs-deco {
  position: absolute; width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,189,212,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.deco-tl { top: -80px; left: -80px; }
.deco-br { bottom: -80px; right: -80px; }

.jobs-illus {
  width: 100%; border-radius: 20px; aspect-ratio: 16/5;
  background: var(--sky4); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 36px; overflow: hidden; position: relative;
}
.jobs-illus img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.jobs-illus-ph { color: var(--sky); text-align: center; }
.jobs-illus-ph i { font-size: 36px; }
.jobs-illus-ph p { font-size: 12px; margin-top: 8px; color: var(--text3); }

/* ─── 4. CATEGORIES ──────────────────────── */
.s-categories { background: var(--navy); padding: 80px 56px; position: relative; }
.s-categories::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(123,189,212,0.12) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.s-categories .sec-title { color: white; }
.s-categories .sec-eyebrow { color: var(--sky2); }
.s-categories .sec-link { color: var(--sky2); }
.s-categories .sec-link:hover { color: white; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; position: relative; z-index: 1; }
.cat-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(123,189,212,0.2);
  border-radius: 18px; padding: 22px; cursor: pointer; transition: all 0.2s;
  display: flex; flex-direction: column; gap: 12px;
}
.cat-card:hover { background: rgba(123,189,212,0.12); border-color: rgba(123,189,212,0.5); transform: translateY(-2px); }
.cat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; border: 1px solid rgba(123,189,212,0.25);
}
.cat-name { font-size: 14px; font-weight: 600; color: white; }
.cat-count { font-size: 12px; color: rgba(255,255,255,0.4); }
.cat-arrow { font-size: 13px; color: var(--sky); align-self: flex-end; }

.cat-illus-row {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: 54px; margin-bottom: 48px; align-items: flex-end;
}
.cat-illus {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(123,189,212,0.1); box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.cat-illus:first-child { height: 280px; }
.cat-illus:last-child { height: 340px; }
.cat-illus::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.4), transparent);
  pointer-events: none;
}
.cat-illus:hover img { transform: scale(1.05); }
.cat-illus img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; transition: transform 0.5s ease; }
.cat-illus-ph { text-align: center; color: rgba(123,189,212,0.5); }
.cat-illus-ph i { font-size: 32px; }
.cat-illus-ph p { font-size: 11px; margin-top: 6px; }

/* ─── 5. HOW IT WORKS ─────────────────────── */
.s-how { background: var(--off); padding: 80px 56px; position: relative; }
.s-how::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--sky3), var(--sky), var(--mid), var(--sky3));
}
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.how-grid::before {
  content: ''; position: absolute;
  top: 36px; left: calc(16.6% + 24px); right: calc(16.6% + 24px);
  height: 1px; background: linear-gradient(90deg, var(--sky), var(--mid), var(--sky)); z-index: 0;
}
.how-card {
  background: white; border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 24px;
  text-align: center; position: relative; z-index: 1; transition: border-color 0.2s;
}
.how-card:hover { border-color: var(--sky); }
.how-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600; margin: 0 auto 16px;
  border: 3px solid var(--sky3);
}
.how-title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.how-desc { font-size: 13px; color: var(--text2); line-height: 1.65; }
.how-illus {
  width: 100%; aspect-ratio: 3/1; border-radius: 20px; background: var(--sky4);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  margin-top: 36px; overflow: hidden;
}
.how-illus img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.how-illus-ph { color: var(--sky); text-align: center; }
.how-illus-ph i { font-size: 32px; }
.how-illus-ph p { font-size: 11px; margin-top: 6px; color: var(--text3); }

/* ─── 6. COMPANIES ────────────────────────── */
.s-companies { background: white; padding: 80px 56px; }
.company-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.co-card {
  background: white; border: 1px solid var(--border);
  border-radius: 18px; padding: 20px;
  cursor: pointer; transition: all 0.2s; display: flex; flex-direction: column; gap: 10px;
}
.co-card:hover { border-color: var(--sky); box-shadow: 0 4px 16px rgba(123,189,212,0.2); }
.co-logo-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; background: var(--sky4); border: 1px solid var(--border);
}
.co-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.co-meta { font-size: 11px; color: var(--text3); }
.co-tag {
  font-size: 11px; padding: 3px 10px; border-radius: 6px;
  background: var(--sky4); color: var(--mid); width: fit-content; font-weight: 500;
}
.co-jobs-count { font-size: 12px; color: var(--navy); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.co-jobs-count i { color: var(--sky); font-size: 11px; }

.co-banner {
  background: linear-gradient(135deg, var(--sky4) 0%, white 100%);
  border: 1px solid var(--border); border-radius: 20px; padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px; gap: 24px;
}
.co-banner-left h3 { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.co-banner-left p { font-size: 13px; color: var(--text2); }
.co-banner-right { display: flex; gap: 24px; }
.co-bstat .num { font-size: 26px; font-weight: 600; color: var(--navy); }
.co-bstat .lbl { font-size: 11px; color: var(--text3); }
.co-banner-illus {
  width: 120px; height: 80px; border-radius: 12px;
  background: var(--sky3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.co-banner-illus img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.co-banner-illus i { font-size: 28px; color: var(--mid); }

/* ─── 7. TESTIMONIALS ─────────────────────── */
.s-testimonials {
  background: linear-gradient(160deg, var(--navy) 0%, #0f1e35 100%);
  padding: 80px 56px; position: relative;
}
.s-testimonials::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(123,189,212,0.1) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.s-testimonials .sec-title { color: white; }
.s-testimonials .sec-eyebrow { color: var(--sky); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; position: relative; z-index: 1; }
.testi-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(123,189,212,0.2);
  border-radius: 18px; padding: 24px;
}
.testi-quote { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-quote::before { content: '"'; color: var(--sky); font-size: 20px; line-height: 0; vertical-align: -4px; margin-right: 2px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sky3); border: 2px solid var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--navy);
  flex-shrink: 0; overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 13px; font-weight: 600; color: white; }
.testi-role { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.testi-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.testi-stars i { font-size: 11px; color: #fbbf24; }

/* ─── 8. CTA ──────────────────────────────── */
.s-cta { background: var(--sky4); padding: 80px 56px; border-top: 1px solid var(--border); }
.cta-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.cta-left { display: flex; flex-direction: column; gap: 20px; }
.cta-left h2 { font-family: 'DM Serif Display', serif; font-size: 38px; color: var(--navy); line-height: 1.2; }
.cta-left h2 em { color: var(--sky); font-style: normal; }
.cta-left p { font-size: 15px; color: var(--text2); line-height: 1.7; }
.cta-actions { display: flex; gap: 12px; }
.btn-big { padding: 14px 28px; font-size: 14px; font-weight: 600; border-radius: 999px; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.btn-big-navy { background: var(--navy); color: white; border: none; }
.btn-big-navy:hover { background: var(--navy2); }
.btn-big-out { background: transparent; color: var(--navy); border: 1px solid var(--border2); }
.btn-big-out:hover { background: white; }
.cta-right {
  border-radius: 24px; overflow: hidden; aspect-ratio: 4/3;
  background: var(--sky3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
}
.cta-right img { width: 100%; height: 100%; object-fit: cover; }
.cta-illus-ph { text-align: center; color: var(--mid); }
.cta-illus-ph i { font-size: 48px; }
.cta-illus-ph p { font-size: 12px; margin-top: 8px; color: var(--text3); }

/* ─── FOOTER ──────────────────────────────── */
footer { background: var(--navy); padding: 48px 56px 28px; color: rgba(255,255,255,0.6); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(123,189,212,0.15); margin-bottom: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .logo img { filter: brightness(0) invert(1); height: 32px; }
.footer-brand p { font-size: 13px; line-height: 1.65; max-width: 240px; }
.footer-col h4 { font-size: 13px; font-weight: 600; color: white; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 10px; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; }
.footer-socials { display: flex; gap: 14px; }
.fsoc {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(123,189,212,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 14px; cursor: pointer; transition: all 0.2s;
}
.fsoc:hover { border-color: var(--sky); color: var(--sky); }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .navbar { padding: 14px 20px; }
  .nav-left { gap: 15px; }
  .nav-links { display: flex; gap: 12px; }
  .nav-links a { font-size: 12px; }
  .s-hero, .s-jobs, .s-categories, .s-how, .s-companies,
  .s-testimonials, .s-cta, .s-filterbar { padding-left: 24px; padding-right: 24px; }
  .hero-inner, .cta-inner { grid-template-columns: 1fr; }
  .hero-right { display: flex; order: 2; margin-top: 20px; }
  .hero-left { order: 1; }
  .hero-title { font-size: 34px; }
  .jobs-grid, .cat-grid, .company-row, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .how-grid::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cat-illus-row { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .navbar { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .nav-left { width: 100%; justify-content: center; gap: 20px; }
  .nav-actions { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  .jobs-grid, .cat-grid, .company-row, .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .search-wrap { flex-direction: column; border-radius: 16px; }
  .sf-div { display: block; width: 100%; height: 1px; background: var(--border); margin: 5px 0; }
  .btn-search { border-radius: 10px; text-align: center; width: 100%; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
}

/* ════════════════════════════════════════════════
   ANIMATION SYSTEM
════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes popUp {
  0%   { opacity: 0; transform: scale(0.8); }
  70%  { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
.reveal { opacity: 0; will-change: transform, opacity; }
.reveal.fade   { animation: fadeInUp    0.8s ease-out forwards; }
.reveal.left   { animation: fadeInRight 0.8s ease-out forwards; }
.reveal.right  { animation: fadeInLeft  0.8s ease-out forwards; }
.reveal.bounce { animation: popUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.reveal.pop    { animation: popUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.reveal.scroll { animation: fadeInUp    0.8s ease-out forwards; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ─── VERIFIED / VERIFY PILLS ─────────────── */
.sb-verify-now {
  display: inline-flex; align-items: center; gap: 4px;
  background: linear-gradient(135deg, #fff7ed, #fff);
  border: 1px solid #fed7aa; color: #ea580c;
  font-size: 10px; font-weight: 600;
  padding: 2px 8px; border-radius: 999px;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.sb-verify-now:hover { background: linear-gradient(135deg, #ffedd5, #fff); border-color: #fb923c; }
.sb-verify-now i { font-size: 9px; }

/* ══════════════════════════════════════════════════
   DARK MODE OVERRIDES — flat selectors
   (pakai flat selector, bukan nested, supaya cross-browser)
══════════════════════════════════════════════════ */

/* Navbar */
html.theme-dark .navbar { background: rgba(26,36,56,0.95); border-color: rgba(123,189,212,0.1); }
html.theme-dark .logo-text { color: white; }
html.theme-dark .nav-links a { color: rgba(255,255,255,0.55); }
html.theme-dark .nav-links a:hover { color: white; }
html.theme-dark .nav-links a.active { color: white; }
html.theme-dark .btn-outline { color: rgba(255,255,255,0.8); border-color: rgba(123,189,212,0.3); }
html.theme-dark .btn-outline:hover { background: rgba(123,189,212,0.1); }

/* Job cards */
html.theme-dark .job-card { background: var(--card-bg); border-color: var(--border); }
html.theme-dark .job-card.featured-card { background: var(--surface2); }
html.theme-dark .jc-title { color: var(--text); }
html.theme-dark .jc-salary { color: var(--text); }

/* Filter bar */
html.theme-dark .s-filterbar { background: #1a2438; border-color: rgba(123,189,212,0.1); }
html.theme-dark .filter-bar { background: #1a2438; border-color: rgba(123,189,212,0.1); }
html.theme-dark .filter-panel { background: #1a2438; border-color: rgba(123,189,212,0.1); }
html.theme-dark .co-panel { background: #1a2438; border-color: rgba(123,189,212,0.1); }
html.theme-dark .fb-chip { background: rgba(255,255,255,0.06); border-color: rgba(123,189,212,0.2); color: rgba(255,255,255,0.65); }
html.theme-dark .fb-chip:hover,
html.theme-dark .fb-chip.on { background: var(--sky); color: #1a2438; border-color: var(--sky); }
html.theme-dark .fb-sort select { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.65); border-color: rgba(123,189,212,0.2); }
html.theme-dark .fb-count { background: rgba(123,189,212,0.1); color: rgba(255,255,255,0.4); }
html.theme-dark .fb-lbl { color: rgba(255,255,255,0.3); }
html.theme-dark .fp-label { color: rgba(255,255,255,0.3); }
html.theme-dark .fp-opt { color: rgba(255,255,255,0.6); }
html.theme-dark .fp-opt-count { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.3); }
html.theme-dark .fp-salary-in { background: rgba(255,255,255,0.06); border-color: rgba(123,189,212,0.2); color: rgba(255,255,255,0.7); }
html.theme-dark .co-name { color: var(--text); }
html.theme-dark .co-item { border-color: rgba(123,189,212,0.1); }
html.theme-dark .load-more { background: #1a2438; border-color: rgba(123,189,212,0.1); color: rgba(255,255,255,0.7); }

/* How cards */
html.theme-dark .how-card { background: var(--card-bg); border-color: var(--border); }
html.theme-dark .how-title { color: var(--text); }
html.theme-dark .how-desc { color: var(--text2); }

/* Co cards */
html.theme-dark .co-card { background: var(--card-bg); border-color: var(--border); }

/* ── system dark ── */
@media (prefers-color-scheme: dark) {
  html.theme-system .navbar { background: rgba(26,36,56,0.95); border-color: rgba(123,189,212,0.1); }
  html.theme-system .job-card { background: var(--card-bg); border-color: var(--border); }
  html.theme-system .filter-bar,
  html.theme-system .filter-panel { background: #1a2438; border-color: rgba(123,189,212,0.1); }
  html.theme-system .fb-chip { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.65); }
  html.theme-system .fb-chip:hover,
  html.theme-system .fb-chip.on { background: var(--sky); color: #1a2438; }
  html.theme-system .load-more { background: #1a2438; color: rgba(255,255,255,0.7); }
  html.theme-system .btn-primary { background: var(--sky); color: var(--navy); }
  html.theme-system .btn-primary:hover { background: var(--sky2); }
}