/* ================================================================  
   PANDUAN MEMBACA CSS:
   - "selector { property: value; }" adalah struktur dasar CSS
   - Selector menunjuk elemen HTML mana yang diatur
   - Property adalah JENIS pengaturan (warna, ukuran, posisi)
   - Value adalah NILAINYA
   
   Contoh: .navbar { background: green; }
   Artinya: elemen dengan class "navbar" diberi background hijau
   ================================================================ */

/* ================================================================
   1. CSS VARIABLES (Variabel Global)
   Mendefinisikan warna, font, dll di satu tempat
   Sehingga jika mau ganti warna, cukup ubah di sini saja
   ================================================================ */

:root {
  /* Warna Utama - Tema Hijau Putih MAN 2 Tasikmalaya */
  --green-dark: #1a5c2e;
  /* Hijau gelap - untuk navbar, footer */
  --green-main: #22783c;
  /* Hijau utama - untuk tombol, aksen */
  --green-light: #2da44e;
  /* Hijau terang */
  --green-soft: #e8f5ec;
  /* Hijau sangat muda - untuk background section */
  --green-glow: rgba(34, 120, 60, 0.15);
  /* Hijau transparan untuk shadow */
  /* Warna Pendukung */
  --gold: #d4a017;
  /* Emas - untuk jalur prestasi */
  --gold-soft: #fdf6e3;
  /* Emas muda */
  --blue: #1d72b8;
  /* Biru - untuk jalur reguler */
  --blue-soft: #e8f2fb;
  /* Biru muda */
  /* Warna Netral */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f0f2f5;
  --gray-200: #e4e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --text-main: #1f2937;
  /* Warna teks utama */
  --text-muted: #6b7280;
  /* Warna teks abu-abu */
  /* Tipografi (Font) */
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-heading: "Playfair Display", serif;
  /* Ukuran & Ruang */
  --radius-sm: 8px;
  /* Sudut melengkung kecil */
  --radius-md: 12px;
  /* Sudut melengkung sedang */
  --radius-lg: 20px;
  /* Sudut melengkung besar */
  --radius-xl: 28px;
  /* Sudut melengkung sangat besar */
  /* Bayangan (Shadow) */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-green: 0 4px 20px var(--green-glow);
  /* Transisi (Animasi) */
  --transition: all 0.25s ease;
  /* Lebar maksimal konten */
  --max-width: 1140px;
}

/* ================================================================
   2. RESET & BASE
   Menghapus pengaturan default browser agar tampilan konsisten
   ================================================================ */

/* Semua elemen: box-sizing border-box agar padding tidak menambah ukuran */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Tag HTML: Animasi scroll halus saat klik anchor link */

html {
  scroll-behavior: smooth;
}

/* Body: Pengaturan dasar font dan warna */

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  /* Jarak antar baris */
  font-size: 15px;
  overflow-x: hidden;
  /* Cegah scroll horizontal */
}

/* Gambar: Pastikan tidak melebihi lebar kontainer */

img {
  max-width: 100%;
  display: block;
}

/* Link: Hapus garis bawah default */

a {
  text-decoration: none;
  color: inherit;
}

/* List: Hapus bullet default */

ul {
  list-style: none;
}

/* ================================================================
   3. UTILITY CLASSES (Kelas Bantu)
   Kelas-kelas kecil yang sering dipakai berulang
   ================================================================ */

/* Container: Membatasi lebar konten dan memusatkannya */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  /* Otomatis margin kiri-kanan agar di tengah */
  padding: 0 24px;
  /* Ruang di kiri kanan pada layar kecil */
}

/* Warna teks hijau */

.text--green {
  color: var(--green-main);
}

/* Tombol di tengah */

.center-btn {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ================================================================
   4. TOMBOL (Buttons)
   Gaya berbagai jenis tombol yang dipakai di seluruh halaman
   ================================================================ */

/* Base tombol - pengaturan dasar yang berlaku untuk semua tombol */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* Jarak antara ikon dan teks */
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  /* Teks tidak pecah ke baris baru */
}

/* Tombol Utama: Hijau solid */

