/* ====================================================
   KDKMP Desa Kepoh — Sistem Rekrutmen
   CSS Modern | Glassmorphism | Green White Theme
   ==================================================== */

:root {
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --white:     #ffffff;
  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-300:  #d1d5db;
  --gray-400:  #9ca3af;
  --gray-500:  #6b7280;
  --gray-600:  #4b5563;
  --gray-700:  #374151;
  --gray-800:  #1f2937;
  --gray-900:  #111827;
  --red-500:   #ef4444;
  --red-100:   #fee2e2;
  --yellow-500:#f59e0b;
  --yellow-100:#fef9c3;
  --blue-500:  #3b82f6;
  --blue-100:  #dbeafe;

  --primary:   var(--green-600);
  --primary-dark: var(--green-700);
  --primary-light: var(--green-400);
  --bg:        var(--gray-50);
  --surface:   var(--white);
  --border:    var(--gray-200);
  --text:      var(--gray-800);
  --text-muted: var(--gray-500);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow:    0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-green: 0 8px 24px rgba(22,163,74,0.2);

  --font: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Fraunces', serif;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }

/* ====================================================
   NAVBAR
   ==================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.navbar.scrolled,
.navbar.navbar-solid {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(22,163,74,0.3);
}

.nav-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-title { font-size: 15px; font-weight: 800; color: var(--green-700); }
.nav-sub { font-size: 11px; color: var(--gray-500); font-weight: 500; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
}
.nav-link:hover { background: var(--green-50); color: var(--green-700); }
.nav-cek { color: var(--green-700); }
.nav-btn {
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: white !important;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: var(--shadow-green);
}
.nav-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(22,163,74,0.3); background: var(--green-700); color: white; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-back { margin-left: auto; }

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0f2a18 0%, #14532d 40%, #166534 70%, #15803d 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 60px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--green-400); top: -150px; right: -100px; animation: float1 12s ease-in-out infinite; }
.hero-orb-2 { width: 350px; height: 350px; background: #6ee7b7; bottom: 0; left: -80px; animation: float2 15s ease-in-out infinite; }
.hero-orb-3 { width: 250px; height: 250px; background: var(--green-300); top: 40%; left: 30%; animation: float1 10s ease-in-out infinite reverse; }

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

@keyframes float1 { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-30px) scale(1.05)} }
@keyframes float2 { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(20px) scale(0.97)} }

.hero-content { position: relative; z-index: 1; max-width: 780px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #a7f3d0;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 3px rgba(74,222,128,0.3)} 50%{box-shadow:0 0 0 6px rgba(74,222,128,0.1)} }

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.hero-title-small {
  font-family: var(--font);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  color: #86efac;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 110px);
  font-weight: 700;
  color: white;
  line-height: 0.95;
  letter-spacing: -3px;
}
.hero-title-accent {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 300;
  font-style: italic;
  color: #a7f3d0;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-desc strong { color: #4ade80; }

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-green);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(22,163,74,0.35); filter: brightness(1.05); color: white; }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); color: white; }

/* Solid outline (for non-hero) */
.navbar-solid .btn-outline,
.form-page .btn-outline,
.admin-page .btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-300);
}
.navbar-solid .btn-outline:hover,
.form-page .btn-outline:hover,
.admin-page .btn-outline:hover {
  background: var(--green-50);
  color: var(--green-800);
  border-color: var(--green-500);
}

