/* ══════════════════════════════════════════════════
   CAREERKU.ID — Design System v2.0
   ══════════════════════════════════════════════════ */

:root {
  --primary:        #2563EB;
  --primary-dark:   #1E3A8A;
  --primary-mid:    #1D4ED8;
  --primary-light:  #DBEAFE;
  --primary-xlight: #EFF6FF;
  --success:        #16A34A;
  --success-light:  #DCFCE7;
  --warning:        #D97706;
  --warning-light:  #FEF3C7;
  --danger:         #DC2626;
  --danger-light:   #FEE2E2;
  --text:           #1E293B;
  --text-muted:     #64748B;
  --text-light:     #94A3B8;
  --border:         #E2E8F0;
  --bg:             #F8FAFC;
  --white:          #FFFFFF;
  --shadow-sm:      0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.12);
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --nav-h:          68px;
  --max-w:          1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img    { max-width: 100%; display: block; }
a      { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  transition: all 0.18s; white-space: nowrap; line-height: 1;
}
.btn:disabled { opacity: 0.65; cursor: not-allowed; }
.btn-primary  { background: var(--primary); color: white; }
.btn-primary:hover:not(:disabled) { background: var(--primary-mid); box-shadow: 0 4px 14px rgba(37,99,235,0.35); transform: translateY(-1px); }
.btn-outline  { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary-xlight); }
.btn-ghost    { background: transparent; color: var(--text-muted); border: 1.5px solid var(--border); }
.btn-ghost:hover { background: var(--bg); color: var(--text); }
.btn-white    { background: white; color: var(--primary); font-weight: 700; }
.btn-white:hover { background: var(--primary-xlight); box-shadow: 0 4px 14px rgba(0,0,0,0.18); transform: translateY(-1px); }
.btn-success  { background: var(--success-light); color: var(--success); border: none; }
.btn-success:hover { background: #BBF7D0; }
.btn-sm   { padding: 7px 14px; font-size: 13px; }
.btn-lg   { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Form Controls ── */
.form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  font-size: 14px; color: var(--text); background: white; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); }
.form-control::placeholder { color: var(--text-light); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-error {
  background: var(--danger-light); color: #991B1B;
  border-radius: var(--radius-md); padding: 12px 16px;
  font-size: 13px; margin-bottom: 18px; display: none; line-height: 1.6;
}

/* ── Badges ── */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.badge-blue   { background: var(--primary-light);  color: var(--primary-mid); }
.badge-green  { background: var(--success-light);  color: var(--success); }
.badge-amber  { background: var(--warning-light);  color: #92400E; }
.badge-gray   { background: #F1F5F9; color: #475569; }
.badge-red    { background: var(--danger-light);   color: #991B1B; }
.badge-purple { background: #EDE9FE; color: #5B21B6; }

/* ── Sections ── */
.section    { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.section-gray { background: var(--bg); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-xlight); color: var(--primary);
  font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--text);
  letter-spacing: -0.5px; margin-bottom: 12px; line-height: 1.2;
}
.section-header p { font-size: 16px; color: var(--text-muted); max-width: 540px; margin: 0 auto; line-height: 1.65; }
.section-more { display: flex; justify-content: center; margin-top: 40px; }

/* ══════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
  z-index: 1000; display: flex; align-items: center;
  padding: 0 max(16px, calc((100vw - var(--max-w)) / 2)); gap: 4px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 800; color: var(--primary-dark);
  flex-shrink: 0; margin-right: 8px;
}
.nav-logo em { color: var(--primary); font-style: normal; }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-menu { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-link {
  padding: 7px 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: color 0.18s, background 0.18s; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-xlight); }
.nav-link.active { font-weight: 600; }
.nav-spacer  { flex: 1; }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; padding: 8px; margin-left: auto;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg); padding: 12px 16px 20px; z-index: 999;
}
.nav-mobile.open { display: block; }
.nav-mobile .nav-link { display: block; padding: 12px 14px; font-size: 15px; color: var(--text); margin-bottom: 2px; }
.nav-mobile-actions { display: flex; gap: 10px; padding: 14px 14px 0; border-top: 1px solid var(--border); margin-top: 8px; }

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  min-height: 560px;
  background: linear-gradient(135deg, #0F1F5C 0%, #1E3A8A 28%, #1D4ED8 65%, #2563EB 100%);
  padding: calc(var(--nav-h) + 64px) 24px 100px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 60px; background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%); pointer-events: none;
}
.hero-deco {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06); pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.13); color: rgba(255,255,255,0.9);
  font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2); margin-bottom: 20px;
}
.hero-label-dot { width: 7px; height: 7px; background: #4ADE80; border-radius: 50%; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-label-dot { animation: pulse 2.2s infinite; }

.hero-content h1 {
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 800;
  color: white; line-height: 1.1; letter-spacing: -1px; margin-bottom: 18px;
}
.hero-content h1 em { font-style: normal; color: #93C5FD; }
.hero-content p { font-size: 17px; color: rgba(255,255,255,0.73); line-height: 1.7; margin-bottom: 32px; max-width: 500px; }

.hero-stats { display: flex; gap: 32px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 26px; font-weight: 800; color: white; line-height: 1; }
.hero-stat span   { display: block; font-size: 12px; color: rgba(255,255,255,0.58); margin-top: 4px; }

/* Search box */
.search-box {
  background: white; border-radius: var(--radius-xl);
  padding: 8px 8px 8px 0;
  display: flex; align-items: center;
  box-shadow: 0 8px 48px rgba(0,0,0,0.22); max-width: 620px;
}
.search-field {
  flex: 1; min-width: 0; display: flex; align-items: center; gap: 8px;
  padding: 6px 16px;
}
.search-field svg { color: var(--text-light); flex-shrink: 0; }
.search-field input,
.search-field select {
  border: none; outline: none; font-size: 14px;
  color: var(--text); background: transparent; width: 100%; min-width: 0;
}
.search-field select { cursor: pointer; }
.search-field input::placeholder { color: var(--text-light); }
.search-sep { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.search-box .btn-search { flex-shrink: 0; border-radius: 18px; margin-right: 2px; }

/* Hero visual cards */
.hero-visual { position: relative; z-index: 1; }
.hero-card {
  background: rgba(255,255,255,0.11); border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(4px); border-radius: var(--radius-lg);
  padding: 13px 16px; display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
  transition: transform 0.2s;
}
.hero-card:hover { transform: translateX(5px); }
.hero-card-logo {
  width: 38px; height: 38px; background: rgba(255,255,255,0.18);
  border-radius: 9px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.hero-card-info { flex: 1; min-width: 0; }
.hero-card-title { font-size: 13px; font-weight: 700; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-card-sub   { font-size: 11px; color: rgba(255,255,255,0.58); margin-top: 2px; }
.hero-card-badge { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 12px; white-space: nowrap; flex-shrink: 0; }
.hcb-apply { background: rgba(37,99,235,0.5); color: white; }
.hcb-new   { background: rgba(74,222,128,0.22); color: #4ADE80; }
.hcb-hot   { background: rgba(239,68,68,0.25); color: #FCA5A5; }
.hero-float {
  position: absolute; right: -12px; top: -18px;
  background: white; border-radius: var(--radius-md); padding: 10px 14px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
}
.hero-float-dot { width: 10px; height: 10px; background: #4ADE80; border-radius: 50%; flex-shrink: 0; }
.hero-float strong { display: block; font-size: 12px; font-weight: 700; color: var(--text); }
.hero-float span   { font-size: 11px; color: var(--text-muted); }

/* ══════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════ */
.stats-bar { background: white; border-bottom: 1px solid var(--border); }
.stats-bar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stats-bar-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 20px; border-right: 1px solid var(--border);
}
.stats-bar-item:last-child { border-right: none; }
.sbi-icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sbi-blue   { background: var(--primary-xlight); }
.sbi-green  { background: var(--success-light); }
.sbi-amber  { background: var(--warning-light); }
.sbi-purple { background: #EDE9FE; }
.sbi-text strong { font-size: 14px; font-weight: 700; color: var(--text); display: block; }
.sbi-text span   { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════════════════
   JOB CARDS
   ══════════════════════════════════════════════════ */
.jobs-layout { display: grid; grid-template-columns: 1fr 272px; gap: 28px; align-items: start; }
.jobs-list   { display: flex; flex-direction: column; gap: 12px; }

.job-card {
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px 22px; display: flex; align-items: center; gap: 16px;
  transition: all 0.18s; cursor: pointer;
}
.job-card:hover { border-color: var(--primary); box-shadow: 0 4px 22px rgba(37,99,235,0.12); transform: translateY(-2px); }
.job-logo {
  width: 54px; height: 54px; border-radius: 12px; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; background: var(--bg);
}
.job-logo img  { width: 40px; height: 40px; object-fit: contain; }
.job-logo-text { font-size: 14px; font-weight: 800; color: var(--primary-dark); letter-spacing: -1px; }
.job-info    { flex: 1; min-width: 0; }
.job-title   { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.job-company { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.job-meta    { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }
.job-meta-item { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-muted); }
.job-tags    { display: flex; gap: 6px; flex-wrap: wrap; }
.job-actions { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.job-salary  { font-size: 13px; font-weight: 700; color: var(--success); }
.job-date    { font-size: 12px; color: var(--text-light); }

.jobs-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }
.sidebar-widget { background: white; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 16px; }
.sidebar-widget h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.sidebar-cat-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--text-muted); cursor: pointer; transition: color 0.18s;
}
.sidebar-cat-item:last-child { border-bottom: none; }
.sidebar-cat-item:hover { color: var(--primary); }
.sidebar-cat-count { background: var(--bg); color: var(--text-muted); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 12px; }

/* ══════════════════════════════════════════════════
   EBOOK CARDS
   ══════════════════════════════════════════════════ */
.ebook-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ebook-card {
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all 0.2s; display: flex; flex-direction: column;
}
.ebook-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.ebook-cover {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.ebook-cover img { width: 100%; height: 100%; object-fit: cover; }
.ebook-cover-ph { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ebook-cover-ph svg   { opacity: 0.4; }
.ebook-cover-ph span  { font-size: 10px; color: rgba(255,255,255,0.45); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.ebook-price-tag {
  position: absolute; top: 12px; right: 12px;
  background: white; color: var(--primary); font-size: 13px; font-weight: 800;
  padding: 4px 12px; border-radius: 20px; box-shadow: var(--shadow-sm);
}
.ebook-body   { padding: 18px 20px; flex: 1; }
.ebook-cat    { margin-bottom: 9px; }
.ebook-title  { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 5px; line-height: 1.4; }
.ebook-author { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.ebook-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.ebook-rating span { font-size: 12px; color: var(--text-muted); }
.ebook-desc   { font-size: 13px; color: var(--text-muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ebook-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-top: 1px solid var(--border); margin-top: auto;
}
.ebook-price { font-size: 18px; font-weight: 800; color: var(--primary); }

/* ══════════════════════════════════════════════════
   ARTIKEL CARDS
   ══════════════════════════════════════════════════ */
.artikel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.artikel-card {
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all 0.2s; display: flex; flex-direction: column;
}
.artikel-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.artikel-thumb {
  height: 168px; background: linear-gradient(135deg, var(--primary-xlight), var(--primary-light));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.artikel-thumb img { width: 100%; height: 100%; object-fit: cover; }
.artikel-body    { padding: 18px 20px; flex: 1; }
.artikel-cat     { margin-bottom: 10px; }
.artikel-title   { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.artikel-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.artikel-footer  {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; border-top: 1px solid var(--border); margin-top: auto;
}
.artikel-date { font-size: 12px; color: var(--text-muted); }
.artikel-read { font-size: 13px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 4px; transition: gap 0.18s; }
.artikel-read:hover { gap: 7px; }

/* ══════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #0F1F5C 0%, #1E3A8A 35%, #1D4ED8 100%);
  padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-section h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: white; letter-spacing: -0.5px; margin-bottom: 14px; }
.cta-desc { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.cta-btns  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.cta-feats { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.cta-feat  { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; }
.cta-feat-check { width: 20px; height: 20px; background: rgba(74,222,128,0.22); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer { background: #0F1F5C; padding: 60px 24px 0; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 48px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { color: white; margin-bottom: 14px; }
.footer-brand .nav-logo em { color: #93C5FD; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.75; margin-bottom: 22px; max-width: 280px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.18s; }
.footer-social a:hover { background: rgba(255,255,255,0.1); color: white; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a  { font-size: 13px; color: rgba(255,255,255,0.48); transition: color 0.18s; }
.footer-col a:hover { color: white; }
.footer-contact { font-size: 13px; color: rgba(255,255,255,0.48); display: flex; align-items: center; gap: 9px; margin-bottom: 11px; }
.footer-contact svg { flex-shrink: 0; opacity: 0.55; }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }

/* ══════════════════════════════════════════════════
   REGISTER PAGE
   ══════════════════════════════════════════════════ */
.register-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.register-left {
  background: linear-gradient(160deg, #0F1F5C 0%, #1E3A8A 45%, #1D4ED8 100%);
  padding: 60px 52px; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.register-left::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%); border-radius: 50%; bottom: -100px; right: -80px; pointer-events: none; }
.register-left-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 48px; color: white; font-size: 18px; font-weight: 800; }
.register-left-logo em { color: #93C5FD; font-style: normal; }
.register-left h2 { font-size: 28px; font-weight: 800; color: white; letter-spacing: -0.5px; line-height: 1.25; margin-bottom: 12px; }
.register-left > p { font-size: 15px; color: rgba(255,255,255,0.62); line-height: 1.65; margin-bottom: 40px; }
.register-benefit { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.benefit-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.13); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-text strong { display: block; font-size: 14px; font-weight: 700; color: white; margin-bottom: 2px; }
.benefit-text span   { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.register-right { background: white; padding: 52px 56px; display: flex; flex-direction: column; justify-content: center; overflow-y: auto; }
.register-right h1 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.register-right > p { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }

/* ══════════════════════════════════════════════════
   SUCCESS PAGE
   ══════════════════════════════════════════════════ */
.success-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; background: linear-gradient(135deg, #EFF6FF, #DBEAFE 50%, #EFF6FF); }
.success-card { background: white; border-radius: var(--radius-xl); padding: 52px 44px; max-width: 480px; width: 100%; text-align: center; box-shadow: var(--shadow-lg); }
.success-icon { width: 72px; height: 72px; background: var(--success-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.success-card h1  { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.success-card > p { color: var(--text-muted); font-size: 15px; line-height: 1.65; margin-bottom: 32px; }
.success-perks    { list-style: none; text-align: left; margin-bottom: 32px; }
.success-perk     { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.success-perk:last-child { border-bottom: none; }
.success-perk-dot { width: 22px; height: 22px; background: var(--success-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.success-actions  { display: flex; flex-direction: column; gap: 10px; }

/* ══════════════════════════════════════════════════
   PAGE HERO  (inner pages — ebook, artikel)
   ══════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #0F1F5C 0%, #1E3A8A 45%, #1D4ED8 100%);
  padding: calc(var(--nav-h) + 52px) 24px 60px; text-align: center;
}
.page-hero h1 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: white; letter-spacing: -0.5px; margin-bottom: 12px; }
.page-hero p  { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto; }

/* ══════════════════════════════════════════════════
   EMPTY STATE
   ══════════════════════════════════════════════════ */
.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 56px 24px; color: var(--text-muted); gap: 12px; }
.empty-state svg { opacity: 0.2; }
.empty-state p   { font-size: 15px; }

@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 0.7s linear infinite; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-visual   { display: none; }
  .jobs-layout   { grid-template-columns: 1fr; }
  .jobs-sidebar  { display: none; }
  .ebook-grid    { grid-template-columns: repeat(2, 1fr); }
  .artikel-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-item:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-menu, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero  { padding: calc(var(--nav-h) + 36px) 20px 70px; }
  .section { padding: 52px 0; }
  .search-box { flex-direction: column; border-radius: var(--radius-lg); padding: 12px; gap: 4px; }
  .search-field { padding: 8px 10px; width: 100%; }
  .search-sep   { width: 100%; height: 1px; }
  .search-box .btn-search { width: 100%; justify-content: center; border-radius: var(--radius-md); }
  .ebook-grid, .artikel-grid { grid-template-columns: 1fr; }
  .register-page  { grid-template-columns: 1fr; }
  .register-left  { display: none; }
  .register-right { padding: calc(var(--nav-h) + 24px) 24px 40px; }
  .footer-inner   { grid-template-columns: 1fr; gap: 28px; }
  .cta-feats { gap: 16px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .job-card   { flex-wrap: wrap; }
  .job-actions { flex-direction: row; width: 100%; justify-content: space-between; }
}
@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .ebook-grid { grid-template-columns: 1fr; }
  .artikel-grid { grid-template-columns: 1fr; }
}
