/* ══════════════════════════════════
   VARIABLES & RESET
══════════════════════════════════ */
:root {
  --navy: #003087;
  --navy-dk: #001d5c;
  --gold: #f5a500;
  --gold-lt: #ffc840;
  --sky: #e8f0fb;
  --gray-1: #f8fafc;
  --gray-2: #e2e8f0;
  --gray-5: #64748b;
  --gray-8: #1e293b;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0, 48, 135, 0.1);
  --shadow-md: 0 6px 24px rgba(0, 48, 135, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--gray-8);
  background: #fff;
}
a {
  text-decoration: none;
}

/* ══════════════════════════════════
   ANIMASI SCROLL — ringan & bersih
══════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay {
  transition-delay: 0.15s;
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-2);
  padding: 0 40px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-brand-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.nav-brand-sub {
  font-size: 10px;
  color: var(--gray-5);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-5);
  padding: 7px 14px;
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
}
.nav-links a:hover {
  background: var(--sky);
  color: var(--navy);
}
.nav-links .btn-nav {
  background: var(--navy);
  color: #fff !important;
  padding: 7px 18px;
  border-radius: 8px;
}
.nav-links .btn-nav:hover {
  background: #00418c;
}

/* ══════════════════════════════════
   SHARED
══════════════════════════════════ */
section {
  padding: 88px 40px;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 14px;
  padding-left: 18px;
  position: relative;
}
.section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: var(--gold);
}
/* Versi tengah (center) */
.center-tag {
  display: block;
  text-align: center;
  padding-left: 0;
  margin-bottom: 14px;
}
.center-tag::before {
  display: none;
}
.center-tag::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-left: 8px;
}

.section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy-dk);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-desc {
  font-size: 14px;
  color: var(--gray-5);
  line-height: 1.75;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  background:
    linear-gradient(
      135deg,
      rgba(0, 29, 92, 0.85) 0%,
      rgba(0, 48, 135, 0.75) 100%
    ),
    url("img/bg.jpg") center 70% / cover no-repeat;
  padding: 96px 40px 84px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(245, 165, 0, 0.07));
  pointer-events: none;
}
.hero-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero text fade-in saat load */
.hero-text {
  animation: heroFade 0.7s ease both;
}
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Mockup sedikit telat */
.mockup {
  animation: heroFade 0.7s 0.2s ease both;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 165, 0, 0.12);
  border: 1px solid rgba(245, 165, 0, 0.3);
  color: var(--gold-lt);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-title span {
  color: var(--gold);
}
.hero-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dk);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.btn-gold:hover {
  background: var(--gold-lt);
  box-shadow: 0 4px 16px rgba(245, 165, 0, 0.4);
}
.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
}
.hero-stat .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 3px;
}

/* Mini mockup */

/* ══════════════════════════════════
   TENTANG
══════════════════════════════════ */
.about-section {
  background: var(--gray-1);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.about-point {
  display: flex;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.about-point:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.ap-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--navy);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
}
.ap-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.ap-desc {
  font-size: 12.5px;
  color: var(--gray-5);
  line-height: 1.55;
}

.about-card {
  background: var(--navy-dk);
  border-radius: 20px;
  padding: 36px;
}
.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.about-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.about-stat .big {
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.about-stat .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}
.about-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 20px 0;
}
.tech-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

/* ══════════════════════════════════
   FITUR UTAMA — background navy
══════════════════════════════════ */
.features-section {
  background: var(--navy-dk);
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.features-section .container {
  position: relative;
  z-index: 1;
}

.feat-header {
  text-align: center;
  margin-bottom: 52px;
}
.feat-header .section-tag {
  color: #fff;
}
.feat-header .section-title {
  color: #fff;
}
.feat-header .section-desc {
  color: rgba(255, 255, 255, 0.55);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.feat-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(245, 165, 0, 0.4);
}
/* Garis gold atas saat hover */
.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity 0.25s;
}
.feat-card:hover::before {
  opacity: 1;
}

.feat-icon {
  width: 50px;
  height: 50px;
  background: rgba(245, 165, 0, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 18px;
}
.feat-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.feat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}
.feat-num {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-size: 44px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  user-select: none;
}

/* ══════════════════════════════════
   ALUR PROSES
══════════════════════════════════ */
.alur-section {
  background: var(--gray-1);
}
.alur-head {
  margin-bottom: 36px;
}
.alur-tag {
  color: var(--navy);
}

.alur-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.alur-tab {
  background: #fff;
  border: 1.5px solid var(--gray-2);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--gray-5);
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.alur-tab:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.alur-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold-lt);
}
.tab-num {
  font-size: 22px;
  font-weight: 800;
  opacity: 0.3;
  line-height: 1;
}
.alur-tab.active .tab-num {
  opacity: 1;
  color: var(--gold);
}
.tab-name {
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 2px;
}
.tab-range {
  font-size: 10.5px;
  opacity: 0.65;
}