.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }
.btn-danger { background: var(--red-500); color: white; border: none; border-radius: 6px; padding: 6px 12px; font-size: 12px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.btn-danger:hover { background: #dc2626; color: white; }
.btn-xs { padding: 5px 10px; font-size: 12px; border-radius: 6px; display: inline-flex; align-items: center; font-weight: 600; cursor: pointer; border: none; }

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 20px 40px;
  width: fit-content;
  margin: 0 auto;
}
.hero-stat { text-align: center; }
.stat-num { display: block; font-size: 32px; font-weight: 800; color: white; font-family: var(--font-display); line-height: 1; }
.stat-label { display: block; font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* Countdown */
.countdown-wrap {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  padding: 0 24px;
}
.countdown-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 24px 36px;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}
.countdown-label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; margin-bottom: 16px; letter-spacing: 0.5px; }
.countdown { display: flex; align-items: center; justify-content: center; gap: 12px; }
.cd-item { text-align: center; }
.cd-num {
  display: block;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  color: white;
  font-family: var(--font-display);
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  min-width: 72px;
  padding: 8px 12px;
  line-height: 1;
}
.cd-unit { display: block; font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 600; margin-top: 6px; letter-spacing: 1px; text-transform: uppercase; }
.cd-sep { font-size: 40px; font-weight: 800; color: rgba(255,255,255,0.4); line-height: 1; padding-top: 4px; }
.cd-expired { font-size: 18px; font-weight: 700; color: #fca5a5; padding: 12px; }

/* Open registration info */
.cd-open-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 0 4px;
}
.cd-open-icon { font-size: 22px; animation: pulse 2s infinite; }
.cd-open-text {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}
.cd-open-text strong { color: #4ade80; }

/* ====================================================
   SECTIONS
   ==================================================== */
.section { padding: 88px 0; }
.section-alt { background: var(--green-50); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.section-desc { font-size: 17px; color: var(--gray-500); max-width: 540px; margin: 0 auto; }

/* ====================================================
   LOWONGAN CARDS
   ==================================================== */
.lowongan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.lowongan-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.lowongan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--green-400));
  opacity: 0;
  transition: var(--transition);
}
.lowongan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}
.lowongan-card:hover::before { opacity: 1; }
.card-full { opacity: 0.72; }

.card-header-wrap { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.card-icon { font-size: 28px; }
.card-badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.badge-open { background: var(--green-100); color: var(--green-700); }
.badge-full { background: var(--gray-100); color: var(--gray-600); }

.card-title { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.card-quota { margin-bottom: 12px; }
.quota-num { font-size: 22px; font-weight: 800; color: var(--green-600); }
.quota-label { font-size: 13px; color: var(--gray-500); }

.card-progress-wrap { margin-bottom: 14px; }
.progress-bar { background: var(--gray-100); border-radius: 100px; height: 7px; overflow: hidden; margin-bottom: 4px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--green-500), var(--green-400)); border-radius: 100px; transition: width 0.8s ease; }
.progress-text { font-size: 11px; color: var(--gray-400); }

.card-syarat { list-style: none; margin-bottom: 18px; }
.card-syarat li { font-size: 13px; color: var(--gray-600); padding: 3px 0; display: flex; gap: 4px; align-items: flex-start; }

.card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  color: var(--green-700);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.card-btn:hover { background: var(--green-600); color: white; border-color: var(--green-600); }
.card-full-notice { text-align: center; font-size: 13px; color: var(--gray-400); padding: 10px; border: 1px dashed var(--gray-200); border-radius: var(--radius-sm); }

/* ====================================================
   SYARAT SECTION
   ==================================================== */
.syarat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.syarat-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.syarat-card:hover { box-shadow: var(--shadow); border-color: var(--green-200); }
.syarat-card-full { grid-column: 1 / -1; }
.syarat-icon { font-size: 32px; margin-bottom: 14px; }
.syarat-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 14px; }
.syarat-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.syarat-card li { font-size: 14px; color: var(--gray-600); }

