/* ============================================================
   Depoinovasi Electronics — Landing Page PKL & Magang
   Design system: "Light Technology Editorial"
   Bright · Technological · Human · Energetic · Professional
   Fonts: Poppins (display) + Inter (body)
   Motion: 3 levels — ambient (L1) / reveal (L2) / interaction (L3)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy: #0B1220;
  --navy-2: #101D38;
  --navy-3: #16294F;
  --blue: #2563EB;
  --blue-deep: #1D4ED8;
  --cyan: #06B6D4;
  --teal: #14B8A6;
  --orange: #F59E0B;
  --amber: #F97316;
  --bg: #F7FAFC;
  --bg-soft: #EEF4FF;
  --bg-soft-2: #F0F7FF;
  --card: #FFFFFF;
  --text: #0F172A;
  --muted: #64748B;
  --line: rgba(15, 23, 42, 0.09);
  --wa: #25D366;
  --wa-dark: #16A34A;
  --grad: linear-gradient(120deg, #2563EB 0%, #06B6D4 100%);
  --grad-warm: linear-gradient(120deg, #F59E0B 0%, #F97316 100%);
  --grad-navy: linear-gradient(150deg, #0B1220 0%, #16294F 55%, #1D4ED8 130%);
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.07);
  --shadow-md: 0 18px 44px rgba(37, 99, 235, 0.13);
  --shadow-lg: 0 34px 70px rgba(15, 23, 42, 0.16);
  --nav-h: 80px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input { font-family: inherit; }

section, footer { scroll-margin-top: calc(var(--nav-h) + 8px); }

::selection { background: var(--blue); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #eef1f8; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue), var(--cyan)); border-radius: 8px; }

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.55);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Utilities ---------- */
.container { width: min(1200px, 92%); margin-inline: auto; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section { padding: 104px 0; position: relative; }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head.head-left { margin-left: 0; text-align: left; max-width: 720px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.22);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-tag::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.section-tag-dark {
  color: #7DD3FC;
  background: rgba(125, 211, 252, 0.08);
  border-color: rgba(125, 211, 252, 0.28);
}
.section-tag-dark::before {
  background: linear-gradient(120deg, #7DD3FC, #06B6D4);
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.5);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 3.8vw, 2.9rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-title.light {
  color: #163A5F;
  opacity: 1;
  text-shadow: none;
}

.section-desc { color: var(--muted); margin-top: 16px; font-size: 1.03rem; }
.section-desc.light-desc { color: rgba(203, 213, 225, 0.85); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: 100px;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease);
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; transition: transform 0.28s var(--ease); }
.btn:hover svg { transform: translateX(2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-wa {
  background: linear-gradient(120deg, var(--wa), var(--wa-dark));
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.38);
}
.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.5);
}

.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: rgba(37, 99, 235, 0.35); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid rgba(37, 99, 235, 0.4);
}
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-3px); box-shadow: 0 16px 36px rgba(37, 99, 235, 0.35); }

.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost-dark:hover { background: #fff; color: var(--blue); transform: translateY(-3px); box-shadow: 0 16px 36px rgba(255, 255, 255, 0.2); }

.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-xl { padding: 20px 44px; font-size: 1.12rem; }

.btn-magnetic { will-change: transform; }

/* ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
}
.btn-ghost .ripple, .btn-outline .ripple { background: rgba(15, 23, 42, 0.2); }
.btn-ghost-dark .ripple { background: rgba(255, 255, 255, 0.4); }
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* ---------- Scroll progress ---------- */
#scrollProgress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 2000;
  background: var(--grad);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, height 0.35s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  height: calc(var(--nav-h) - 8px);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: min(1280px, 94%); }

.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.brand-logo {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 5px 8px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  flex-shrink: 0;
}
.brand:hover .brand-logo { transform: translateY(-2px) rotate(-2deg); box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22); }
.brand-logo img { height: 48px; width: auto; }

.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { font-family: var(--font-head); font-size: 1.06rem; font-weight: 700; letter-spacing: -0.01em; }
.brand-text small { font-size: 0.66rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 2px; }

.nav-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 10px;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--blue); font-weight: 600; }

.btn-wa-nav { padding: 11px 22px; font-size: 0.9rem; margin-left: 10px; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  z-index: 1250;
  box-shadow: var(--shadow-sm);
}
.nav-toggle span { width: 22px; height: 2.5px; background: var(--text); border-radius: 3px; transition: transform 0.32s var(--ease), opacity 0.32s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) 0 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: clip;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(6, 182, 212, 0.16), transparent 62%),
    radial-gradient(800px 500px at -8% 30%, rgba(37, 99, 235, 0.14), transparent 60%),
    radial-gradient(620px 380px at 55% 110%, rgba(20, 184, 166, 0.12), transparent 62%),
    linear-gradient(180deg, #F7FAFC 0%, #EAF3FF 100%);
}

.hero-decor { position: absolute; inset: 0; pointer-events: none; will-change: transform; }

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 0%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 0%, #000 30%, transparent 100%);
  animation: gridDrift 40s linear infinite;
}
@keyframes gridDrift {
  to { background-position: 56px 56px, 56px 56px; }
}

.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; animation: blobFloat 18s ease-in-out infinite alternate; }
.hero-blob-1 { width: 480px; height: 480px; top: -140px; left: -120px; background: radial-gradient(circle, rgba(37, 99, 235, 0.32), transparent 70%); }
.hero-blob-2 { width: 420px; height: 420px; top: 30%; right: -180px; background: radial-gradient(circle, rgba(6, 182, 212, 0.28), transparent 70%); animation-delay: -6s; }
.hero-blob-3 { width: 300px; height: 300px; bottom: -100px; left: 38%; background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%); animation-delay: -12s; }

@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(46px, 52px) scale(1.14); }
}

.hero-circuit {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
}
.hero-circuit path {
  stroke: rgba(37, 99, 235, 0.32);
  stroke-width: 1.6;
  stroke-dasharray: 6 10;
  fill: none;
  animation: lineDash 5s linear infinite;
}
@keyframes lineDash { to { stroke-dashoffset: -64; } }

.circuit-node {
  fill: var(--cyan);
  opacity: 0.8;
  animation: nodePulse 3.4s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.circuit-node:nth-of-type(2n) { animation-delay: -1.7s; }
@keyframes nodePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.35); }
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 56px;
  align-items: center;
}

/* hero content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 100px;
  padding: 9px 20px;
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: badgePulse 2.2s ease-out infinite;
}
@keyframes badgePulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 11px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.35rem, 5vw, 3.9rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero-title .grad-text { display: inline-block; }

.hero-sub {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }

.hero-trust { display: flex; align-items: center; gap: 16px; }
.hero-trust-faces { display: flex; }
.hero-trust-faces img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
  margin-right: -12px;
  transition: transform 0.3s var(--ease);
}
.hero-trust-faces img:hover { transform: translateY(-4px); z-index: 2; }
.hero-trust p { font-size: 0.9rem; color: var(--muted); max-width: 380px; }
.hero-trust p strong { color: var(--text); }

/* ---------- Hero entrance sequence (L2 — reveal) ---------- */
body.hero-ready .hero-badge { animation: hBadge 0.7s var(--ease) 0.15s both; }
body.hero-ready .hero-title { animation: hUp 0.8s var(--ease) 0.3s both; }
body.hero-ready .hero-sub { animation: hUp 0.8s var(--ease) 0.48s both; }
body.hero-ready .hero-actions { animation: hUp 0.8s var(--ease) 0.64s both; }
body.hero-ready .hero-trust { animation: hUp 0.8s var(--ease) 0.8s both; }
body.hero-ready .hero-collage { animation: hCollage 1s var(--ease) 0.2s both; }
body.hero-ready .collage-main { animation: hClip 1.1s var(--ease) 0.42s both; }
body.hero-ready .collage-photo-1 { animation: hPhoto1 0.9s var(--ease) 0.68s both; }
body.hero-ready .collage-photo-2 { animation: hPhoto2 0.9s var(--ease) 0.82s both; }
/* PENTING: animasi masuk (entrance) DAN animasi mengapung (loop) dijalankan
   berdampingan dalam satu shorthand, dipisah koma. Sebelumnya rule
   `body.hero-ready` menimpa `chipFloat`/`iconFloat` sehingga elemen membeku
   di frame terakhir. Delay diberikan dua nilai: [entrance, loop]. */
body.hero-ready .collage-card-year { animation: hCard 0.9s var(--ease) both, chipFloat 6s ease-in-out infinite; animation-delay: 1.05s, 1.95s; }

body.hero-ready .float-chip { animation: hChip 0.7s var(--ease) both, chipFloat 5.6s ease-in-out infinite; }
body.hero-ready .float-chip.chip-1 { animation-delay: 0.95s, 1.65s; }
body.hero-ready .float-chip.chip-2 { animation-delay: 1.05s, 1.95s; }
body.hero-ready .float-chip.chip-3 { animation-delay: 1.15s, 2.25s; }
body.hero-ready .float-chip.chip-4 { animation-delay: 1.25s, 2.55s; }
body.hero-ready .float-chip.chip-5 { animation-delay: 1.35s, 2.85s; }
body.hero-ready .float-chip.chip-6 { animation-delay: 1.45s, 3.15s; }

