/* ============================================================
   SISTEM PENDAFTARAN TK NURUL IKHLAS
   File : assets/css/style.css
============================================================ */

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  --secondary: #0f172a;
  --accent: #f59e0b;
  --success: #10b981;
  --danger: #ef4444;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border: #e2e8f0;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --font: "Plus Jakarta Sans", sans-serif;
  --transition: all 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: var(--font);
  color: var(--text-main);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
}
a {
  text-decoration: none;
  transition: var(--transition);
}
img {
  max-width: 100%;
}
.fw-700 {
  font-weight: 700;
}

/* ── Full Screen Section ── */
.fs-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* ── Navbar ── */
#mainNavbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
  transition: var(--transition);
}
#mainNavbar.scrolled {
  box-shadow: var(--shadow-md);
}
.brand-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.brand-icon-sm {
  width: 32px;
  height: 32px;
  font-size: 15px;
}
.brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted) !important;
  padding: 0.4rem 0.75rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-light);
}

/* ── Buttons ── */
.btn {
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ── Hero ── */
.hero-section {
  padding: 80px 0;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fcd34d;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.hero-title span {
  color: #60a5fa;
}
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin-bottom: 1.5rem;
}
.hero-section .btn-lg {
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
}

/* ── Sambutan ── */
.sambutan-section {
  background: #0b2556;
}
.sambutan-foto-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 4px solid rgba(255, 255, 255, 0.15);
}
.sambutan-foto-img-wrap {
  width: 100%;
  height: 340px;
  overflow: hidden;
}
.sambutan-foto-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.sambutan-foto-label {
  background: #2f6fe0;
  padding: 14px 16px;
  text-align: center;
}
.sambutan-nama {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 3px;
}
.sambutan-role {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.72);
  display: block;
}
.sambutan-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}
.sambutan-quote-block {
  border-left: 3px solid #2f6fe0;
  padding-left: 1.5rem;
}
.sambutan-quote-text {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
.sambutan-sig {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sambutan-sig-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.sambutan-sig-role {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}
/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, #0b2556 0%, #1a3a7a 50%, #0b2556 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  top: -200px;
  left: -100px;
  pointer-events: none;
}

/* ── Section Generic ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
}

/* ── Cards ── */
.card-custom {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}
.card-custom:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* ── Timeline ── */
.tl-v-wrap {
  position: relative;
  padding-left: 60px;
}
.tl-v-wrap::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary-light),
    var(--primary),
    var(--primary-light)
  );
}
.tl-v-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
}
.tl-v-item:last-child {
  margin-bottom: 0;
}
.tl-v-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  position: absolute;
  left: -60px;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--primary-light);
}
.tl-v-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  flex: 1;
  transition: var(--transition);
}
.tl-v-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.tl-v-judul {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px;
  line-height: 1.4;
}
.tl-v-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── Form Controls ── */
.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.625rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font);
  transition: var(--transition);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}
.form-text {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ── Auth ── */
.auth-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.auth-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-lg);
}
.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* ── Badge ── */
.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35em 0.75em;
  border-radius: 50px;
}

/* ── Footer ── */
.footer {
  background: var(--secondary);
}
.footer-top {
  padding: 4rem 0 3rem;
}
.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0.875rem;
}
.footer-contact li i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}
.btn-sosmed {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-sosmed:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

/* ── Utility ── */
.bg-light-custom {
  background: var(--bg-light);
}
.text-muted-custom {
  color: var(--text-muted) !important;
}

/* ── Program / Kelas ── */
.program-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-white);
  transition: var(--transition);
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.program-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.program-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.program-card:hover .program-card-img {
  transform: scale(1.04);
}
.program-card-body {
  padding: 12px 14px 16px;
}
.program-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
}
.program-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
  line-height: 1.35;
}

/* ── Form Pendaftaran ── */
.form-page {
  max-width: 100%;
}
.form-section {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.form-section--optional {
  border-style: dashed;
}
.form-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}
.form-section-header > i {
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}
.form-section-header .section-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
}
.form-section-header .section-desc {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
}
.form-section-body {
  padding: 20px;
}
.badge-optional {
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--bg-light);
  color: var(--text-muted);
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
}
.req {
  color: var(--danger);
}
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 32px;
}

/* ── Cetak ── */
.cetak-body {
  background: #f4f4f4;
  font-family: "Times New Roman", Times, serif;
  font-size: 13px;
  color: #111;
}
.no-print {
  background: #fff;
  padding: 12px 20px;
  border-bottom: 1px solid #ddd;
  display: flex;
  gap: 10px;
}
.btn-cetak {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid #aaa;
  font-family: inherit;
  background: #fff;
  color: #333;
}
.btn-cetak:hover {
  background: #f0f0f0;
}
.btn-cetak-print {
  background: #333;
  color: #fff;
  border-color: #333;
}
.btn-cetak-back {
  background: #eee;
  color: #333;
}
.page-wrap {
  max-width: 720px;
  margin: 24px auto;
  background: #fff;
  padding: 32px 36px;
  border: 1px solid #ccc;
}
.kop {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 3px double #333;
  margin-bottom: 6px;
}
.kop-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.kop-text {
  text-align: center;
  flex: 1;
}
.kop-sub {
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 2px;
  font-family: Arial, sans-serif;
}
.kop-nama {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  letter-spacing: 1px;
  font-family: Arial, sans-serif;
  line-height: 1.1;
}
.kop-alamat {
  font-size: 10.5px;
  margin-top: 3px;
  font-family: Arial, sans-serif;
}
.doc-title {
  text-align: center;
  margin-bottom: 18px;
}
.doc-title p {
  line-height: 1.7;
  font-size: 13px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}