.dokumen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; margin-bottom: 14px; }
.dokumen-item { background: var(--green-50); border: 1px solid var(--green-200); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 13px; color: var(--green-700); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.syarat-note { font-size: 12px; color: var(--gray-500); background: var(--gray-50); border-radius: 8px; padding: 8px 12px; border: 1px solid var(--border); }

.syarat-penting {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fffbeb;
  border: 1.5px solid #fcd34d;
  border-radius: var(--radius);
  padding: 18px 24px;
}
.penting-icon { font-size: 24px; flex-shrink: 0; }
.penting-text { font-size: 15px; color: var(--gray-700); }
.penting-text strong { color: #92400e; }

/* ====================================================
   ALUR PENDAFTARAN
   ==================================================== */
.alur-wrap {
  max-width: 700px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.alur-step {
  display: flex;
  gap: 24px;
  position: relative;
}
.alur-step:not(:last-child) { padding-bottom: 0; }

.step-num {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(22,163,74,0.35);
  z-index: 1;
  position: relative;
}
.step-line {
  position: absolute;
  left: 22px;
  top: 46px;
  width: 2px;
  height: calc(100% - 10px);
  background: linear-gradient(to bottom, var(--green-300), var(--green-100));
}
.step-content {
  padding: 10px 0 36px;
  flex: 1;
}
.step-content h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

.alur-cta { text-align: center; }

/* ====================================================
   KONTAK SECTION
   ==================================================== */
.kontak-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.kontak-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.kontak-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--green-200); }
.kontak-icon { font-size: 36px; margin-bottom: 14px; }
.kontak-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--gray-900); }
.kontak-card p { color: var(--gray-600); font-size: 15px; }
.deadline-text { font-size: 18px; font-weight: 700; color: var(--green-700); }
.deadline-note { font-size: 13px; color: var(--gray-400); margin-top: 4px; }
.kontak-wa { display: inline-flex; align-items: center; gap: 6px; background: #25d366; color: white; padding: 8px 16px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; margin-top: 12px; transition: var(--transition); }
.kontak-wa:hover { background: #128c7e; color: white; }
.kontak-btn { display: inline-block; background: var(--green-100); color: var(--green-700); padding: 8px 18px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; margin-top: 12px; transition: var(--transition); }
.kontak-btn:hover { background: var(--green-600); color: white; }

/* ====================================================
   FOOTER
   ==================================================== */
.footer { background: var(--gray-900); padding: 32px 0; }
.footer-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { font-size: 28px; }
.footer-name { font-size: 16px; font-weight: 700; color: white; }
.footer-tagline { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--gray-400); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--green-400); }
.footer-bottom p { font-size: 13px; color: var(--gray-600); text-align: center; }

/* ====================================================
   FORM PAGE
   ==================================================== */
.form-page { background: var(--gray-50); }
.form-wrap { min-height: 100vh; padding: 88px 24px 60px; display: flex; justify-content: center; }
.form-container { width: 100%; max-width: 760px; }
.form-header { text-align: center; margin-bottom: 36px; }
.form-title { font-family: var(--font-display); font-size: clamp(26px, 4vw, 38px); font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.form-subtitle { color: var(--gray-500); font-size: 15px; }

/* Step Indicator */
.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  gap: 0;
}
.step-ind {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
}
.step-ind-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}
.step-ind.active .step-ind-num { background: var(--green-600); color: white; box-shadow: 0 4px 12px rgba(22,163,74,0.3); }
.step-ind.done .step-ind-num { background: var(--green-500); color: white; }
.step-ind-label { font-size: 11px; font-weight: 600; color: var(--gray-400); white-space: nowrap; }
.step-ind.active .step-ind-label { color: var(--green-700); }
.step-line-ind { width: 60px; height: 2px; background: var(--gray-200); margin: 0 4px; margin-bottom: 22px; flex-shrink: 0; transition: var(--transition); }