body.hero-ready .float-icon { animation: hIcon 0.8s var(--ease) both, iconFloat 9s ease-in-out infinite; }
body.hero-ready .float-icon-1 { animation-delay: 1s, 1.8s; }
body.hero-ready .float-icon-2 { animation-delay: 1.1s, 2.4s; }
body.hero-ready .float-icon-3 { animation-delay: 1.2s, 3s; }
body.hero-ready .float-icon-4 { animation-delay: 1.3s, 3.6s; }
body.hero-ready .hero-metrics { animation: hUp 0.9s var(--ease) 1.15s both; }

@keyframes hBadge {
  from { opacity: 0; transform: translateY(-14px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hCollage {
  from { opacity: 0; transform: scale(0.94) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes hClip {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}
@keyframes hPhoto1 {
  from { opacity: 0; transform: translateY(34px) scale(0.88) rotate(-3.2deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotate(-3.2deg); }
}
@keyframes hPhoto2 {
  from { opacity: 0; transform: translateY(30px) scale(0.88) rotate(2.8deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotate(2.8deg); }
}
@keyframes hCard {
  from { opacity: 0; transform: translateY(34px) scale(0.88); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hChip {
  from { opacity: 0; transform: translateY(18px) scale(0.85); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hIcon {
  from { opacity: 0; transform: scale(0.4) rotate(-40deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* hero collage */
.hero-collage { position: relative; padding: 30px 6px 70px; will-change: transform; }
.hero-collage img { object-fit: cover; }

.collage-circuit {
  position: absolute;
  top: -8%; left: -4%;
  width: 108%; height: 116%;
  opacity: 0.55;
  pointer-events: none;
}
.collage-circuit path {
  stroke: rgba(37, 99, 235, 0.3);
  stroke-width: 1.5;
  stroke-dasharray: 5 9;
  fill: none;
  animation: lineDash 6s linear infinite;
}

.collage-orbit {
  position: absolute;
  border: 1.6px dashed rgba(37, 99, 235, 0.26);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-1 { width: 104%; aspect-ratio: 1; top: -6%; left: -2%; animation: spinSlow 52s linear infinite; }
.orbit-2 { width: 86%; aspect-ratio: 1; bottom: 6%; right: -8%; border-color: rgba(6, 182, 212, 0.28); animation: spinSlow 38s linear infinite reverse; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.collage-main {
  position: relative;
  z-index: 1;
  width: 76%;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-lg);
}
.collage-main img { width: 100%; aspect-ratio: 4 / 3.2; transition: transform 0.9s var(--ease); }
.hero-collage:hover .collage-main img { transform: scale(1.045); }

.collage-tag {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 2;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(11, 18, 32, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  padding: 7px 15px;
}
.collage-tag-top { top: 14px; bottom: auto; }

.collage-photo {
  position: absolute;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.22);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.collage-photo:hover { transform: translateY(-6px) !important; box-shadow: 0 30px 60px rgba(37, 99, 235, 0.3); }
.collage-photo img { width: 100%; aspect-ratio: 4 / 3; }

.collage-photo-1 { width: 40%; bottom: 4%; left: -14px; transform: rotate(-3.2deg); }
.collage-photo-2 { width: 34%; top: 4%; right: 2%; transform: rotate(2.8deg); }
.collage-photo-2 img { aspect-ratio: 16 / 10; }

.collage-card-year {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  padding: 13px 20px;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.2);
  animation: chipFloat 6s ease-in-out infinite;
}
.collage-card-year strong {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.collage-card-year span { font-size: 0.74rem; color: var(--muted); max-width: 110px; line-height: 1.35; }

.float-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 100px;
  padding: 9px 16px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
  animation: chipFloat 5.6s ease-in-out infinite;
  white-space: nowrap;
}
.float-chip svg { width: 16px; height: 16px; color: var(--blue); }
/* Posisi chip disusun ulang: setiap chip punya "lorong" sendiri dengan
   jarak bersih >= 16px terhadap chip/ikon lain, .collage-tag, dan
   .collage-card-year — termasuk saat animasi chipFloat naik 10px.
   Titik tabrakan lama (chip-4 x chip-6 x collage-card-year di pojok
   kanan-bawah) kini terpisah: chip-4 dan chip-6 pindah ke sisi kanan-tengah,
   pojok kanan-bawah dibiarkan kosong untuk kartu tahun 2010. */
.chip-1 { top: 34%; left: -6px; animation-delay: 0s; }
.chip-2 { top: 42%; right: -10px; animation-delay: -1.4s; }
.chip-3 { bottom: 8%; left: -6px; animation-delay: -2.8s; }
.chip-4 { top: 44%; right: 24%; animation-delay: -4.2s; }
.chip-5 { top: 4%; right: 36%; animation-delay: -3.4s; }
.chip-6 { bottom: 26%; right: 18%; animation-delay: -1.9s; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-icon {
  position: absolute;
  z-index: 2;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.13);
  animation: iconFloat 9s ease-in-out infinite;
}
.float-icon svg { width: 21px; height: 21px; color: var(--blue); }
.float-icon-1 { top: 27%; left: 30%; animation-delay: 0s; }
.float-icon-2 { top: 58%; right: -4px; animation-delay: -2.2s; }
.float-icon-3 { top: 56%; left: 6px; animation-delay: -4.4s; }
.float-icon-4 { bottom: 3%; left: 26%; animation-delay: -6.6s; }
.float-icon-2 svg { color: var(--teal); }
.float-icon-3 svg { color: var(--orange); }
.float-icon-4 svg { color: var(--cyan); }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(9deg); }
}

/* hero metrics */
.hero-metrics {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1.35fr;
  gap: 8px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 24px;
  padding: 22px 26px;
  box-shadow: 0 26px 60px rgba(37, 99, 235, 0.16);
  margin-top: 64px;
}
.metric { display: flex; flex-direction: column; gap: 2px; padding: 4px 18px; border-left: 1px solid rgba(15, 23, 42, 0.08); }
.metric:first-child { border-left: none; }
.metric-num {
  font-family: var(--font-head);
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.metric-label { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.metric-cta { justify-content: center; }
.metric-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  background: var(--grad-navy);
  border-radius: 100px;
  padding: 13px 22px;
  box-shadow: 0 12px 30px rgba(11, 18, 32, 0.35);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.metric-cta-link svg { width: 17px; height: 17px; transition: transform 0.28s var(--ease); }
.metric-cta-link:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(11, 18, 32, 0.45); }
.metric-cta-link:hover svg { transform: translateX(3px); }

/* ---------- Marquee (L1 ambient — lambat) ---------- */
.marquee-wrap {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
  overflow: hidden;
  position: relative;
}
.marquee-wrap::before, .marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }

.marquee { display: flex; width: max-content; animation: marqueeMove 62s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee-track { display: flex; align-items: center; gap: 46px; padding-right: 46px; flex-shrink: 0; }
.marquee-track span {
  position: relative;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track span::before {
  content: "";
  position: absolute;
  left: -26px; top: 50%;
  width: 7px; height: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--grad-warm);
}
@keyframes marqueeMove { to { transform: translateX(-50%); } }

/* ---------- Kenapa PKL di Depoinovasi? ---------- */
.why {
  background: #fff;
  overflow: clip;
}
.why-decor { position: absolute; inset: 0; pointer-events: none; }
.why-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.why-blob-1 { width: 420px; height: 420px; top: -120px; right: -140px; background: radial-gradient(circle, rgba(6, 182, 212, 0.24), transparent 70%); animation: blobFloat 20s ease-in-out infinite alternate; }
.why-grid-faint {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 100% 0%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 100% 0%, #000 20%, transparent 100%);
}

.why-head { max-width: 860px; margin-bottom: 56px; }
.why-statement {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--muted);
  margin-bottom: 10px;
}
.why-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.benefit-editorial {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.benefit-lead {
  position: sticky;
  top: 120px;
  padding: 30px 0 0;
}
.benefit-lead-num {
  display: block;
  font-family: var(--font-head);
  font-size: 5.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
.benefit-lead p { color: var(--muted); font-size: 1.02rem; max-width: 320px; }
.benefit-lead p strong { color: var(--text); }

.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.benefit-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}
.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(37, 99, 235, 0.09), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.benefit-card:hover::before { opacity: 1; }

/* variasi interaksi kartu — satu motion language, perilaku berbeda */
.bfx-lift:hover { transform: translateY(-8px); border-color: rgba(37, 99, 235, 0.32); box-shadow: var(--shadow-md); }
.bfx-scale:hover { transform: scale(1.03); border-color: rgba(6, 182, 212, 0.4); box-shadow: 0 22px 50px rgba(6, 182, 212, 0.16); }
.bfx-glow:hover { box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08), 0 24px 56px rgba(37, 99, 235, 0.2); border-color: rgba(37, 99, 235, 0.4); }
.bfx-border { position: relative; }
.bfx-border::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 2px solid transparent;
  background: linear-gradient(120deg, var(--blue), var(--cyan)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.bfx-border:hover::after { opacity: 1; }

.benefit-num {
  position: absolute;
  top: 14px; right: 22px;
  font-family: var(--font-head);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(37, 99, 235, 0.12);
  -webkit-text-stroke: 1px rgba(37, 99, 235, 0.28);
  -webkit-text-fill-color: transparent;
  user-select: none;
}

.benefit-icon {
  position: relative;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.12));
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: 17px;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease), background 0.4s ease;
}
.benefit-icon svg { width: 26px; height: 26px; color: var(--blue); }
.benefit-card:hover .benefit-icon { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.benefit-card:hover .benefit-icon svg { color: #fff; }

.benefit-card h3 { font-family: var(--font-head); font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; }
.benefit-card p { color: var(--muted); font-size: 0.94rem; }

.why-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 72px;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.06), rgba(6, 182, 212, 0.07));
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 24px;
  padding: 26px 34px;
}
.why-cta p { color: var(--muted); font-size: 1rem; max-width: 620px; }
.why-cta p strong { color: var(--text); }

/* ---------- Ikon dengan gerakan (L3 — interaction & idle) ---------- */
.icon-bounce { animation: iconBounce 3.2s ease-in-out infinite; }
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.icon-pulse { animation: iconPulse 2.6s ease-in-out infinite; }
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
.icon-float { animation: iconFloat 5s ease-in-out infinite; }
.icon-spin-slow { animation: iconSpinSlow 12s linear infinite; }
@keyframes iconSpinSlow { to { transform: rotate(360deg); } }
.icon-blink { animation: iconBlink 2.2s steps(1) infinite; }
@keyframes iconBlink {
  0%, 72% { opacity: 1; }
  74%, 100% { opacity: 0.45; }
}
.icon-wiggle { animation: iconWiggle 4.4s ease-in-out infinite; }
@keyframes iconWiggle {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-8deg); }
  20%, 40% { transform: rotate(8deg); }
}
.icon-spin-hover { animation: iconSpinHover 3.4s ease-in-out infinite; }
@keyframes iconSpinHover {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(-16deg) scale(1.1); }
}

/* ---------- Panah & tautan (L3 — nudge idle, berhenti saat hover) ---------- */
.nudge svg { animation: arrowNudge 1.7s ease-in-out infinite; }
.nudge:hover svg, .nudge:focus-visible svg { animation: none; }
@keyframes arrowNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
@keyframes arrowNudgeDiag {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(3px, -3px); }
}

/* ---------- Ikon WhatsApp pada semua CTA (L3 — idle, berhenti saat hover) ----------
   Sebelumnya hanya beberapa tautan berpanah yang punya animasi (.nudge),
   sedangkan tombol WhatsApp diam. Kelas ini menyeragamkannya. */
.wa-nudge svg { transform-origin: center; animation: waNudge 3.4s ease-in-out infinite; }
.wa-nudge:hover svg, .wa-nudge:focus-visible svg { animation: none; }
@keyframes waNudge {
  0%, 58%, 100% { transform: scale(1) rotate(0deg); }
  64% { transform: scale(1.12) rotate(-9deg); }
  70% { transform: scale(1.12) rotate(9deg); }
  76% { transform: scale(1.08) rotate(-5deg); }
  82% { transform: scale(1) rotate(0deg); }
}

/* ---------- Micro-interaction kartu ---------- */
.persona-card:hover .persona-icon svg { transform: scale(1.14) rotate(-4deg); transition: transform 0.35s var(--ease); }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.32) 50%, transparent 58%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
  pointer-events: none;
  z-index: 1;
}
.gallery-item:hover::after { transform: translateX(130%); }
.gallery-item:hover .gallery-zoom svg { transform: rotate(90deg); transition: transform 0.4s var(--ease); }

.mitra-badge { transition: transform 0.35s var(--ease); }
.mitra-item:hover .mitra-badge { transform: rotate(-6deg) scale(1.08); }

/* ---------- Teknologi (bento grid) ---------- */
.techs { background: var(--bg); overflow: clip; }
.techs-decor { position: absolute; inset: 0; pointer-events: none; }
.dots-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(37, 99, 235, 0.2) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 55% 55% at 0% 0%, #000 15%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 55% 55% at 0% 0%, #000 15%, transparent 100%);
}
.grid-drift-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 55% at 100% 100%, #000 15%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 100% 100%, #000 15%, transparent 100%);
  animation: gridDrift 60s linear infinite;
}
.techs-blob {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3), transparent 70%);
  bottom: -160px; left: -160px;
  animation: blobFloat 22s ease-in-out infinite alternate;
}