.alur-panel {
  display: none;
}
.alur-panel.active {
  display: block;
  animation: panelIn 0.3s ease;
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--gold-lt);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.panel-desc-txt {
  font-size: 13px;
  color: var(--gray-5);
  line-height: 1.65;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1.5px solid var(--gray-2);
}
.step-item.hl-hps {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.step-item.hl-proses {
  background: #fffbeb;
  border-color: #fde68a;
}
.step-item.hl-vendor {
  background: #eef2ff;
  border-color: #c7d2fe;
}
.step-item.hl-kontrak {
  background: #fff1f2;
  border-color: #fecdd3;
}
.step-item.hl-last {
  background: #fffbeb;
  border-color: #f59e0b;
}

.step-num {
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gray-2);
  color: var(--gray-5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 700;
  flex-shrink: 0;
}
.step-item.hl-hps .step-num {
  background: #bbf7d0;
  color: #15803d;
}
.step-item.hl-proses .step-num {
  background: #fde68a;
  color: #92400e;
}
.step-item.hl-vendor .step-num {
  background: #c7d2fe;
  color: #3730a3;
}
.step-item.hl-kontrak .step-num {
  background: #fecdd3;
  color: #be123c;
}
.step-item.hl-last .step-num {
  background: #f59e0b;
  color: #fff;
}

.step-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-8);
  line-height: 1.4;
}
.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 5px;
  font-size: 10.5px;
  padding: 2px 9px;
  border-radius: 100px;
  font-weight: 600;
}
.tag-hps {
  background: #dcfce7;
  color: #15803d;
}
.tag-proses {
  background: #fef9c3;
  color: #a16207;
}
.tag-vendor {
  background: #e0e7ff;
  color: #3730a3;
}
.tag-kontrak {
  background: #ffe4e6;
  color: #be123c;
}

.alur-legend {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding: 12px 18px;
  background: #fff;
  border: 1.5px solid var(--gray-2);
  border-radius: 10px;
}
.legend-label {
  font-size: 10.5px;
  color: var(--gray-5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--gray-5);
}
.ld {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}
.ld-hps {
  background: #16a34a;
}
.ld-proses {
  background: #d97706;
}
.ld-vendor {
  background: #4338ca;
}
.ld-kontrak {
  background: #e11d48;
}

/* ══════════════════════════════════
   PENGGUNA
══════════════════════════════════ */
.role-section {
  background: #001d5c;
}
.role-header {
  margin-bottom: 30px;
}
.role-header .section-tag,
.role-header .section-title,
.role-header .section-desc {
  text-align: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}
.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.role-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.role-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.role-top {
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
}
.role-top.admin {
  background: linear-gradient(135deg, #be123c, #e11d48);
}
.role-top.ophar {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
}
.role-top.lingk {
  background: linear-gradient(135deg, #15803d, #22c55e);
}
.role-top.engin {
  background: linear-gradient(135deg, #b45309, #f59e0b);
}

.role-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.role-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}
.role-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
.role-glow {
  position: absolute;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  bottom: -24px;
  right: -16px;
}
.role-bottom {
  background: var(--gray-1);
  padding: 18px 22px;
}
.role-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.role-list li {
  font-size: 12.5px;
  color: var(--gray-5);
  display: flex;
  align-items: center;
  gap: 7px;
}
.role-list li i.bi-check-circle-fill {
  color: #16a34a;
  font-size: 11px;
}
.role-list li.no {
  color: #cbd5e1;
}
.role-list li.no i {
  color: #cbd5e1;
}

/* ══════════════════════════════════
   TEKNOLOGI
══════════════════════════════════ */
.tech-section {
  background: var(--gray-1);
}
.tech-header {
  text-align: center;
  margin-bottom: 48px;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
}
.tech-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1.5px solid var(--gray-2);
  border-radius: var(--radius);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.tech-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.tech-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
}
.tech-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-dk);
}
.tech-desc {
  font-size: 11.5px;
  color: var(--gray-5);
  margin-top: 2px;
}

/* ══════════════════════════════════
   CTA
══════════════════════════════════ */
.cta-section {
  background: var(--navy-dk);
  padding: 88px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(245, 165, 0, 0.06));
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cta-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: #000e2a;
  padding: 40px;
  text-align: center;
  border-top: 2px solid rgba(245, 165, 0, 0.2);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.footer-brand span {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
footer p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.8;
}
.footer-hr {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  max-width: 380px;
  margin: 16px auto;
}