.doc-section-label {
  font-size: 12px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  padding: 5px 10px;
  margin: 14px 0 0;
  border: 1px solid #333;
  background: #fff;
  color: #111;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  margin-bottom: 4px;
  border: 1px solid #333;
  border-top: none;
}
.info-table tr {
  border-bottom: 0.5px solid #ccc;
}
.info-table tr:last-child {
  border-bottom: none;
}
.info-table td {
  padding: 5px 8px;
  vertical-align: top;
}
.info-table td.no {
  width: 24px;
  text-align: center;
  color: #555;
  border-right: 0.5px solid #ccc;
}
.info-table td.label {
  width: 165px;
  border-right: 0.5px solid #ccc;
}
.info-table td.sep {
  width: 14px;
  border-right: 0.5px solid #ccc;
  text-align: center;
}
.biaya-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  margin-bottom: 4px;
  border: 1px solid #333;
  border-top: none;
}
.biaya-table th {
  background: #fff;
  color: #111;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  border-bottom: 1px solid #333;
  border-right: 0.5px solid #ccc;
  text-align: left;
}
.biaya-table th:last-child {
  border-right: none;
  text-align: right;
}
.biaya-table tbody td {
  padding: 5px 8px;
  border-bottom: 0.5px solid #ccc;
  border-right: 0.5px solid #ccc;
  vertical-align: middle;
}
.biaya-table tbody td:last-child {
  border-right: none;
  text-align: right;
}
.biaya-table tbody td:first-child {
  text-align: center;
  width: 32px;
}
.biaya-table tfoot td {
  font-weight: bold;
  background: #fff;
  padding: 6px 8px;
  border-top: 2px solid #333;
  border-right: 0.5px solid #ccc;
}
.biaya-table tfoot td:last-child {
  border-right: none;
  text-align: right;
}
.ttd-section {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}
.ttd-box {
  text-align: center;
  font-size: 12px;
}
.ttd-space {
  height: 56px;
  border-bottom: 1px solid #aaa;
  margin: 8px 16px;
}
.doc-footer {
  margin-top: 20px;
  font-size: 10px;
  color: #777;
  text-align: center;
  border-top: 0.5px solid #ccc;
  padding-top: 8px;
  font-family: Arial, sans-serif;
}

/* ── PENDAFTARAN PAGE ─────────────────────────────── */
.pendaftaran-hero {
  background: var(--bg-light);
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--border);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-title-accent {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-period {
  display: inline-flex;
  align-items: center;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 13px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.btn-daftar {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff !important;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-daftar:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-daftar.disabled {
  background: var(--text-light);
  cursor: not-allowed;
}

.btn-syarat {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-syarat:hover {
  color: var(--primary);
}

.alur-section,
.syarat-section,
.biaya-section {
  padding: 70px 0;
}
.alur-section {
  background: var(--bg-white);
}
.syarat-section {
  background: var(--bg-light);
}
.biaya-section {
  background: var(--bg-white);
}

.syarat-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 24px;
  margin-top: 40px;
}

.syarat-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.syarat-main {
  border-top: 4px solid var(--primary);
}

.syarat-card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.syarat-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.syarat-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
}

.syarat-docs {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.syarat-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px;
}

.syarat-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
}

.syarat-list li i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.docs-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
}

.doc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.doc-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.doc-info {
  flex: 1;
}

.doc-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.doc-note {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

.doc-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.doc-badge.wajib {
  background: #fee2e2;
  color: var(--danger);
}

.biaya-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.biaya-card {
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.biaya-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.biaya-gelombang {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 4px;
}

.biaya-periode {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.biaya-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.biaya-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-light);
  font-size: 13px;
  color: var(--text-muted);
}

.biaya-list li strong {
  color: var(--text-main);
  font-size: 14px;
}

.biaya-include {
  margin-top: 32px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.biaya-include-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.biaya-include-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.biaya-include-items span {
  font-size: 13px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 6px;
}

.biaya-include-items i {
  color: var(--primary);
  font-size: 14px;
}

/* ── Responsive Umum ── */
@media (max-width: 768px) {
  .hero-section {
    padding: 70px 0 50px;
  }
  .fs-section {
    min-height: auto;
    padding: 60px 0;
  }
  .sambutan-section {
    min-height: 100vh;
  }
  .cta-section {
    min-height: 100vh;
  }
  .auth-card {
    padding: 1.75rem;
  }
  .form-actions {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .form-actions .btn {
    width: 100%;
    text-align: center;
  }
  .tl-v-wrap {
    padding-left: 50px;
  }
  .tl-v-wrap::before {
    left: 18px;
  }
  .tl-v-dot {
    width: 36px;
    height: 36px;
    font-size: 12px;
    left: -50px;
  }
  .tl-v-card {
    padding: 16px;
  }
  .tl-v-judul {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }
  .brand-name {
    font-size: 0.9rem;
  }
}

@media print {
  .cetak-body {
    background: #fff;
  }
  .no-print {
    display: none !important;
  }
  .page-wrap {
    margin: 0;
    border: none;
    padding: 20px;
    max-width: 100%;
  }
}