.techs-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.06), rgba(6, 182, 212, 0.07));
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 24px;
  padding: 26px 34px;
}
.techs-cta p { color: var(--muted); font-size: 1rem; max-width: 620px; }
.techs-cta p strong { color: var(--text); }

/* ============================================================
   Bento Teknologi — konsep visual: setiap bidang punya warna
   aksen sendiri + motif latar tipis yang relevan (jalur sirkuit,
   grid/ladder, garis layer cetak, busur toolpath, scan-line),
   memakai bahasa visual yang sama dengan hero.
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: 18px;
}

/* --- palet aksen per bidang --- */
.tone-blue   { --t1: #2563EB; --t2: #06B6D4; }
.tone-cyan   { --t1: #0891B2; --t2: #22D3EE; }
.tone-teal   { --t1: #0D9488; --t2: #34D399; }
.tone-indigo { --t1: #4F46E5; --t2: #818CF8; }
.tone-amber  { --t1: #D97706; --t2: #FBBF24; }
.tone-orange { --t1: #EA580C; --t2: #FB923C; }
.tone-violet { --t1: #7C3AED; --t2: #C084FC; }
.tone-sky    { --t1: #0284C7; --t2: #38BDF8; }

.bento-item {
  position: relative;
  isolation: isolate;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s ease;
}
.bento-item.is-tilting { transition: transform 0.12s linear, box-shadow 0.45s var(--ease), border-color 0.45s ease; }
.bento-item:hover { box-shadow: 0 26px 60px color-mix(in srgb, var(--t1) 26%, transparent); border-color: color-mix(in srgb, var(--t1) 34%, transparent); }

/* garis aksen tipis di sisi atas kartu, memanjang saat hover */
.bento-item::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--t1), var(--t2));
  transform: scaleX(0.16);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
  z-index: 4;
}
.bento-item:hover::after { transform: scaleX(1); }

.bento-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
}
.bento-body { flex: 1 1 auto; }
.bento-foot { margin-top: auto; }

/* --- motif latar tipis per bidang --- */
.bento-motif {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  color: var(--t1);
  transition: opacity 0.5s ease, transform 0.9s var(--ease);
}
.bento-item:hover .bento-motif { opacity: 0.85; }

.motif-circuit .bento-motif {
  background-image:
    repeating-linear-gradient(0deg, color-mix(in srgb, var(--t2) 18%, transparent) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--t2) 18%, transparent) 0 1px, transparent 1px 26px);
  mask-image: radial-gradient(ellipse 90% 90% at 82% 88%, #000 10%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 82% 88%, #000 10%, transparent 78%);
}
.motif-chip .bento-motif {
  background-image:
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--t1) 22%, transparent) 0 1px, transparent 1px 13px),
    repeating-linear-gradient(0deg, color-mix(in srgb, var(--t1) 14%, transparent) 0 1px, transparent 1px 13px);
  mask-image: radial-gradient(circle at 100% 0%, #000 6%, transparent 62%);
  -webkit-mask-image: radial-gradient(circle at 100% 0%, #000 6%, transparent 62%);
}
.motif-dots .bento-motif {
  background-image: radial-gradient(color-mix(in srgb, var(--t1) 40%, transparent) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse 80% 90% at 100% 10%, #000 4%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 100% 10%, #000 4%, transparent 70%);
}
/* PLC: rel ladder-diagram (dua rel tegak + rung mendatar) */
.motif-grid .bento-motif {
  background-image:
    repeating-linear-gradient(0deg, color-mix(in srgb, var(--t1) 26%, transparent) 0 1.5px, transparent 1.5px 30px),
    linear-gradient(90deg, transparent 14px, color-mix(in srgb, var(--t1) 40%, transparent) 14px 16px, transparent 16px),
    linear-gradient(270deg, transparent 14px, color-mix(in srgb, var(--t1) 40%, transparent) 14px 16px, transparent 16px);
  mask-image: linear-gradient(200deg, transparent 26%, #000 100%);
  -webkit-mask-image: linear-gradient(200deg, transparent 26%, #000 100%);
}
/* 3D Printing: garis layer cetak yang menumpuk */
.motif-layers .bento-motif {
  background-image: repeating-linear-gradient(0deg, color-mix(in srgb, var(--t1) 30%, transparent) 0 1.5px, transparent 1.5px 8px);
  mask-image: linear-gradient(0deg, #000 0%, transparent 58%);
  -webkit-mask-image: linear-gradient(0deg, #000 0%, transparent 58%);
}
/* CNC: busur toolpath konsentris */
.motif-arcs .bento-motif {
  background-image: repeating-radial-gradient(circle at 100% 100%, transparent 0 24px, color-mix(in srgb, var(--t1) 30%, transparent) 24px 25.5px);
  mask-image: radial-gradient(circle at 100% 100%, #000 8%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at 100% 100%, #000 8%, transparent 76%);
}
.motif-code .bento-motif {
  background-image: repeating-linear-gradient(135deg, color-mix(in srgb, var(--t1) 24%, transparent) 0 1.5px, transparent 1.5px 12px);
  mask-image: radial-gradient(ellipse 70% 110% at 100% 50%, #000 4%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 110% at 100% 50%, #000 4%, transparent 72%);
}
/* Image Processing: raster scan-line + bar pemindai yang bergerak */
.motif-scanlines .bento-motif {
  background-image: repeating-linear-gradient(0deg, color-mix(in srgb, var(--t1) 22%, transparent) 0 1.5px, transparent 1.5px 6px);
  mask-image: radial-gradient(ellipse 76% 120% at 100% 50%, #000 4%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 76% 120% at 100% 50%, #000 4%, transparent 76%);
}
.motif-scanlines::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 46px;
  z-index: 1;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--t2) 26%, transparent), transparent);
  animation: bentoScan 6.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bentoScan {
  0%, 100% { top: -10%; opacity: 0; }
  12% { opacity: 1; }
  50% { top: 92%; }
  88% { opacity: 1; }
}

/* sorotan mengikuti kursor */
.bento-spot {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--t2) 22%, transparent), transparent 68%);
  transition: opacity 0.4s ease;
}
.bento-item:hover .bento-spot { opacity: 1; }

/* kilau border yang menyapu saat hover */
.bento-sheen {
  position: absolute;
  inset: -1px;
  z-index: 2;
  pointer-events: none;
  border-radius: 26px;
  padding: 1.5px;
  background: conic-gradient(from var(--sheen, 0deg), transparent 0deg, color-mix(in srgb, var(--t2) 85%, transparent) 40deg, transparent 110deg, transparent 360deg);
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.bento-item:hover .bento-sheen { opacity: 1; animation: sheenSpin 2.6s linear infinite; }
@property --sheen { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes sheenSpin { to { --sheen: 360deg; } }

/* --- kepala kartu --- */
.bento-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.bento-ico {
  width: 54px; height: 54px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, color-mix(in srgb, var(--t1) 14%, transparent), color-mix(in srgb, var(--t2) 20%, transparent));
  border: 1px solid color-mix(in srgb, var(--t1) 28%, transparent);
  border-radius: 17px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.45s var(--ease), background 0.45s ease, box-shadow 0.45s ease;
}
.bento-ico svg { width: 26px; height: 26px; color: var(--t1); transition: color 0.4s ease, transform 0.5s var(--ease); }
.bento-item:hover .bento-ico {
  background: linear-gradient(140deg, var(--t1), var(--t2));
  transform: translateY(-4px) rotate(-6deg);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--t1) 40%, transparent);
}
.bento-item:hover .bento-ico svg { color: #fff; transform: scale(1.06); }

.bento-serial {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: color-mix(in srgb, var(--t1) 60%, transparent);
}

.bento-item h3 {
  font-family: var(--font-head);
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 9px;
}
.bento-item p { color: var(--muted); font-size: 0.89rem; line-height: 1.65; max-width: 58ch; }

/* --- pil tech-stack (interaktif) --- */
.bento-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--t1) 16%, transparent);
}
.bento-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--t1) 88%, #0B1220);
  background: color-mix(in srgb, var(--t1) 8%, #fff);
  border: 1px solid color-mix(in srgb, var(--t1) 20%, transparent);
  border-radius: 100px;
  padding: 6px 12px 6px 10px;
  cursor: default;
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.bento-pill i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--t1), var(--t2));
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.bento-pill:hover {
  transform: translateY(-3px);
  background: linear-gradient(120deg, var(--t1), var(--t2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--t1) 34%, transparent);
}
.bento-pill:hover i { background: #fff; transform: scale(1.3); }

/* --- kartu showcase (Robotics), tema gelap --- */
.b-lead { grid-column: span 7; }
.b-w5 { grid-column: span 5; }
.b-w4 { grid-column: span 4; }
.b-w6 { grid-column: span 6; }

.is-dark {
  background: var(--grad-navy);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 34px 70px rgba(11, 18, 32, 0.36);
}
.is-dark p { color: rgba(203, 213, 225, 0.85); }
.is-dark .bento-serial { color: rgba(125, 211, 252, 0.7); }
.is-dark .bento-ico { background: rgba(255, 255, 255, 0.08); border-color: rgba(125, 211, 252, 0.3); }
.is-dark .bento-ico svg { color: #7DD3FC; }
.is-dark .bento-pills { border-top-color: rgba(255, 255, 255, 0.14); }
.is-dark .bento-pill {
  color: #BAE6FD;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(125, 211, 252, 0.26);
}
.is-dark .bento-pill:hover { color: #06202F; background: linear-gradient(120deg, #7DD3FC, #22D3EE); }
.is-dark .bento-motif { opacity: 0.7; }

.b-lead { background: linear-gradient(150deg, #0B1220 0%, #13243F 48%, #1B3A78 100%); }
.b-lead .bento-inner { padding: 34px; gap: 26px; }
/* scrim tipis di belakang teks agar kontras tetap aman di atas sirkuit */
.b-lead .bento-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(104deg, rgba(11, 18, 32, 0.9) 0%, rgba(11, 18, 32, 0.6) 44%, rgba(11, 18, 32, 0) 74%);
  pointer-events: none;
}
.b-lead h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.b-lead p { font-size: 0.97rem; max-width: 54ch; }
.b-lead .bento-ico { width: 64px; height: 64px; border-radius: 20px; }
.b-lead .bento-ico svg { width: 30px; height: 30px; }
.b-lead .bento-serial { font-size: 0.82rem; }
.b-lead .bento-pill { font-size: 0.76rem; padding: 8px 14px 8px 12px; }

/* sirkuit animasi khusus kartu showcase */
.bento-circuit {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
  /* sirkuit dipusatkan ke sisi kanan-bawah supaya tidak mengganggu teks */
  mask-image: radial-gradient(ellipse 96% 118% at 104% 96%, #000 6%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 96% 118% at 104% 96%, #000 6%, transparent 74%);
}
/* jalur dasar samar + satu "pulsa" sinyal yang berjalan di atasnya */
.bento-circuit .bc-trace path {
  stroke: rgba(125, 211, 252, 0.24);
  stroke-width: 1.4;
  fill: none;
}
.bento-circuit .bc-pulse path {
  stroke: rgba(56, 189, 248, 0.9);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-dasharray: 22 300;
  fill: none;
  animation: bcPulse 5.4s linear infinite;
}
.bento-circuit .bc-pulse path:nth-child(2) { animation-delay: -1.1s; }
.bento-circuit .bc-pulse path:nth-child(3) { animation-delay: -2.2s; }
.bento-circuit .bc-pulse path:nth-child(4) { animation-delay: -3.3s; }
.bento-circuit .bc-pulse path:nth-child(5) { animation-delay: -4.4s; }
@keyframes bcPulse { to { stroke-dashoffset: -322; } }
.bento-circuit .bc-node circle { fill: rgba(34, 211, 238, 0.75); animation: bcNodePulse 3.4s ease-in-out infinite; }
.bento-circuit .bc-node circle:nth-child(2) { animation-delay: 0.45s; }
.bento-circuit .bc-node circle:nth-child(3) { animation-delay: 0.9s; }
.bento-circuit .bc-node circle:nth-child(4) { animation-delay: 1.35s; }
.bento-circuit .bc-node circle:nth-child(5) { animation-delay: 1.8s; }
.bento-circuit .bc-node circle:nth-child(6) { animation-delay: 2.25s; }
.bento-circuit .bc-node circle:nth-child(7) { animation-delay: 2.7s; }
.bento-circuit .bc-pad rect { fill: rgba(125, 211, 252, 0.07); stroke: rgba(125, 211, 252, 0.34); stroke-width: 1.2; }
@keyframes bcNodePulse {
  0%, 100% { opacity: 0.3; r: 2.8px; }
  50% { opacity: 0.95; r: 4.4px; }
}

.has-scan .scanline {
  position: absolute;
  left: 0; right: 0;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.9), transparent);
  animation: scanMove 4.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scanMove {
  0% { top: 6%; opacity: 0; }
  8% { opacity: 1; }
  50% { top: 94%; }
  92% { opacity: 1; }
  100% { top: 6%; opacity: 0; }
}

/* --- fallback bila color-mix tidak didukung --- */
@supports not (color: color-mix(in srgb, red 50%, blue)) {
  .bento-item:hover { border-color: rgba(37, 99, 235, 0.32); box-shadow: var(--shadow-md); }
  .bento-pill { color: var(--text); background: rgba(37, 99, 235, 0.06); border-color: rgba(37, 99, 235, 0.18); }
  .bento-pills { border-top-color: rgba(37, 99, 235, 0.18); }
  .bento-ico { background: rgba(37, 99, 235, 0.1); border-color: rgba(37, 99, 235, 0.2); }
  .bento-serial { color: rgba(37, 99, 235, 0.55); }
}

@media (prefers-reduced-motion: reduce) {
  .bento-circuit .bc-pulse path, .bento-circuit .bc-node circle,
  .has-scan .scanline, .motif-scanlines::before,
  .bento-item:hover .bento-sheen { animation: none !important; }
}

/* ---------- Galeri & Story ---------- */
.gallery-sec { background: var(--bg-soft); overflow: clip; }

/* Pemisah halus: setelah section "Pengalaman Nyata" dihapus, "Bidang Teknologi"
   (--bg) langsung bersebelahan dengan "Galeri Foto" (--bg-soft) yang warnanya
   sangat mirip. Garis batas tipis + transisi gradient menjaga batas tetap terbaca. */
.gallery-sec { border-top: 1px solid rgba(37, 99, 235, 0.12); }
.gallery-sec::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(247, 250, 252, 0) 100%);
  pointer-events: none;
  z-index: 0;
}
.gallery-sec::after {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: min(420px, 60%);
  height: 2px;
  background: var(--grad);
  border-radius: 100px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}
.gallery-sec > .container { position: relative; z-index: 2; }
.gallery-decor { position: absolute; inset: 0; pointer-events: none; }
.gallery-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; }
.gallery-blob-1 { width: 420px; height: 420px; top: 10%; left: -160px; background: radial-gradient(circle, rgba(37, 99, 235, 0.26), transparent 70%); animation: blobFloat 24s ease-in-out infinite alternate; }
.gallery-blob-2 { width: 380px; height: 380px; bottom: -120px; right: -140px; background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%); animation: blobFloat 26s ease-in-out infinite alternate-reverse; }