/* ══════════════════════════════════
   LOTTIE HERO
══════════════════════════════════ */
.hero-lottie {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 992px) {
  nav {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 60px 20px;
  }
  .hero {
    padding: 72px 20px 60px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .mockup {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .alur-tabs {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .role-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tech-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .role-grid {
    grid-template-columns: 1fr;
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .alur-tabs {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 20px;
  }
}

/* ══════════════════════════════════
   BIDANG BARU — AUM & LOGISTIK
══════════════════════════════════ */
.role-top.aum {
  background: linear-gradient(135deg, #b91c1c, #ef4444);
}
.role-top.logistik {
  background: linear-gradient(135deg, #0369a1, #38bdf8);
}

/* Grid 6 kolom untuk role */
.role-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .role-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .role-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════
   FOOTER LOGO
══════════════════════════════════ */
.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* ══════════════════════════════════
   VIDEO / CARA KERJA SECTION
══════════════════════════════════ */
.video-section {
  background: var(--navy-dk);
  padding: 72px 40px;
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.video-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.video-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.vstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 120px;
}
.vstep-icon {
  width: 54px;
  height: 54px;
  background: rgba(245, 165, 0, 0.15);
  border: 2px solid rgba(245, 165, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  position: relative;
  z-index: 1;
  transition:
    background 0.3s,
    transform 0.3s;
}
.vstep:hover .vstep-icon {
  background: rgba(245, 165, 0, 0.3);
  transform: scale(1.12);
}
.vstep-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(245, 165, 0, 0.4),
    rgba(245, 165, 0, 0.1)
  );
  margin-top: -27px; /* center with icon */
  position: relative;
  z-index: 0;
}
.vstep-label {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.4;
}

/* ══════════════════════════════════
   COUNTER ANIMASI
══════════════════════════════════ */
.counter {
  display: inline-block;
}

/* ══════════════════════════════════
   ABOUT VIDEO PLAYER
══════════════════════════════════ */
.about-video-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Label di atas video */
.about-video-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
}
.about-video-label i {
  font-size: 15px;
}

/* Kotak pembungkus video */
.about-video-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy-dk);
  border: 2px solid rgba(245, 165, 0, 0.25);
  box-shadow: 0 8px 32px rgba(0, 48, 135, 0.25);
  aspect-ratio: 16 / 9; /* rasio video standar */
}

/* Elemen video HTML */
.about-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}

/* Placeholder saat video belum ada */
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-dk) 0%, #002366 100%);
  border-radius: 14px;
  z-index: 2;
}
/* Sembunyikan placeholder jika video bisa dimuat */
.about-video:not([src=""]) ~ .video-placeholder,
.about-video[src$=".mp4"] ~ .video-placeholder {
  display: none;
}

.vp-inner {
  text-align: center;
  padding: 32px;
}
.vp-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(245, 165, 0, 0.12);
  border: 2px solid rgba(245, 165, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 30px;
  color: var(--gold);
  animation: vp-pulse 2s ease-in-out infinite;
}
@keyframes vp-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 165, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(245, 165, 0, 0);
  }
}
.vp-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.vp-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 16px;
}
.vp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 165, 0, 0.12);
  border: 1px solid rgba(245, 165, 0, 0.3);
  color: var(--gold-lt);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}

/* Caption bawah video */
.about-video-caption {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: var(--gray-5);
  line-height: 1.5;
}
.about-video-caption i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--navy);
}

/* Responsive */
@media (max-width: 992px) {
  .about-video-box {
    aspect-ratio: 16 / 9;
  }
}

/* ══════════════════════════════════
   PARTIKEL CANVAS — HERO
══════════════════════════════════ */
#heroParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
/* Pastikan konten hero di atas canvas */
.hero-grid {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════
   WAVE DIVIDER ANTAR SECTION
══════════════════════════════════ */
.wave-divider {
  display: block;
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px; /* hilangkan gap */
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
  animation: waveSway 6s ease-in-out infinite;
  transform-origin: center bottom;
}
@keyframes waveSway {
  0%,
  100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(1.04);
  }
}

/* Warna background wave sesuai section sebelumnya */
.wave-light {
  background: var(--navy-dk);
} /* dari dark ke light */
.wave-dark {
  background: var(--gray-1);
} /* dari light ke dark */
.wave-navy {
  background: var(--gray-1);
} /* dari light ke navy */

/* ══════════════════════════════════
   MOTION — FLOATING ORBS di section
══════════════════════════════════ */
/* Orb dekoratif melayang di section gelap */
.features-section,
.role-section,
.cta-section,
.video-section {
  position: relative;
  overflow: hidden;
}

.features-section::after,
.role-section::after,
.cta-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 165, 0, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.features-section::after {
  bottom: -120px;
  left: -80px;
  animation-delay: 0s;
}
.role-section::after {
  top: -100px;
  right: -100px;
  animation-delay: -3s;
}
.cta-section::after {
  top: -80px;
  left: 20%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 15px) scale(0.97);
  }
}