.btn--primary {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
  box-shadow: var(--shadow-green);
}

.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  /* Efek naik sedikit saat hover */
  box-shadow: 0 6px 24px var(--green-glow);
}

/* Tombol Secondary: Transparan dengan border hijau */

.btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Tombol Outline: Garis hijau, isi transparan */

.btn--outline {
  background: transparent;
  color: var(--green-main);
  border-color: var(--green-main);
}

.btn--outline:hover {
  background: var(--green-main);
  color: var(--white);
  transform: translateY(-2px);
}

/* Tombol Biru */

.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn--blue:hover {
  background: #155d99;
  transform: translateY(-2px);
}

/* Ukuran tombol */

.btn--lg {
  padding: 14px 32px;
  font-size: 15px;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* Tombol lebar penuh */

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ================================================================
   5. SECTION HEADER (Judul Tiap Bagian)
   Dipakai berulang di setiap section
   ================================================================ */

.section {
  padding: 80px 0;
}

.section--gray {
  background: var(--gray-100);
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

/* Badge kecil di atas judul section */

.section__badge {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-main);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 38px);
  /* Ukuran responsif */
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section__desc {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

/* ================================================================
   6. NAVBAR (Navigasi)
   ================================================================ */

.navbar {
  position: fixed;
  /* Tetap di atas saat scroll */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Di atas elemen lain */
  background: rgba(26, 92, 46, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

/* Navbar saat di-scroll (ditambahkan shadow oleh JS) */

.navbar--scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo + Nama Sekolah */

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__logo {
  height: 46px;
  /* Sedikit diperbesar agar logo lebih jelas */
  width: 46px;
  /* Lebar sama dengan tinggi agar proporsional */
  border-radius: 50%;
  /* Membuat gambar tampak bulat → sudut hitam tersembunyi */
  object-fit: cover;
  /* Gambar mengisi lingkaran tanpa terpotong aneh */
  border: 2px solid rgba(255, 255, 255, 0.3);
  /* Garis tipis putih di sekeliling logo */
}

.navbar__school-info {
  display: flex;
  flex-direction: column;
}

.navbar__school-name {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}

.navbar__school-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

/* Menu link */

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

/* Tombol Hamburger (muncul di HP) - default tersembunyi di desktop */

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================================================================
   7. HERO SECTION (Banner Utama)
   ================================================================ */

.hero {
  position: relative;
  /* Gradasi warna hijau dari gelap ke terang */
  background: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    var(--green-main) 50%,
    #2ec060 100%
  );
  padding: 140px 0 80px;
  /* Atas lebih besar karena navbar fixed */
  overflow: hidden;
  /* Sembunyikan dekorasi yang keluar batas */
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Dekorasi lingkaran besar di pojok kanan atas */

.hero__bg-decor {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
  /* Tidak menghalangi klik */
}

/* Pola titik-titik di latar belakang */

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2 kolom sama lebar */
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* === Konten Kiri Hero === */

/* Badge "Pendaftaran Sedang Dibuka" */

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

/* Titik animasi berkedip */

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 1.5s infinite;
  /* Animasi berulang */
}

/* Definisi animasi pulse (berkedip) */

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

/* Kata yang diberi warna berbeda */

.hero__title--highlight {
  color: #a3f4c0;
  display: inline-block;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Countdown Timer */

.hero__countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  min-width: 70px;
  backdrop-filter: blur(8px);
}

/* Angka countdown besar */

.countdown-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  /* Angka selalu lebar sama */
}

.countdown-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Tanda ":" pemisah countdown */

.countdown-sep {
  font-size: 24px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

/* Tombol aksi hero (Daftar Sekarang + Login) */

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* === Kartu Statistik Kanan Hero === */

.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

/* Kartu statistik utama (total pendaftar) */

.stat-card--main {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

.stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.stat-card__icon--gold {
  background: rgba(212, 160, 23, 0.35);
}

.stat-card__icon--blue {
  background: rgba(29, 114, 184, 0.35);
}

.stat-card__body {
  display: flex;
  flex-direction: column;
}

.stat-card__number {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-card__number small {
  font-size: 14px;
  opacity: 0.7;
}

.stat-card__label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
}

/* ================================================================
   8. JALUR & KUOTA SECTION
   ================================================================ */

/* Grid 2 kartu jalur */

.jalur__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.jalur-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  overflow: hidden;
}

.jalur-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Border kiri warna khas tiap jalur */

.jalur-card--prestasi {
  border-top: 4px solid var(--gold);
}

.jalur-card--reguler {
  border-top: 4px solid var(--blue);
}

/* Label "Terbuka" di pojok kanan atas kartu */

.jalur-card__ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green-soft);
  color: var(--green-main);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.jalur-card__ribbon--blue {
  background: var(--blue-soft);
  color: var(--blue);
}

/* Ikon besar di atas kartu */

.jalur-card__icon {
  width: 60px;
  height: 60px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.jalur-card__icon--blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.jalur-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.jalur-card__desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Bar progress kuota */

.jalur-card__quota {
  margin-bottom: 20px;
}

.quota__info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.quota__numbers {
  font-weight: 600;
  color: var(--gray-700);
}

/* Latar abu-abu bar */

.quota__bar {
  height: 8px;
  background: var(--gray-200);
  border-radius: 100px;
  overflow: hidden;
}

/* Isi bar (lebar diatur inline style atau JS) */

.quota__fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1s ease;
}

.quota__fill--prestasi {
  background: linear-gradient(90deg, var(--gold), #f5c842);
}

.quota__fill--reguler {
  background: linear-gradient(90deg, var(--blue), #4d9fe0);
}

/* Daftar fitur jalur */

.jalur-card__features {
  margin-bottom: 28px;
}

.jalur-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-700);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}

.jalur-card__features li:last-child {
  border-bottom: none;
}

.jalur-card__features li i {
  color: var(--green-main);
  font-size: 14px;
  flex-shrink: 0;
}

/* ================================================================
   9. TIMELINE SECTION
   ================================================================ */

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

/* Garis vertikal di tengah timeline */

.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:first-child::before,
.timeline-item:last-child::after {
  content: "";
  position: absolute;
  left: 28px;
  width: 2px;
  background: var(--gray-100);
  z-index: 0;
}

.timeline-item:first-child::before {
  top: -1px;
  height: 29px;
}

.timeline-item:last-child::after {
  top: 28px;
  bottom: -1px;
}

/* Nomor bulat di kiri timeline */

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  color: var(--gray-500);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

/* Nomor tahap yang sedang berjalan */

.timeline-dot--active {
  background: var(--green-main);
  border-color: var(--green-main);
  color: var(--white);
  box-shadow: 0 0 0 4px var(--green-soft);
}

/* Kartu keterangan tiap tahap */

.timeline-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  flex: 1;
  transition: var(--transition);
}

.timeline-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

/* Badge jalur di tiap kartu timeline */

.timeline-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-card__badge--green {
  background: var(--green-soft);
  color: var(--green-main);
}

.timeline-card__badge--blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.timeline-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.timeline-card__date {
  font-size: 13px;
  color: var(--green-main);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.timeline-card__desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* ================================================================
   10. TABEL PENDAFTAR TERBARU
   ================================================================ */

.table-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  /* Hapus jarak antar sel */
  font-size: 14px;
}

/* Header tabel */

.data-table thead th {
  background: var(--green-main);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sel data */

.data-table tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

/* Warna baris selang-seling (zebra) */

.data-table tbody tr:nth-child(even) {
  background: var(--gray-50);
}

.data-table tbody tr:hover {
  background: var(--green-soft);
}

/* Teks kosong/loading */

.table-empty {
  text-align: center;
  padding: 40px !important;
  color: var(--text-muted);
}

/* Badge status di tabel */

.badge-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.badge-status--terdaftar {
  background: var(--green-soft);
  color: var(--green-main);
}

.badge-status--verifikasi {
  background: #fff3cd;
  color: #856404;
}

/* Badge jalur di tabel */

.badge-jalur {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.badge-jalur--prestasi {
  background: var(--gold-soft);
  color: #7a5c00;
}

.badge-jalur--reguler {
  background: var(--blue-soft);
  color: var(--blue);
}

/* ================================================================
   11. SYARAT PENDAFTARAN
   ================================================================ */

.syarat__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.syarat-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.syarat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Header berwarna tiap kartu syarat */

.syarat-card__header {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  color: var(--white);
}

.syarat-card__header i {
  font-size: 28px;
}

.syarat-card__header h3 {
  font-size: 16px;
  font-weight: 700;
}

.syarat-card__header small {
  opacity: 0.85;
  font-size: 12px;
}

.syarat-card__header--green {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
}

.syarat-card__header--gold {
  background: linear-gradient(135deg, #a07810, var(--gold));
}

.syarat-card__header--blue {
  background: linear-gradient(135deg, #124d80, var(--blue));
}

/* List item syarat */

.syarat-card__list {
  padding: 20px 24px;
}

.syarat-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.5;
}

.syarat-card__list li:last-child {
  border-bottom: none;
}

.syarat-card__list li i {
  color: var(--green-main);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ================================================================
   12. PANDUAN / LANGKAH PENDAFTARAN
   ================================================================ */

/* Grid 3 kolom x 2 baris = 6 kartu langkah */

.panduan__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

/* Nomor besar di pojok kartu */

.step-card__number {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 42px;
  font-weight: 800;
  color: var(--green-soft);
  line-height: 1;
  font-family: var(--font-heading);
}

/* Ikon langkah */

.step-card__icon {
  width: 56px;
  height: 56px;
  background: var(--green-soft);
  color: var(--green-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}

.step-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.step-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================================================
   13. KONTAK SECTION
   ================================================================ */

.kontak__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.kontak-info__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.kontak-info__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kontak-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--gray-700);
}

.kontak-info__list li i {
  color: var(--green-main);
  font-size: 16px;
  margin-top: 2px;
  width: 18px;
  flex-shrink: 0;
}

.kontak-wa__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.kontak-wa__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Tombol WhatsApp */

.btn-wa {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  transition: var(--transition);
}

.btn-wa:hover {
  border-color: #25d366;
  background: #f0fff4;
  transform: translateX(4px);
}

.btn-wa i {
  font-size: 28px;
  color: #25d366;
  /* Warna hijau WhatsApp */
}

.btn-wa span {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-900);
}

.btn-wa small {
  color: var(--text-muted);
  font-size: 12px;
}

/* ================================================================
   14. FOOTER
   ================================================================ */

.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer__logo {
  height: 48px;
  width: auto;
}

.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ================================================================
   15. RESPONSIVE DESIGN (Tampilan di HP / Tablet)
   
   @media adalah "kondisi" - kode di dalamnya hanya berlaku
   jika layar memenuhi kondisi tersebut.
   
   max-width: 768px → berlaku jika lebar layar ≤ 768px (HP)
   ================================================================ */

/* === TABLET (≤ 1024px) === */

@media (max-width: 1024px) {
  .jalur__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .syarat__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .panduan__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kontak__grid {
    grid-template-columns: 1fr;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__badge,
  .hero__actions {
    justify-content: center;
  }
  .hero__stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .stat-card {
    flex: 1;
    min-width: 200px;
  }
}

/* === HP (≤ 768px) === */

@media (max-width: 768px) {
  /* Sembunyikan menu desktop, tampilkan hamburger */
  .navbar__menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  /* Ketika menu terbuka (class 'open' ditambahkan oleh JS) */
  .navbar__menu.open {
    display: flex;
  }
  .navbar__link {
    padding: 10px 14px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
  /* Tampilkan tombol hamburger */
  .navbar__hamburger {
    display: flex;
  }
  .panduan__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .section {
    padding: 56px 0;
  }
  /* Countdown lebih kecil */
  .countdown-item {
    min-width: 56px;
    padding: 10px 12px;
  }
  .countdown-number {
    font-size: 22px;
  }
  /* Hero actions tumpuk ke bawah */
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .btn--lg {
    width: 100%;
    justify-content: center;
  }
  /* Tabel scroll horizontal di HP */
  .table-wrapper {
    overflow-x: auto;
  }
}