.photo-story {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 48px;
}
.story-block { padding: 10px 0; }
.story-kicker {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 12px;
}
.story-block h3 {
  font-family: var(--font-head);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.story-photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.story-photo:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.story-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.7s var(--ease); }
.story-photo:hover img { transform: scale(1.07); }

.gallery-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--navy-2);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(180deg, transparent 38%, rgba(11, 18, 32, 0.78));
  opacity: 0;
  transition: opacity 0.45s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cat {
  align-self: flex-start;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(37, 99, 235, 0.85);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 8px;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-cat { transform: translateY(0); }
.gallery-caption { color: #fff; font-size: 0.92rem; font-weight: 600; transform: translateY(8px); transition: transform 0.4s var(--ease); }
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-zoom {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  color: var(--navy);
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s ease;
}
.gallery-zoom svg { width: 18px; height: 18px; }
.gallery-item:hover .gallery-zoom { transform: scale(1); opacity: 1; }

/* ---------- Video ---------- */
.video-sec { background: #fff; overflow: clip; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }

.video-featured {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 7.4;
}
.video-featured img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.video-featured:hover img { transform: scale(1.05); }
.video-featured::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.1) 0%, rgba(11, 18, 32, 0.72) 100%);
  transition: background 0.4s ease;
}
.video-featured:hover::after { background: linear-gradient(180deg, rgba(11, 18, 32, 0.05) 0%, rgba(11, 18, 32, 0.55) 100%); }