/* ══════════════════════════════════
   MOTION — SCROLL REVEAL TAMBAHAN
══════════════════════════════════ */
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay bertahap untuk card grid */
.feat-card:nth-child(1) {
  transition-delay: 0s;
}
.feat-card:nth-child(2) {
  transition-delay: 0.1s;
}
.feat-card:nth-child(3) {
  transition-delay: 0.2s;
}
.feat-card:nth-child(4) {
  transition-delay: 0.3s;
}
.feat-card:nth-child(5) {
  transition-delay: 0.4s;
}
.feat-card:nth-child(6) {
  transition-delay: 0.5s;
}

.role-card:nth-child(1) {
  transition-delay: 0s;
}
.role-card:nth-child(2) {
  transition-delay: 0.1s;
}
.role-card:nth-child(3) {
  transition-delay: 0.2s;
}
.role-card:nth-child(4) {
  transition-delay: 0.3s;
}
.role-card:nth-child(5) {
  transition-delay: 0.4s;
}
.role-card:nth-child(6) {
  transition-delay: 0.5s;
}

.tech-card:nth-child(1) {
  transition-delay: 0s;
}
.tech-card:nth-child(2) {
  transition-delay: 0.1s;
}
.tech-card:nth-child(3) {
  transition-delay: 0.2s;
}
.tech-card:nth-child(4) {
  transition-delay: 0.3s;
}
.tech-card:nth-child(5) {
  transition-delay: 0.4s;
}
.tech-card:nth-child(6) {
  transition-delay: 0.5s;
}

/* ══════════════════════════════════
   MOTION — SHIMMER PADA STAT CARD
══════════════════════════════════ */
.hero-stat {
  position: relative;
  overflow: hidden;
}
.hero-stat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  60%,
  100% {
    transform: translateX(100%);
  }
}

/* ══════════════════════════════════
   MOTION — GLOW PADA TOMBOL
══════════════════════════════════ */
.btn-gold {
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.5s ease,
    height 0.5s ease;
}
.btn-gold:hover::before {
  width: 300px;
  height: 300px;
}

/* ══════════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════════ */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--navy));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(245, 165, 0, 0.6);
}

/* ══════════════════════════════════
   TYPEWRITER — HERO TITLE
══════════════════════════════════ */
#typewriter {
  display: inline;
  color: inherit;
}
#typewriter .typed-text {
  color: #fff;
}
#typewriter .typed-highlight {
  color: var(--gold);
}
#typewriter .cursor {
  display: inline-block;
  width: 3px;
  background: var(--gold);
  margin-left: 2px;
  animation: cursorBlink 0.7s step-end infinite;
  vertical-align: baseline;
  height: 1em;
  border-radius: 2px;
}
@keyframes cursorBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* ══════════════════════════════════
   PARALLAX HERO BG
══════════════════════════════════ */
.hero {
  background-attachment: fixed;
}

/* ══════════════════════════════════
   TILT EFFECT — FEAT & TECH CARDS
══════════════════════════════════ */
.feat-card,
.tech-card,
.role-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ══════════════════════════════════
   MAGNETIC BUTTON
══════════════════════════════════ */
.btn-gold,
.btn-outline-white,
.btn-nav {
  will-change: transform;
  transition:
    transform 0.2s ease,
    background 0.2s,
    box-shadow 0.2s;
}

/* ══════════════════════════════════
   GLITCH EFFECT — SECTION TAG
══════════════════════════════════ */
.center-tag {
  position: relative;
  display: block;
}
.center-tag:hover {
  animation: glitch 0.3s ease;
}
@keyframes glitch {
  0% {
    text-shadow: none;
    transform: translate(0);
  }
  20% {
    text-shadow: -2px 0 var(--gold);
    transform: translate(2px, 0);
  }
  40% {
    text-shadow: 2px 0 #3b82f6;
    transform: translate(-2px, 0);
  }
  60% {
    text-shadow: -1px 0 var(--gold);
    transform: translate(1px, 0);
  }
  80% {
    text-shadow: 1px 0 #3b82f6;
    transform: translate(-1px, 0);
  }
  100% {
    text-shadow: none;
    transform: translate(0);
  }
}

/* ══════════════════════════════════
   FLOATING BADGE — HERO TAG
══════════════════════════════════ */
.hero-tag {
  animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* ══════════════════════════════════
   PULSE RING — ABOUT POINT ICON
══════════════════════════════════ */
.ap-icon {
  position: relative;
}
.ap-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 12px;
  border: 2px solid var(--gold);
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.about-point:hover .ap-icon::after {
  opacity: 0.4;
  transform: scale(1.1);
}