/* Form Steps */
.form-step {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-step.hidden { display: none; }
.step-title { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }

/* Form Elements */
.form-row { margin-bottom: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-row-2 .form-group { margin-bottom: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
label { font-size: 14px; font-weight: 600; color: var(--gray-700); }
.req { color: var(--red-500); }

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(34,197,94,0.12); }
.form-input::placeholder { color: var(--gray-300); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-select { cursor: pointer; }

.field-error { font-size: 12px; color: var(--red-500); font-weight: 500; display: none; }
.field-info { font-size: 12px; color: var(--gray-400); }

/* Radio */
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: var(--gray-700); }
.radio-label input { display: none; }
.radio-custom {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--gray-300);
  flex-shrink: 0;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.radio-label:hover .radio-custom { border-color: var(--green-400); }
.radio-label input:checked ~ .radio-custom {
  border-color: var(--green-600);
  background: var(--green-600);
  box-shadow: inset 0 0 0 3px white;
}

/* Checkbox */
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 14px; color: var(--gray-700); line-height: 1.5; }
.checkbox-label input { display: none; }
.checkbox-custom {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid var(--gray-300);
  border-radius: 5px;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.checkbox-label input:checked ~ .checkbox-custom {
  background: var(--green-600);
  border-color: var(--green-600);
}
.checkbox-label input:checked ~ .checkbox-custom::after {
  content: '✓';
  color: white;
  font-size: 13px;
  font-weight: 700;
}

/* Upload Zone */
.upload-group { margin-bottom: 20px; }
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--gray-50);
  min-height: 100px;
}
.upload-zone:hover, .upload-zone.zone-drag { border-color: var(--green-500); background: var(--green-50); }
.upload-zone.zone-filled { border-color: var(--green-400); background: var(--green-50); }
.upload-icon { font-size: 28px; margin-bottom: 8px; }
.upload-text { font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 4px; }
.upload-hint { font-size: 12px; color: var(--gray-400); }
.upload-preview { margin-top: 12px; }
.preview-img { max-height: 120px; border-radius: 8px; border: 2px solid var(--green-200); }
.preview-pdf { padding: 10px 16px; background: white; border: 1px solid var(--border); border-radius: 8px; font-size: 13px; color: var(--gray-600); display: inline-block; }

.pernyataan-box { background: var(--green-50); border: 1px solid var(--green-200); border-radius: var(--radius-sm); padding: 16px; }
.badge-driver { background: #fef3c7; color: #92400e; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 100px; }

.step-nav { display: flex; gap: 12px; justify-content: flex-end; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }

/* Spinner */
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ====================================================
   SUKSES PAGE
   ==================================================== */
.sukses-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 24px; background: linear-gradient(135deg, var(--green-50), white); }
.sukses-card { background: white; border-radius: var(--radius-xl); padding: 48px 40px; max-width: 560px; width: 100%; text-align: center; box-shadow: var(--shadow-lg); border: 1.5px solid var(--green-100); }
.sukses-icon { font-size: 64px; margin-bottom: 16px; }
.sukses-title { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--green-700); margin-bottom: 8px; }
.sukses-sub { color: var(--gray-600); margin-bottom: 28px; font-size: 16px; }
.sukses-info { background: var(--gray-50); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; text-align: left; }
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: none; }
.info-label { font-size: 13px; color: var(--gray-500); font-weight: 500; }
.info-val { font-size: 14px; font-weight: 600; color: var(--gray-800); }
.nik-val { font-family: monospace; font-size: 16px; color: var(--green-700); letter-spacing: 1px; }
.sukses-note { background: #fffbeb; border: 1px solid #fcd34d; border-radius: var(--radius-sm); padding: 12px 16px; font-size: 13px; color: #92400e; margin-bottom: 24px; text-align: left; }
.sukses-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ====================================================
   CEK STATUS
   ==================================================== */
.cek-wrap { min-height: 100vh; display: flex; justify-content: center; padding: 88px 24px 60px; }
.cek-container { width: 100%; max-width: 620px; }
.cek-form { margin-bottom: 28px; }
.cek-input-wrap { display: flex; gap: 10px; }
.cek-input-wrap .form-input { flex: 1; }
.cek-footer { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

.status-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}
.status-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.status-icon-wrap { font-size: 36px; }
.status-nama { font-size: 20px; font-weight: 700; color: var(--gray-900); }
.status-posisi { font-size: 14px; color: var(--gray-500); margin-top: 2px; }
.status-badge-wrap { margin-bottom: 20px; }
.status-detail { border-top: 1px solid var(--border); padding-top: 16px; margin-bottom: 20px; }
.detail-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 8px 0; gap: 12px; }
.detail-label { font-size: 13px; color: var(--gray-500); font-weight: 500; flex-shrink: 0; }