.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 84px; height: 84px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  color: var(--blue);
  box-shadow: 0 18px 50px rgba(11, 18, 32, 0.45);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.video-play svg { width: 32px; height: 32px; margin-left: 4px; }
.video-featured:hover .video-play { transform: translate(-50%, -50%) scale(1.12); box-shadow: 0 24px 60px rgba(37, 99, 235, 0.5); }

.video-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 26px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
}
.video-label h3 { color: #fff; font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; line-height: 1.3; max-width: 70%; }
.video-label small {
  color: rgba(203, 213, 225, 0.85);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.video-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.video-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 0.7s var(--ease); }
.video-card:hover img { transform: scale(1.06); }
.video-card .video-play {
  width: 56px; height: 56px;
  box-shadow: 0 14px 36px rgba(11, 18, 32, 0.4);
}
.video-card .video-play svg { width: 22px; height: 22px; }
.video-card-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(11, 18, 32, 0.82));
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ---------- Personas: Kamu bisa PKL di bidang apa? ---------- */
.personas-sec { background: var(--bg); overflow: clip; }
.personas-decor { position: absolute; inset: 0; pointer-events: none; }
.dot-field {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(37, 99, 235, 0.22) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 60% 55% at 90% 10%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 90% 10%, #000 20%, transparent 100%);
}

.persona-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.persona-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
  overflow: hidden;
}
.persona-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.persona-card:hover::before { transform: scaleX(1); }
.persona-lift:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: rgba(37, 99, 235, 0.3); }
.persona-scale:hover { transform: scale(1.03); box-shadow: var(--shadow-md); border-color: rgba(6, 182, 212, 0.4); }

.persona-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.09), rgba(6, 182, 212, 0.13));
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 16px;
  margin-bottom: 18px;
  transition: transform 0.4s var(--ease), background 0.4s ease;
}
.persona-icon svg { width: 24px; height: 24px; color: var(--blue); }
.persona-card:hover .persona-icon { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.persona-card:hover .persona-icon svg { color: #fff; }

.persona-card h3 { font-family: var(--font-head); font-size: 1.04rem; font-weight: 700; margin-bottom: 8px; }
.persona-card p { color: var(--muted); font-size: 0.86rem; }

.persona-card-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--grad-navy);
  border-color: transparent;
  color: #fff;
}
.persona-card-cta h3 { color: #fff; font-size: 1.14rem; }
.persona-card-cta p { color: rgba(203, 213, 225, 0.82); }
.persona-card-cta .persona-icon { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.24); }
.persona-card-cta .persona-icon svg { color: #7DD3FC; }
.persona-card-cta:hover::before { background: linear-gradient(120deg, #7DD3FC, #22D3EE); }

.persona-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(120deg, var(--wa), var(--wa-dark));
  border-radius: 100px;
  padding: 12px 20px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  align-self: flex-start;
}
.persona-link svg { width: 17px; height: 17px; transition: transform 0.3s var(--ease); }
.persona-link:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(37, 211, 102, 0.5); }
.persona-link:hover svg { transform: translateX(3px); }

/* ---------- Mitra (Perguruan Tinggi & SMK) ---------- */
.mitra-sec { background: #fff; overflow: clip; }
.mitra-decor { position: absolute; inset: 0; pointer-events: none; }
.dot-field.slow { animation: gridDrift 80s linear infinite; }

.mitra-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.mitra-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.mitra-tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 11px 22px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}
.mitra-tab svg { width: 16px; height: 16px; }
.mitra-tab:hover { transform: translateY(-2px); }
.mitra-tab.active {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32);
}
.mitra-tab .tab-count {
  font-size: 0.72rem;
  background: rgba(15, 23, 42, 0.07);
  border-radius: 100px;
  padding: 2px 9px;
}
.mitra-tab.active .tab-count { background: rgba(255, 255, 255, 0.24); }

.mitra-search-box {
  position: relative;
  flex: 1;
  max-width: 360px;
  min-width: 250px;
}
.mitra-search-box svg {
  position: absolute;
  left: 17px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--muted);
  pointer-events: none;
}
.mitra-search-box input {
  width: 100%;
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 13px 18px 13px 46px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.mitra-search-box input:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.5);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.mitra-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mitra-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 40px 15px 17px;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.mitra-item:hover { background: #fff; border-color: rgba(37, 99, 235, 0.35); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.mitra-item:focus-visible { outline: 3px solid rgba(37, 99, 235, 0.5); outline-offset: 2px; }
.mitra-badge {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 13px;
}
.mitra-item.pt .mitra-badge { color: var(--blue); background: rgba(37, 99, 235, 0.1); border-color: rgba(37, 99, 235, 0.2); }
.mitra-item.smk .mitra-badge { color: var(--teal); background: rgba(20, 184, 166, 0.1); border-color: rgba(20, 184, 166, 0.26); }

/* --- badge berisi logo resmi institusi --- */
.mitra-badge {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-color: var(--line);
}
.mitra-badge img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4px;
  display: block;
}
/* fallback inisial: dipakai kalau tidak ada logo atau logo gagal dimuat */
.mitra-badge.is-fallback::after {
  content: attr(data-ini);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
}
.mitra-item.pt .mitra-badge.is-fallback { background: rgba(37, 99, 235, 0.1); border-color: rgba(37, 99, 235, 0.2); color: var(--blue); }
.mitra-item.smk .mitra-badge.is-fallback { background: rgba(20, 184, 166, 0.1); border-color: rgba(20, 184, 166, 0.26); color: var(--teal); }

/* logo besar di header modal detail */
.mm-head-row { display: flex; align-items: center; gap: 16px; }
.mm-head-row > div { min-width: 0; }
.mitra-badge-lg {
  width: 62px; height: 62px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 26px rgba(7, 12, 22, 0.32);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--blue);
}
.mitra-badge-lg img { width: 100%; height: 100%; object-fit: contain; padding: 6px; display: block; }
.mitra-badge-lg.is-fallback::after { content: attr(data-ini); font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; }
.mitra-name { font-size: 0.88rem; font-weight: 600; line-height: 1.35; color: var(--text); }
.mitra-type { font-size: 0.7rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.mitra-chev {
  position: absolute;
  right: 13px; top: 50%;
  transform: translateY(-50%) translateX(-5px);
  width: 20px; height: 20px;
  color: var(--blue);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}
.mitra-chev svg { width: 100%; height: 100%; }
.mitra-item:hover .mitra-chev { opacity: 1; transform: translateY(-50%) translateX(0); }

.mitra-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 64px 24px;
  background: var(--bg);
  border: 1.6px dashed rgba(37, 99, 235, 0.3);
  border-radius: 24px;
}
.mitra-empty.show { display: flex; animation: hUp 0.5s var(--ease) both; }
.mitra-empty-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 15px;
}
.mitra-empty-icon svg { width: 26px; height: 26px; color: var(--blue); opacity: 0.6; }
.mitra-empty strong { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; }
.mitra-empty p { color: var(--muted); font-size: 0.92rem; max-width: 440px; }
.mitra-empty .btn { margin-top: 8px; }

/* ---------- Credibility band ---------- */
.credibility {
  position: relative;
  background: var(--navy);
  padding: 84px 0;
  overflow: clip;
}
.cred-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 90% at 50% 50%, #000 25%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 90% at 50% 50%, #000 25%, transparent 100%);
  pointer-events: none;
}
.cred-glow {
  position: absolute;
  width: 460px; height: 460px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: blobFloat 20s ease-in-out infinite alternate;
}

.cred-head { text-align: center; margin-bottom: 44px; }
.cred-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #fff;
}
.cred-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 34px 20px;
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease), background 0.4s ease, border-color 0.4s ease;
}
.cred-item:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.08); border-color: rgba(125, 211, 252, 0.4); }
.cred-num {
  font-family: var(--font-head);
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, #7DD3FC, #22D3EE);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cred-label { font-size: 0.86rem; color: rgba(203, 213, 225, 0.8); max-width: 220px; }

/* ---------- Strip logo institusi berjalan (ambient, lambat) ---------- */
.logo-marquee-wrap {
  position: relative;
  margin: -18px 0 34px;
  padding: 14px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.logo-marquee-wrap::before, .logo-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 76px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee-wrap::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.logo-marquee-wrap::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }

.logo-marquee { display: flex; width: max-content; animation: marqueeMove 78s linear infinite; }
.logo-marquee:hover { animation-play-state: paused; }
.logo-marquee-track { display: flex; align-items: center; gap: 34px; padding-right: 34px; flex-shrink: 0; }

.logo-chip {
  flex-shrink: 0;
  width: 62px; height: 62px;
  display: grid;
  place-items: center;
}
.logo-chip img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s var(--ease);
}
.logo-chip:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.08); }

/* ---------- Logo mengapung di section "Jejak yang Tercatat" ---------- */
.cred-logos { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.cred-logo {
  position: absolute;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 15px;
  /* pelat terang tipis supaya logo gelap tetap terbaca di latar navy */
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 24px rgba(2, 8, 20, 0.35);
  opacity: 0.3;
  pointer-events: auto;
  /* animasi mengapung memakai keyframes yang sudah ada agar konsisten */
  animation: chipFloat 7s ease-in-out infinite;
  transition: opacity 0.4s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.cred-logo img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.4s ease;
}
.cred-logo:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(125, 211, 252, 0.55);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.35);
}
.cred-logo:hover img { filter: none; }

/* Posisi dijaga di kolom kiri & kanan pita judul (judul rata tengah),
   sehingga tidak pernah bertabrakan satu sama lain maupun dengan teks. */
.cred-logo-1 { top: 9%;  left: 2%;  animation-duration: 7.4s; animation-delay: 0.1s; }
.cred-logo-2 { top: 30%; left: 11%; animation-duration: 8.6s; animation-delay: 0.9s; }
.cred-logo-3 { top: 5%;  left: 20%; animation: iconFloat 9.4s ease-in-out 1.5s infinite; }
.cred-logo-4 { top: 8%;  right: 2%; animation-duration: 8s;   animation-delay: 0.5s; }
.cred-logo-5 { top: 30%; right: 11%; animation-duration: 7.8s; animation-delay: 1.3s; }
.cred-logo-6 { top: 5%;  right: 20%; animation: iconFloat 10s ease-in-out 2s infinite; }

/* Di tablet & ponsel ruang kosong di samping judul habis, jadi logo mengapung
   disembunyikan agar tidak pernah menimpa judul atau kartu angka. */
@media (max-width: 1180px) {
  .cred-logos { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee, .cred-logo { animation: none !important; }
}

/* ---------- International ---------- */
.intl {
  position: relative;
  background: linear-gradient(180deg, #EAF3FF 0%, #DCE9FB 100%);
  overflow: clip;
}
.intl-decor { position: absolute; inset: 0; pointer-events: none; }

.intl-map {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0.9;
}
.intl-map .intl-line path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-dasharray: 7 9;
  animation: lineDash 3.2s linear infinite;
}
.intl-node {
  fill: #fff;
  stroke: var(--blue);
  stroke-width: 3;
  animation: nodePulse 3s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.intl-node-core {
  fill: var(--blue);
  stroke: var(--blue-deep);
  animation-delay: -1.5s;
}
.intl-map circle:not(.intl-node) { fill: var(--cyan); opacity: 0.85; animation: nodePulse 2.6s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.intl-map circle:not(.intl-node):nth-of-type(2n) { animation-delay: -1.3s; }

.intl-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(37, 99, 235, 0.18) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 55% 60% at 75% 30%, #000 10%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 55% 60% at 75% 30%, #000 10%, transparent 100%);
}

.intl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.intl-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.intl-card:hover { transform: translateY(-8px); box-shadow: 0 38px 80px rgba(15, 23, 42, 0.22); }

.intl-media { position: relative; overflow: hidden; will-change: transform; }
.intl-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 0.8s var(--ease); }
.intl-card:hover .intl-media img { transform: scale(1.07); }
.intl-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 18, 32, 0.45));
}
.intl-flag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  background: rgba(11, 18, 32, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  padding: 8px 14px;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(11, 18, 32, 0.3);
}
.intl-flag small { font-size: 0.56rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 5px; opacity: 0.9; }
.intl-type {
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(37, 99, 235, 0.88);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 6px 13px;
}

.intl-body { padding: 28px; }
.intl-body h3 { font-family: var(--font-head); font-size: 1.24rem; font-weight: 700; margin-bottom: 12px; }
.intl-body > p { color: var(--muted); font-size: 0.94rem; margin-bottom: 16px; }

.intl-tags {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 100px;
  padding: 6px 13px;
}
.intl-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.intl-list li {
  position: relative;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--navy);
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 12px;
  padding: 9px 13px;
  padding-left: 30px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}
.intl-list li::before {
  content: "";
  position: absolute;
  left: 13px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad);
}
.intl-list li:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.intl-list li:hover::before { background: #fff; }

.intl-extra {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 24px;
  padding: 30px;
}
.intl-extra-media { border-radius: 18px; overflow: hidden; }
.intl-extra-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.intl-extra-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #7DD3FC;
  background: rgba(11, 18, 32, 0.9);
  border-radius: 100px;
  padding: 7px 15px;
  margin-bottom: 14px;
}
.intl-extra-text h3 { font-family: var(--font-head); font-size: 1.45rem; font-weight: 800; line-height: 1.3; margin-bottom: 12px; }
.intl-extra-text p { color: var(--muted); font-size: 0.95rem; margin-bottom: 22px; }
.intl-extra-text p strong { color: var(--blue); }

/* ---------- Journey: dari pertama menghubungi sampai selesai ---------- */
.journey { background: #fff; overflow: clip; }
.journey-decor { position: absolute; inset: 0; pointer-events: none; }
.journey-orb {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.32), transparent 70%);
  bottom: -160px; right: -120px;
  animation: blobFloat 22s ease-in-out infinite alternate-reverse;
}

.journey-track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; position: relative; }
.journey-track::before {
  content: "";
  position: absolute;
  top: 30px; left: 6%; right: 6%;
  height: 3px;
  background-image: repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.3) 0 9px, rgba(37, 99, 235, 0.07) 9px 26px);
  border-radius: 3px;
  z-index: 0;
  animation: flowLineX 3s linear infinite;
}
.journey-track::after {
  content: "";
  position: absolute;
  top: 30px; left: 6%; right: 6%;
  height: 3px;
  background-image: linear-gradient(90deg, var(--blue), var(--cyan), var(--blue));
  background-size: 52px 3px;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s var(--ease);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
  z-index: 1;
  animation: flowLineX 2.4s linear infinite;
}
.journey-track[data-progress="1"]::after { transform: scaleX(1); }