.status-info-box { border-radius: var(--radius-sm); padding: 16px; font-size: 14px; line-height: 1.6; }
.info-menunggu { background: var(--yellow-100); border: 1px solid #fcd34d; color: #713f12; }
.info-diproses { background: var(--blue-100); border: 1px solid #93c5fd; color: #1e3a8a; }
.info-lolos    { background: #f3e8ff; border: 1px solid #d8b4fe; color: #6b21a8; }
.info-interview{ background: #fff7ed; border: 1px solid #fdba74; color: #9a3412; }
.info-diterima { background: var(--green-100); border: 1px solid var(--green-300); color: var(--green-800); }
.info-ditolak  { background: var(--red-100); border: 1px solid #fca5a5; color: #7f1d1d; }

.not-found-box { text-align: center; background: white; border-radius: var(--radius-lg); padding: 48px 28px; box-shadow: var(--shadow); }
.not-found-icon { font-size: 52px; margin-bottom: 16px; }
.not-found-box h3 { font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.not-found-box p { color: var(--gray-500); margin-bottom: 6px; }

/* ====================================================
   BADGES
   ==================================================== */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.badge-lg { font-size: 14px; padding: 6px 16px; }
.badge-warning, .badge-menunggu { background: var(--yellow-100); color: #92400e; }
.badge-info, .badge-diproses { background: var(--blue-100); color: #1e3a8a; }
.badge-purple, .badge-lolos_administrasi { background: #f3e8ff; color: #6b21a8; }
.badge-orange, .badge-interview { background: #fff7ed; color: #9a3412; }
.badge-success, .badge-diterima { background: var(--green-100); color: var(--green-800); }
.badge-danger, .badge-ditolak { background: var(--red-100); color: #7f1d1d; }
.badge-secondary { background: var(--gray-100); color: var(--gray-600); }

/* ====================================================
   ALERTS
   ==================================================== */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; margin-bottom: 20px; }
.alert-success { background: var(--green-100); color: var(--green-800); border: 1px solid var(--green-300); }
.alert-danger  { background: var(--red-100); color: #7f1d1d; border: 1px solid #fca5a5; }
.alert-info    { background: var(--blue-100); color: #1e3a8a; border: 1px solid #93c5fd; }

/* ====================================================
   ADMIN PANEL
   ==================================================== */
.admin-page { background: var(--gray-50); }

.admin-sidebar {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 240px;
  background: var(--gray-900);
  z-index: 200;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: transform var(--transition);
}

.sidebar-brand {
  padding: 20px 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-logo { font-size: 24px; width: 40px; height: 40px; background: rgba(74,222,128,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.sidebar-title { font-size: 15px; font-weight: 700; color: white; }
.sidebar-sub { font-size: 11px; color: var(--gray-500); }

.sidebar-nav { padding: 12px 0; flex: 1; }
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.nav-item:hover { background: rgba(255,255,255,0.06); color: white; }
.nav-item.active { background: rgba(34,197,94,0.12); color: var(--green-400); border-left-color: var(--green-500); }
.nav-item-icon { font-size: 16px; width: 20px; text-align: center; }
.nav-group-label { padding: 12px 20px 4px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-600); }
.nav-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 20px; }
.nav-logout { color: #fca5a5; }
.nav-logout:hover { background: rgba(239,68,68,0.1); color: #f87171; }

.admin-topbar {
  position: fixed;
  left: 240px; top: 0; right: 0;
  height: 56px;
  background: white;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 100;
  transition: left var(--transition);
}
.sidebar-toggle { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--gray-700); display: none; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-user { font-size: 14px; font-weight: 500; color: var(--gray-700); }

.admin-main {
  margin-left: 240px;
  margin-top: 56px;
  min-height: calc(100vh - 56px);
  transition: margin var(--transition);
}

.admin-content { padding: 28px 28px; }

.page-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.page-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--gray-900); }
.page-sub { color: var(--gray-500); font-size: 14px; margin-top: 2px; }
.page-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.back-link { font-size: 13px; color: var(--green-600); margin-bottom: 4px; display: block; }

/* Stat Grid */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card { background: white; border-radius: var(--radius-lg); padding: 22px; display: flex; align-items: center; gap: 16px; border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); transition: var(--transition); }
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.stat-icon { font-size: 32px; }
.stat-num { font-size: 28px; font-weight: 800; color: var(--gray-900); line-height: 1; }
.stat-title { font-size: 13px; color: var(--gray-500); font-weight: 500; margin-top: 2px; }
.stat-blue { border-left: 4px solid var(--blue-500); }
.stat-green { border-left: 4px solid var(--green-500); }
.stat-yellow { border-left: 4px solid var(--yellow-500); }
.stat-success { border-left: 4px solid #10b981; }

.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }

/* Admin Card */
.admin-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.card-title-bar { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.card-title-bar h3 { font-size: 15px; font-weight: 700; color: var(--gray-900); }
.link-more { font-size: 13px; color: var(--green-600); font-weight: 600; }

/* Posisi list dalam dashboard */
.posisi-list { padding: 12px 20px; display: flex; flex-direction: column; gap: 12px; }
.posisi-item { display: flex; flex-direction: column; gap: 6px; }
.posisi-info { display: flex; justify-content: space-between; font-size: 13px; }
.posisi-nama { font-weight: 500; color: var(--gray-700); }
.posisi-num { font-weight: 700; color: var(--green-700); }

.status-list { padding: 12px 20px; display: flex; flex-direction: column; gap: 10px; }
.status-item-dash { display: flex; align-items: center; gap: 10px; }
.status-icon-sm { font-size: 16px; }
.status-nama-sm { font-size: 13px; font-weight: 500; color: var(--gray-700); width: 80px; flex-shrink: 0; }
.flex-1 { flex: 1; }
.status-cnt { font-size: 13px; font-weight: 700; color: var(--gray-900); min-width: 24px; text-align: right; }

.progress-menunggu { background: linear-gradient(90deg, var(--yellow-500), #fbbf24); }
.progress-diproses { background: linear-gradient(90deg, var(--blue-500), #60a5fa); }
.progress-diterima { background: linear-gradient(90deg, var(--green-500), var(--green-400)); }
.progress-ditolak  { background: linear-gradient(90deg, var(--red-500), #f87171); }

/* Quick Actions */
.quick-actions { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 4px; }
.qa-btn { display: inline-flex; align-items: center; gap: 8px; background: white; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 10px 18px; font-size: 14px; font-weight: 600; color: var(--gray-700); transition: var(--transition); }
.qa-btn:hover { background: var(--green-50); border-color: var(--green-300); color: var(--green-700); }

/* Tables */
.table-responsive { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th { background: var(--gray-50); padding: 10px 16px; text-align: left; font-size: 12px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid var(--border); white-space: nowrap; }
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); vertical-align: middle; }
.admin-table tbody tr:hover td { background: var(--gray-50); }
.admin-table tbody tr:last-child td { border-bottom: none; }
.td-actions { display: flex; gap: 6px; flex-wrap: wrap; }
code { font-family: monospace; font-size: 12px; background: var(--gray-100); padding: 2px 6px; border-radius: 4px; color: var(--gray-700); }
.text-center { text-align: center; }
.text-muted { color: var(--gray-400) !important; }

/* Pagination */
.pagination { display: flex; gap: 6px; justify-content: center; padding: 16px; flex-wrap: wrap; }
.page-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--gray-700); background: var(--gray-100); transition: var(--transition); }
.page-btn:hover { background: var(--green-100); color: var(--green-700); }
.page-btn.active { background: var(--green-600); color: white; }

/* Filter Form */
.filter-form { background: white; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 16px 20px; margin-bottom: 20px; }
.filter-grid { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-grid .form-input { flex: 1; min-width: 140px; }

/* Verifikasi */
.verif-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.detail-table { padding: 16px 20px; }
.dt-row { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.dt-row:last-child { border-bottom: none; }
.dt-label { font-size: 13px; color: var(--gray-500); font-weight: 500; min-width: 160px; flex-shrink: 0; }

.dokumen-preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; padding: 20px; }
.dok-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.dok-label { background: var(--gray-50); padding: 8px 12px; font-size: 12px; font-weight: 700; color: var(--gray-600); border-bottom: 1px solid var(--border); }
.dok-img { width: 100%; height: 130px; object-fit: cover; cursor: pointer; transition: var(--transition); }
.dok-img:hover { opacity: 0.85; }
.dok-pdf { padding: 20px 12px; font-size: 13px; color: var(--gray-600); text-align: center; min-height: 60px; display: flex; align-items: center; justify-content: center; }
.dok-actions { display: flex; gap: 6px; padding: 10px 12px; }

/* Image Modal */
.img-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.img-modal img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }

/* Lowongan admin grid */
.lowongan-admin-grid { display: grid; grid-template-columns: 360px 1fr; gap: 20px; }

/* Laporan Grid */
.laporan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 24px; }
.laporan-card { text-align: center; padding: 28px 24px; }
.laporan-icon { font-size: 36px; margin-bottom: 14px; }
.laporan-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--gray-900); }
.laporan-card p { font-size: 14px; color: var(--gray-500); margin-bottom: 18px; line-height: 1.6; }
.laporan-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 0; }

/* Admin item (for admin list) */
.admin-item { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--border); }
.admin-item:last-child { border-bottom: none; }

/* Info list */
.info-list { padding: 16px 20px; list-style: disc; padding-left: 36px; }
.info-list li { font-size: 14px; color: var(--gray-600); padding: 4px 0; line-height: 1.5; }

/* Login page */
.admin-login-page { background: linear-gradient(160deg, #0f2a18, #14532d, #166534); min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.login-bg { position: fixed; inset: 0; overflow: hidden; pointer-events: none; }
.login-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.2; }
.login-orb-1 { width: 400px; height: 400px; background: var(--green-400); top: -100px; right: -80px; }
.login-orb-2 { width: 300px; height: 300px; background: #6ee7b7; bottom: -50px; left: -60px; }
.login-wrap { position: relative; z-index: 1; padding: 24px; width: 100%; }
.login-card { background: white; border-radius: var(--radius-xl); padding: 40px 36px; max-width: 420px; margin: 0 auto; box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.login-header { text-align: center; margin-bottom: 28px; }
.login-logo { font-size: 48px; margin-bottom: 12px; }
.login-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.login-sub { color: var(--gray-500); font-size: 14px; }
.login-footer { text-align: center; margin-top: 20px; font-size: 13px; }
.input-pass-wrap { position: relative; }
.input-pass-wrap .form-input { padding-right: 44px; }
.btn-eye { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-size: 16px; color: var(--gray-400); }
.btn-block { width: 100%; justify-content: center; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .verif-grid { grid-template-columns: 1fr; }
  .lowongan-admin-grid { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    padding: 20px;
    z-index: 999;
    overflow-y: auto;
    align-items: flex-start;
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-link { width: 100%; padding: 14px 16px; font-size: 16px; color: var(--gray-800); }
  .nav-btn { width: 100%; justify-content: center; margin-top: 8px; color: white; }

  .hero-title-main { font-size: 56px; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 20px 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .countdown { gap: 6px; }
  .cd-num { font-size: 28px; min-width: 52px; }

  .form-row-2 { grid-template-columns: 1fr; }
  .form-step { padding: 24px 18px; }
  .steps-indicator { gap: 0; }
  .step-line-ind { width: 32px; }

  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.sidebar-open { transform: translateX(0); }
  .admin-topbar { left: 0; }
  .admin-main { margin-left: 0; }
  .sidebar-toggle { display: block; }

  .stat-grid { grid-template-columns: 1fr 1fr; }
  .admin-content { padding: 20px 16px; }
  .filter-grid { flex-direction: column; }
  .filter-grid .form-input { min-width: auto; width: 100%; }

  .hero-actions { flex-direction: column; align-items: center; }
  .step-nav { justify-content: stretch; }
  .step-nav .btn-primary, .step-nav .btn-outline { flex: 1; justify-content: center; }
  .cek-input-wrap { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-title-main { font-size: 44px; }
  .stat-grid { grid-template-columns: 1fr; }
  .sukses-card { padding: 32px 20px; }
  .sukses-actions { flex-direction: column; }
  .lowongan-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}