@keyframes flowLineX { to { background-position: 52px 0; } }

.journey-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 0 8px;
}
.journey-num {
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  background: #fff;
  border: 2.5px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(37, 99, 235, 0.12);
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s var(--ease), box-shadow 0.4s ease;
}
.journey-step.visible .journey-num { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 0 0 7px rgba(37, 99, 235, 0.16), 0 12px 30px rgba(37, 99, 235, 0.35); transform: translateY(-3px); }
.journey-step h4 { font-family: var(--font-head); font-size: 0.96rem; font-weight: 700; }
.journey-step p { color: var(--muted); font-size: 0.82rem; max-width: 150px; }

/* ---------- Final CTA ---------- */
.cta-final { position: relative; background: var(--bg); padding: 30px 0 110px; }
.cta-decor { position: absolute; inset: 0; pointer-events: none; overflow: clip; }

.cta-circuit {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
}
.cta-circuit path {
  stroke: rgba(37, 99, 235, 0.32);
  stroke-width: 1.6;
  stroke-dasharray: 6 10;
  fill: none;
  animation: lineDash 5s linear infinite;
}
.cta-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 20%, transparent 100%);
}
.cta-gear {
  position: absolute;
  right: 7%; top: 18%;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  color: rgba(37, 99, 235, 0.4);
  animation: iconSpinSlow 16s linear infinite;
}
.cta-gear svg { width: 100%; height: 100%; }
.cta-chip {
  position: absolute;
  left: 8%; bottom: 24%;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  color: rgba(6, 182, 212, 0.45);
  animation: iconFloat 7s ease-in-out infinite;
}
.cta-chip svg { width: 100%; height: 100%; }

.cta-panel {
  position: relative;
  background: var(--grad-navy);
  border-radius: 36px;
  padding: clamp(44px, 6vw, 72px);
  overflow: hidden;
  color: #fff;
  box-shadow: 0 44px 90px rgba(11, 18, 32, 0.4);
  text-align: center;
}
.cta-panel::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}
.cta-panel::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  top: -260px; right: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.75), transparent 70%);
  filter: blur(90px);
  animation: blobFloat 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.cta-eyebrow {
  position: relative;
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #7DD3FC;
  background: rgba(125, 211, 252, 0.1);
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 100px;
  padding: 8px 17px;
  margin-bottom: 22px;
}
.cta-title {
  position: relative;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.cta-desc {
  position: relative;
  color: rgba(203, 213, 225, 0.88);
  font-size: 1.02rem;
  max-width: 620px;
  margin: 0 auto 34px;
}
.cta-actions { position: relative; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cta-note {
  position: relative;
  margin-top: 34px;
  font-size: 0.84rem;
  color: rgba(203, 213, 225, 0.75);
}
.cta-note::before {
  content: "";
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--wa);
  margin-right: 9px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: badgePulse 2.2s ease-out infinite;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(203, 213, 225, 0.8);
  padding: 64px 0 0;
  position: relative;
  overflow: clip;
}
.footer::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, #000 30%, transparent 100%);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
}
.footer-brand .brand-logo { border-color: rgba(255, 255, 255, 0.12); }
.footer-brand strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.footer-brand > p { font-size: 0.9rem; margin-top: 18px; max-width: 340px; line-height: 1.7; }
.footer-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 22px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background: linear-gradient(120deg, var(--wa), var(--wa-dark));
  border-radius: 100px;
  padding: 10px 17px;
  min-height: 40px;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.footer-wa svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
}
.footer-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(37, 211, 102, 0.46); }

.footer h4 {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col > a { display: block; font-size: 0.9rem; padding: 6px 0; transition: color 0.25s ease, padding-left 0.25s var(--ease); }
.footer-col > a:hover { color: #fff; padding-left: 5px; }

.footer-prog {
  display: block;
  font-size: 0.9rem;
  padding: 6px 0;
  color: rgba(203, 213, 225, 0.8);
}
.footer-contact {
  display: flex;
  gap: 11px;
  font-size: 0.88rem;
  margin-bottom: 13px;
  align-items: flex-start;
  line-height: 1.6;
}
.footer-contact svg { width: 17px; height: 17px; color: #7DD3FC; flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { color: #7DD3FC; }

/* ---------- Floating WhatsApp ---------- */
#waFloat {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  border-radius: 100px;
  padding: 12px;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
}
.wa-float-icon {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.wa-float-icon svg { width: 24px; height: 24px; }
.wa-float-tip {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.4s var(--ease), opacity 0.3s ease, margin 0.4s var(--ease);
}
#waFloat:hover, #waFloat.expanded { padding: 12px 22px 12px 12px; transform: translateY(-4px); box-shadow: 0 22px 50px rgba(37, 211, 102, 0.62); }
#waFloat:hover .wa-float-tip, #waFloat.expanded .wa-float-tip { max-width: 220px; opacity: 1; margin-right: 6px; }
#waFloat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(37, 211, 102, 0.5);
  animation: badgePulse 2.4s ease-out infinite;
  z-index: -1;
}

/* ---------- Modals ---------- */
body.menu-open, body.modal-open { overflow: hidden; }

.modal,
.lightbox,
.video-modal,
.mitra-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open,
.lightbox.open,
.video-modal.open,
.mitra-modal.open { display: flex; }
.modal[aria-hidden="false"],
.lightbox[aria-hidden="false"],
.video-modal[aria-hidden="false"],
.mitra-modal[aria-hidden="false"] { display: flex; }
.lightbox.open > *, .video-modal.open > *, .mitra-modal.open > * { animation: modalPop 0.45s var(--ease) both; }

.lightbox {
  z-index: 1500;
  background: rgba(7, 12, 22, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 0.35s ease both;
}
.video-modal {
  z-index: 1500;
  background: rgba(7, 12, 22, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 0.35s ease both;
}
.mitra-modal {
  z-index: 1450;
  background: rgba(11, 18, 32, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 0.35s ease both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 5;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease;
}
.modal-close svg { width: 20px; height: 20px; }
.modal-close:hover { background: var(--navy); color: #fff; transform: rotate(90deg); }

/* lightbox */
.lb-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(1080px, 100%);
}
.lb-figure img {
  max-width: 100%;
  max-height: 74vh;
  border-radius: 18px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}
.lb-figure figcaption {
  text-align: center;
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.94rem;
  margin-top: 16px;
}
.lb-counter { font-size: 0.76rem; color: rgba(148, 163, 184, 0.8); margin-top: 4px; }

.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}
.lb-btn svg { width: 22px; height: 22px; }
.lb-btn:hover { background: var(--blue); transform: translateY(-50%) scale(1.08); }
.lb-close { top: 20px; right: 20px; transform: none; }
.lb-close:hover { transform: rotate(90deg); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* mitra modal */
.mitra-modal-box {
  position: relative;
  width: min(660px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 50px 100px rgba(11, 18, 32, 0.5);
}
.mm-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 5;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease;
}
.mm-close svg { width: 20px; height: 20px; }
.mm-close:hover { background: var(--navy); color: #fff; transform: rotate(90deg); }
.mm-head {
  position: relative;
  background: var(--grad-navy);
  color: #fff;
  padding: 30px 34px 24px;
  border-radius: 26px 26px 0 0;
}
.mm-head h3 { font-family: var(--font-head); font-size: 1.24rem; font-weight: 700; }
.mm-head .mm-sub { font-size: 0.85rem; color: rgba(203, 213, 225, 0.85); margin-top: 4px; }
.mm-body { padding: 26px 34px 32px; }
.mm-info { display: grid; gap: 12px; }
.mm-row { display: flex; align-items: flex-start; gap: 12px; font-size: 0.94rem; }
.mm-row svg { width: 19px; height: 19px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.mm-row strong { font-weight: 600; }
.mm-row small { display: block; color: var(--muted); font-size: 0.78rem; margin-top: 2px; }
.mm-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.mm-cta { width: 100%; margin-top: 4px; }

/* video modal */
.video-modal-box {
  position: relative;
  width: min(960px, 100%);
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
}
.video-frame { position: relative; padding-top: 56.25%; }
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-modal-box .vm-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 13px;
  color: var(--text);
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease;
}
.vm-close svg { width: 20px; height: 20px; }
.vm-close:hover { background: var(--navy); color: #fff; transform: rotate(90deg); }

/* ---------- Reveal system (L2 — scroll) ---------- */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--rd, 0s);
  will-change: opacity, transform;
}
[data-reveal="fade-up"] { transform: translateY(44px); }
[data-reveal="fade-right"] { transform: translateX(-52px); }
[data-reveal="fade-left"] { transform: translateX(52px); }
[data-reveal="zoom"] { transform: scale(0.88); }
[data-reveal].revealed { opacity: 1; transform: none; }

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal-stagger].revealed > * { opacity: 1; transform: none; }
[data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: 0.14s; }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: 0.23s; }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: 0.32s; }
[data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: 0.41s; }
[data-reveal-stagger].revealed > *:nth-child(6) { transition-delay: 0.5s; }
[data-reveal-stagger].revealed > *:nth-child(7) { transition-delay: 0.59s; }
[data-reveal-stagger].revealed > *:nth-child(8) { transition-delay: 0.68s; }
[data-reveal-stagger].revealed > *:nth-child(9) { transition-delay: 0.77s; }
[data-reveal-stagger].revealed > *:nth-child(10) { transition-delay: 0.86s; }
[data-reveal-stagger].revealed > *:nth-child(11) { transition-delay: 0.95s; }
[data-reveal-stagger].revealed > *:nth-child(12) { transition-delay: 1.04s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; }
  #scrollProgress { display: none; }
}

/* ---------- Restore hover-lift setelah reveal ----------
   (selector reveal lebih spesifik/lebih akhir dari hover kartu,
   sehingga transform hover dinyalakan ulang secara eksplisit) */
[data-reveal].revealed.benefit-card.bfx-lift:hover { transform: translateY(-8px); }
[data-reveal].revealed.benefit-card.bfx-scale:hover { transform: scale(1.03); }
[data-reveal].revealed.intl-card:hover { transform: translateY(-8px); }
[data-reveal].revealed.story-photo:hover { transform: translateY(-6px); }
/* .bento-item memakai transform inline dari initCardPointer() (tilt 3D),
   jadi tidak perlu rule pemulih hover di sini. Fallback tanpa pointer halus: */
@media (hover: hover) and (pointer: coarse) {
  [data-reveal-stagger].revealed > .bento-item:hover { transform: translateY(-6px); }
}
[data-reveal-stagger].revealed > .persona-card.persona-lift:hover { transform: translateY(-7px); }
[data-reveal-stagger].revealed > .persona-card.persona-scale:hover { transform: scale(1.03); }
[data-reveal-stagger].revealed > .gallery-item:hover { transform: translateY(-5px); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  /* navigasi jadi drawer agar tidak meluber di tablet */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(340px, 88vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: calc(var(--nav-h) + 28px) 28px 32px;
    box-shadow: -30px 0 70px rgba(11, 18, 32, 0.18);
    transform: translateX(105%);
    transition: transform 0.45s var(--ease);
    overflow-y: auto;
    z-index: 1200;
  }
  body.menu-open .nav-menu { transform: translateX(0); }
  .nav-link { font-size: 1.02rem; padding: 14px 16px; }
  .nav-link::after { display: none; }
  .btn-wa-nav { margin: 18px 0 0; justify-content: center; }

  .hero-shell { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero-collage { max-width: 620px; margin: 0 auto; width: 100%; }
  .hero-metrics { grid-template-columns: repeat(4, 1fr); }
  .metric-cta { grid-column: span 4; border-left: none; border-top: 1px solid rgba(15, 23, 42, 0.08); padding-top: 14px; align-items: flex-start; }
  .metric { border-left: none; padding: 6px 10px; }
  .metric:nth-child(2) { border-left: none; }
  .benefit-editorial { grid-template-columns: 1fr; gap: 20px; }
  .benefit-lead { position: static; }
  /* di tablet: kartu showcase melebar penuh, sisanya dua kolom */
  .bento { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .bento-item, .b-w4, .b-w5, .b-w6 { grid-column: span 1; grid-row: auto; }
  .b-lead { grid-column: 1 / -1; grid-row: auto; }
  .b-lead .bento-inner { padding: 28px; }
  .persona-grid { grid-template-columns: repeat(3, 1fr); }
  .mitra-grid { grid-template-columns: repeat(3, 1fr); }
  .intl-grid { grid-template-columns: 1fr; }
  /* Di tablet grid membungkus jadi 2 baris, sedangkan garis penghubung
     dipatok pada satu koordinat top relatif ke seluruh grid — hasilnya hanya
     baris pertama yang tersambung. Jadi garis disembunyikan begitu grid wrap. */
  .journey-track { grid-template-columns: repeat(3, 1fr); row-gap: 46px; }
  .journey-track::before, .journey-track::after { display: none; }
  .journey-step { gap: 16px; padding: 0 6px; }
  .journey-step p { max-width: 210px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-featured { grid-column: span 2; aspect-ratio: 16 / 8.6; }
  .photo-story { grid-template-columns: repeat(2, 1fr); }
  .gallery-bento { grid-auto-rows: 170px; }
}

@media (max-width: 768px) {
  .section { padding: 76px 0; }

  .hero { min-height: auto; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
  .metric-cta { grid-column: span 2; }
  .metric { align-items: flex-start; padding: 8px 12px; }
  .metric:nth-child(2) { border-left: 1px solid rgba(15, 23, 42, 0.08); }
  .metric:nth-child(4) { border-left: 1px solid rgba(15, 23, 42, 0.08); }

  .marquee-wrap::before, .marquee-wrap::after { width: 46px; }

  /* satu kolom di ponsel agar paragraf panjang tetap nyaman dibaca */
  .bento { grid-template-columns: 1fr; gap: 14px; }
  .bento-item, .b-lead, .b-w4, .b-w5, .b-w6 { grid-column: 1 / -1; grid-row: auto; }
  .bento-inner, .b-lead .bento-inner { padding: 22px; gap: 16px; }
  .b-lead h3 { font-size: 1.32rem; }

  .gallery-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .mitra-grid { grid-template-columns: repeat(2, 1fr); }
  .mitra-controls { flex-direction: column; align-items: stretch; }
  .mitra-search-box { max-width: none; }
  .cred-numbers { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .intl-grid { grid-template-columns: 1fr; }
  .intl-extra { grid-template-columns: 1fr; gap: 24px; }
  .journey-track { grid-template-columns: repeat(2, 1fr); }
  .journey-track::before, .journey-track::after { display: none; }
  .cta-panel { border-radius: 26px; padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  #waFloat { bottom: 20px; right: 20px; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.05rem; }
  .hero-trust { flex-wrap: wrap; }
  .hero-actions .btn { width: 100%; }
  .btn { white-space: normal; line-height: 1.4; padding: 14px 22px; font-size: 0.92rem; text-align: center; }
  .btn-lg { padding: 16px 24px; font-size: 0.98rem; }
  .btn-xl { padding: 17px 26px; font-size: 1rem; }
  .benefit-list { grid-template-columns: 1fr; }
  .benefit-lead-num { font-size: 4.2rem; }
  .why-cta, .techs-cta { padding: 22px 18px; }
  .why-cta .btn, .techs-cta .btn { width: 100%; }
  .persona-grid { grid-template-columns: 1fr; }
  .persona-link { align-self: stretch; justify-content: center; }
  .mitra-grid { grid-template-columns: 1fr; }
  .gallery-bento { grid-auto-rows: 150px; }
  .gallery-caption { font-size: 0.82rem; }
  .intl-list { grid-template-columns: 1fr; }
  .intl-extra { padding: 22px 18px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-featured { grid-column: span 1; aspect-ratio: 16 / 10; }
  .photo-story { grid-template-columns: 1fr; }
  .collage-photo-1 { width: 46%; left: -6px; }
  .collage-photo-2 { width: 38%; }
  .float-chip { font-size: 0.7rem; padding: 7px 12px; }
  /* label kolase dikecilkan supaya kedua tag tidak lagi saling menyentuh */
  .collage-tag { font-size: 0.63rem; padding: 6px 11px; letter-spacing: 0.05em; }
  .chip-2 { right: 0; }
  .chip-3 { left: 0; }
  /* Di ponsel .collage-tag melebar hampir seluruh kolase, jadi tiga elemen
     paling padat disembunyikan agar tidak ada area gerak yang bertabrakan. */
  .chip-5, .float-icon-1, .float-icon-4 { display: none; }
  .chip-4 { right: 24%; }
  .chip-6 { bottom: 26%; right: 18%; }
  .cta-actions .btn { width: 100%; }
  .hero-metrics { padding: 18px; }
  .mitra-modal-box .mm-head, .mitra-modal-box .mm-body { padding-left: 22px; padding-right: 22px; }
}


/* ---------- Requested targeted fixes ---------- */
/* Keep WhatsApp controls compact and aligned without changing the surrounding design. */
.wa-icon-svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  display: block;
}
.footer-wa .wa-icon-svg { width: 18px; height: 18px; flex: 0 0 18px; }
.persona-link .wa-icon-svg { width: 17px; height: 17px; }
.wa-nudge .wa-icon-svg { transform-origin: center; }

/* Make the International Experience intro text readable without using white text. */
.section-desc.light-desc {
  color: #334155;
  font-weight: 600;
  text-shadow: none;
}

/* Remove the blue connector line across steps 01–06. */
.journey-track::before,
.journey-track::after {
  display: none !important;
}
