:root {
  --primary: #0466c8;
  --primary-dark: #0353a4;
  --accent: #22d3ee;
  --accent-glow: rgba(34, 211, 238, 0.45);
  --neon: #38bdf8;
  --dark: #0b1220;
  --dark-2: #111827;
  --slate: #64748b;
  --light: #f0f4ff;
  --white: #ffffff;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --shadow: 0 25px 50px -12px rgba(4, 102, 200, 0.2);
  --shadow-glow: 0 0 40px rgba(34, 211, 238, 0.12), 0 25px 50px -12px rgba(4, 102, 200, 0.2);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --font: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Syne', 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --type-scale: calc(0.88 * 1.4);
  --text-boost: 1.4;
  --h1-unboost: calc(1 / var(--text-boost));
  --page-side: 10%;
  --page-gutter: var(--page-side);
  --page-content-width: 80%;
  --page-nav-width: 80%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.site-frontend {
  font-size: calc(100% * var(--type-scale));
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  body.futuristic-ui {
    line-height: 1.5;
  }

  .section-label {
    letter-spacing: 0.06em;
  }

  .hero-scroll {
    letter-spacing: 0.08em;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--dark-2);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.futuristic-ui {
  position: relative;
  background: linear-gradient(180deg, #fafbff 0%, #f0f4ff 40%, #ffffff 100%);
  overflow-x: clip;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body.futuristic-ui>main {
  position: relative;
  z-index: 1;
  padding-top: 0;
  overflow-x: clip;
  max-width: 100%;
}

body.futuristic-ui .nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

body.futuristic-ui .site-footer {
  position: relative;
  z-index: 2;
}

body.futuristic-ui .wa-float {
  z-index: 99;
}

/* Ambient grid & orbs (layout tidak berubah) */
.fx-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(4, 102, 200, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 102, 200, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 75%);
  opacity: 0.7;
}

.fx-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  animation: orb-drift 18s ease-in-out infinite alternate;
}

.fx-orb-1 {
  width: 420px;
  height: 420px;
  top: -8%;
  right: -5%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
}

.fx-orb-2 {
  width: 360px;
  height: 360px;
  bottom: 10%;
  left: -8%;
  background: radial-gradient(circle, rgba(4, 102, 200, 0.35), transparent 70%);
  animation-delay: -6s;
}

@keyframes orb-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(24px, -32px) scale(1.08);
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: var(--page-content-width);
  max-width: var(--page-content-width);
  margin-inline: auto;
  box-sizing: border-box;
}

/* Konten dalam area 80% memakai lebar penuh (bukan kolom sempit) */
body.futuristic-ui > main :is(
  .section-header .section-desc,
  .hero-lead,
  .page-hero .section-desc,
  .service-hero .container > p,
  .cta-band p,
  .cms-body,
  .cms-section-inner,
  .detail-grid,
  .detail-grid-single,
  .contact-wrap,
  .split-content,
  .about-split-text,
  .channel-banner-text,
  .vision-mission-layout,
  .vision-mission-desc,
  .adaptif-desc,
  .produk-hero-wrap,
  .produk-cta-inner,
  .produk-head-text,
  .section-about-bg .section-desc,
  .section-pkl .section-desc
) {
  max-width: 100%;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #0284c7, #0e7490);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(4, 102, 200, 0.35), 0 0 20px rgba(34, 211, 238, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-primary:hover {
  box-shadow: 0 14px 40px rgba(4, 102, 200, 0.45), 0 0 28px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: rgba(4, 102, 200, 0.06);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  backdrop-filter: blur(8px);
}

/* --- Nav (fixed — pill navbar saja) --- */
.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  background: transparent;
  transition: padding 0.3s;
}

.nav-shell.is-scrolled {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.nav-shell.nav-open {
  z-index: 120;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: var(--page-nav-width);
  max-width: 100%;
  margin-inline: auto;
  padding: 0.55rem 0.85rem 0.55rem 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(34, 211, 238, 0.08);
  border-radius: 999px;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav-shell.is-scrolled .nav-inner {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(34, 211, 238, 0.12);
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 0;
}

.nav-logo-text {
  font-family: var(--font-display, "Syne", system-ui, sans-serif);
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy, #0f2744);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-logo img {
  height: 40px;
  width: auto;
  max-width: min(200px, 38vw);
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  gap: 0.05rem;
}

.nav-links > a:not(.nav-cta-btn) {
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.nav-links > a:not(.nav-cta-btn):hover,
.nav-links > a:not(.nav-cta-btn).active {
  background: rgba(4, 102, 200, 0.1);
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(4, 102, 200, 0.08);
  color: var(--primary);
  cursor: pointer;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(4, 102, 200, 0.14);
}

.nav-toggle-icon {
  position: relative;
  display: block;
  width: 1.15rem;
  height: 0.85rem;
}

.nav-toggle-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s, opacity 0.2s, top 0.25s;
}

.nav-toggle-icon span:nth-child(1) { top: 0; }
.nav-toggle-icon span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle-icon span:nth-child(3) { top: calc(100% - 2px); }

.nav-shell.nav-open .nav-toggle-icon span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-shell.nav-open .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav-shell.nav-open .nav-toggle-icon span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-backdrop[hidden] {
  display: block;
}

.nav-mobile {
  position: fixed;
  z-index: 99;
  top: calc(env(safe-area-inset-top, 0px) + 4.75rem);
  left: max(var(--page-side), env(safe-area-inset-left, 0px));
  right: max(var(--page-side), env(safe-area-inset-right, 0px));
  max-height: calc(100dvh - env(safe-area-inset-top, 0px) - 5.25rem - env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(34, 211, 238, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.nav-shell.is-scrolled .nav-mobile {
  top: calc(env(safe-area-inset-top, 0px) + 4.35rem);
}

.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.nav-mobile-scroll {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-mobile-link {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.35;
  transition: background 0.15s, color 0.15s;
}

.nav-mobile-link:hover,
.nav-mobile-link.is-active {
  background: rgba(4, 102, 200, 0.08);
  color: var(--primary);
}

.nav-mobile-link-sub {
  padding-left: 1.5rem !important;
  font-size: 0.86rem !important;
  font-weight: 500 !important;
}

.nav-mobile-link-parent {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary) !important;
}

.nav-mobile-cta {
  margin-top: 0.35rem;
  text-align: center;
  background: var(--primary) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 18px rgba(4, 102, 200, 0.22);
}

.nav-mobile-cta:hover,
.nav-mobile-cta.is-active {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
}

.nav-mobile-group,
.nav-mobile-subgroup {
  border-radius: var(--radius);
  overflow: hidden;
}

.nav-mobile-group-toggle,
.nav-mobile-subgroup-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e293b;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.nav-mobile-subgroup-toggle {
  padding: 0.7rem 0.9rem 0.7rem 1.15rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
}

.nav-mobile-group-toggle span,
.nav-mobile-subgroup-toggle span {
  flex: 1;
  min-width: 0;
}

.nav-mobile-group-toggle svg,
.nav-mobile-subgroup-toggle svg {
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform 0.2s;
}

.nav-mobile-group.is-open > .nav-mobile-group-toggle,
.nav-mobile-subgroup.is-open > .nav-mobile-subgroup-toggle {
  background: rgba(4, 102, 200, 0.06);
  color: var(--primary);
}

.nav-mobile-group.is-open > .nav-mobile-group-toggle svg,
.nav-mobile-subgroup.is-open > .nav-mobile-subgroup-toggle svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.nav-mobile-group-panel,
.nav-mobile-subgroup-panel {
  display: none;
  padding: 0 0.35rem 0.35rem;
}

.nav-mobile-group.is-open > .nav-mobile-group-panel,
.nav-mobile-subgroup.is-open > .nav-mobile-subgroup-panel {
  display: block;
}

.nav-mobile-subgroup {
  margin: 0.15rem 0;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

@media (max-width: 1100px) {
  .nav-links > a:not(.nav-cta-btn),
  .nav-dropdown-toggle {
    padding-inline: 0.55rem;
    font-size: 0.78rem;
  }

  .nav-cta-btn {
    padding: 0.48rem 0.9rem !important;
    font-size: 0.78rem !important;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta-desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-inner {
    padding: 0.45rem 0.55rem 0.45rem 0.85rem;
  }
}

/* --- Hero (Spentera dark + Vodjo scroll cue) --- */
.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 2rem;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(4, 102, 200, 0.4), transparent),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(34, 211, 238, 0.2), transparent),
    linear-gradient(180deg, transparent 60%, rgba(11, 18, 32, 0.5) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, black 0%, transparent 85%);
  pointer-events: none;
  animation: grid-pulse 8s ease-in-out infinite;
}

@keyframes grid-pulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero h1,
.hero-immersive h1,
.hero-title {
  font-family: var(--font-display);
  font-size: calc(clamp(2.5rem, 6vw, 4rem) * var(--h1-unboost));
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

.hero h1 .gradient,
.hero-title .gradient {
  display: inline;
  background: linear-gradient(90deg, #60a5fa, var(--accent), #a78bfa);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.hero-lead {
  font-size: 1.15rem;
  color: #94a3b8;
  max-width: 100%;
  margin-bottom: 2rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats strong {
  display: block;
  font-size: 2rem;
  font-family: var(--font-display);
  color: var(--white);
}

.hero-stats span {
  font-size: 0.85rem;
  color: #94a3b8;
}

.hero-visual {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  bottom: 1.5rem;
  left: -1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #64748b;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-height: 400px;
    aspect-ratio: 16/10;
  }

  .hero-scroll {
    display: none;
  }
}

/* --- Hero immersive: bumi 3D + kota cyberpunk (gambar referensi) --- */
.hero-immersive {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  isolation: isolate;
  overflow: hidden;
}

.hero-immersive::before,
.hero-immersive::after {
  display: none;
}

.hero-immersive-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #020617;
}

/* Kota holografik / video full-width di belakang globe */

.hero-city-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #020617;
}

.hero-city-photo {
  filter: brightness(0.82) saturate(1.15) contrast(1.08) hue-rotate(-4deg);
}

.hero-city-fx-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.92;
}

.hero-city-bg,
.hero-city-photo,
.hero-city-gif,
.hero-city-video,
.hero-youtube-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  border: none;
  background: #020617;
}

.hero-youtube-poster {
  z-index: 0;
  transition: opacity 0.6s ease;
}

.hero-youtube-poster.is-hidden {
  opacity: 0;
}

.hero-city-bg-layer,
.hero-youtube-bg,
.hero-youtube-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-youtube-bg {
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-youtube-player {
  overflow: hidden;
  pointer-events: none;
}

.hero-youtube-player iframe,
.hero-youtube-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero-youtube-chrome-mask {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(2, 6, 23, 0.92) 0%, transparent 5%),
    linear-gradient(to top, rgba(2, 6, 23, 0.92) 0%, transparent 5%),
    linear-gradient(to right, transparent 72%, rgba(2, 6, 23, 0.9) 90%);
}

.hero-earth-3d-wrap.hero-earth-disabled {
  display: none;
}

.hero-earth-3d-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  min-height: 100%;
}

.hero-earth-3d-wrap canvas,
.hero-earth-canvas {
  display: block;
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
}

.hero-immersive-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(285deg, rgba(11, 18, 32, 0.88) 0%, rgba(11, 18, 32, 0.5) 28%, rgba(11, 18, 32, 0.12) 44%, transparent 58%),
    radial-gradient(ellipse 50% 60% at 22% 50%, rgba(2, 6, 23, 0.5) 0%, transparent 70%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.35) 0%, transparent 40%, transparent 72%, rgba(2, 6, 23, 0.45) 100%);
  pointer-events: none;
}

.hero-immersive .hero-content {
  position: relative;
  z-index: 3;
  max-width: 100%;
}

.hero-immersive .hero-badge {
  background: transparent;
  border: none;
  padding-left: 0;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.95),
    0 4px 28px rgba(0, 0, 0, 0.8);
}

.hero-immersive h1 {
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.95)) drop-shadow(0 6px 36px rgba(0, 0, 0, 0.7));
}

.hero-immersive .hero-lead {
  color: #e2e8f0;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.95),
    0 4px 24px rgba(0, 0, 0, 0.85);
}

.hero-immersive .hero-stats {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.hero-immersive .hero-stats strong {
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.95),
    0 4px 24px rgba(0, 0, 0, 0.8);
}

.hero-immersive .hero-stats span {
  color: #cbd5e1;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.9),
    0 3px 18px rgba(0, 0, 0, 0.75);
}

.hero-immersive .hero-scroll {
  z-index: 3;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.9),
    0 3px 20px rgba(0, 0, 0, 0.75);
}

@media (max-width: 768px) {
  .hero-immersive .hero-content {
    max-width: none;
  }
}

/* --- Section headers (Icehouse minimal + Vodjo) --- */
.section {
  padding: 5rem 0;
}

.section-light {
  background: linear-gradient(180deg, var(--light) 0%, #f8fafc 100%);
}

.section-dark {
  background: linear-gradient(165deg, #0b1220 0%, #0f172a 50%, #0b1220 100%);
  color: var(--white);
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(34, 211, 238, 0.06), transparent);
  pointer-events: none;
}

.section-dark>.container {
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-line {
  margin-inline: auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '// ';
  color: var(--accent);
  opacity: 0.85;
}

.section-dark .section-label {
  color: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

h1.section-title {
  font-size: calc(clamp(1.75rem, 4.8vw, 2.75rem) * var(--h1-unboost));
}

.section-title .accent {
  color: var(--primary);
}

.section-dark .section-title .accent {
  color: var(--accent);
}

.section-line {
  width: 4rem;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 100%;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.section-dark .section-desc {
  color: #94a3b8;
}

.section-pkl .section-desc {
  max-width: none;
  width: 100%;
  color: #fff;
}

.section-pkl .section-desc strong {
  color: #fff;
}

.section-pkl .pkl-home-grid .pkl-card .bootcamp-card-body h3,
.section-pkl .pkl-home-grid .pkl-card .bootcamp-card-body h3 a,
.section-pkl .pkl-home-grid .pkl-card .bootcamp-card-body > p,
.section-pkl .pkl-home-grid .pkl-card .bootcamp-card-body > p strong,
.section-pkl .pkl-home-grid .pkl-card .bootcamp-meta,
.section-pkl .pkl-home-grid .pkl-card .bootcamp-meta span,
.section-pkl .pkl-home-grid .pkl-card .bootcamp-highlights li {
  color: #fff;
}

.section-pkl .pkl-home-grid .pkl-card .bootcamp-highlights li::before {
  color: #fff;
}

.section-dark .section-desc strong,
.section-pkl .section-desc strong {
  color: inherit;
  font-weight: 700;
}

/* Paragraf panjang lainnya — rata kanan-kiri */
.channel-banner-text p,
.bootcamp-card-body > p,
.rpl-showcase-card .bootcamp-card-body > p,
.service-hero .container > p,
.page-hero .section-desc,
.detail-grid > div > p,
.cta-band p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.service-hero .container > p {
  max-width: 100%;
}

.bootcamp-card-body > p,
.pkl-card .bootcamp-card-body > p {
  line-height: 1.55;
}

.section-header.center .section-desc {
  margin-inline: auto;
}

/* --- Service cards (Vodjo grid + Spentera pro) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* --- Product cards (digital products catalog) --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
}

.product-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.product-card:not(.product-card-soon):hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(4, 102, 200, 0.15);
  border-color: rgba(34, 211, 238, 0.4);
}

.product-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1220 0%, #0466c8 55%, #22d3ee 100%);
  min-height: 10rem;
}

@supports not (aspect-ratio: 16 / 10) {
  .product-card-media {
    height: 0;
    padding-top: 62.5%;
    min-height: 0;
  }

  .product-card-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:not(.product-card-soon):hover .product-card-media img {
  transform: scale(1.06);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11, 18, 32, 0.55) 100%);
  pointer-events: none;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.5rem 1.75rem;
  gap: 0.65rem;
}

.product-card-body h3 {
  margin: 0;
  font-size: 1.35rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  color: var(--primary);
}

.product-card-body p {
  margin: 0;
  flex: 1;
  color: var(--slate);
  line-height: 1.65;
  font-size: 0.95rem;
}

.product-card-soon {
  opacity: 0.92;
}

.product-card-media-soon {
  display: grid;
  place-items: center;
  min-height: 140px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #0e7490 100%);
}

.product-card-soon-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(34, 211, 238, 0.25), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(4, 102, 200, 0.3), transparent 50%);
}

.product-card-soon-badge {
  position: relative;
  z-index: 1;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

.products-grid-soon {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 100%;
  margin-inline: auto;
}

.products-grid-soon .product-card-body h3 {
  text-transform: lowercase;
  font-size: 1.2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  height: 100%;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(34, 211, 238, 0.35);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #eff6ff, #e0f2fe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: background 0.3s, color 0.3s;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.service-card p {
  color: var(--slate);
  font-size: 0.95rem;
  flex: 1;
  margin: 0 0 1.25rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.service-link svg {
  transition: transform 0.2s;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* --- Portfolio (Vodjo featured works) --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.portfolio-grid--home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  group: portfolio;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 32, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}

.portfolio-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.portfolio-item h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

/* --- Industries marquee (Spentera) --- */
.marquee-wrap {
  overflow: hidden;
  padding: 2rem 0;
  background: linear-gradient(90deg, #0b1220, #0f172a, #0b1220);
  border-block: 1px solid rgba(34, 211, 238, 0.12);
  box-shadow: 0 0 60px rgba(34, 211, 238, 0.06) inset;
}

.marquee {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
}

.marquee span::before {
  content: '●';
  color: var(--primary);
  margin-right: 1rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- Process (Icehouse steps) --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.process-item .step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(4, 102, 200, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process-item h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.process-item p {
  margin: 0;
  color: var(--slate);
  font-size: 0.9rem;
}

/* --- Testimonials (Vodjo) --- */
.testimonial-slider {
  position: relative;
  max-width: 100%;
  margin-inline: auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
  text-align: center;
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 800;
  margin: 0;
}

.testimonial-role {
  color: var(--primary);
  font-size: 0.9rem;
  margin: 0.25rem 0 0;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--primary);
  cursor: pointer;
  font-size: 1.25rem;
  transition: background 0.2s, color 0.2s;
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* --- CTA band (Spentera) --- */
.cta-band {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0369a1 50%, #0e7490 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.8vw, 2.5rem);
  margin: 0 0 1rem;
  max-width: none;
  margin-inline: auto;
  white-space: normal;
  text-wrap: balance;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 100%;
  margin: 0 auto 2rem;
}

/* --- Why us / About grid --- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.split-images img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.split-images img:first-child {
  margin-top: 2rem;
}

/* About teaser beranda — laptop kiri, hitam + teks kanan */
.section-about-bg {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  background: #000;
}

.section-about-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}

.section-about-bg-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 58%;
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.1) 100%
  ), var(--about-img-left);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-about-bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    #000 0%,
    rgba(0, 0, 0, 0.92) 28%,
    rgba(0, 0, 0, 0.35) 52%,
    transparent 68%
  );
  pointer-events: none;
}

.section-about-bg-content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}

.section-about-bg .section-header {
  text-align: left;
}

.section-about-bg .section-line {
  margin-left: 0;
  margin-right: auto;
}

.section-about-bg .section-label {
  color: var(--accent);
}

.section-about-bg .section-title {
  color: #fff;
}

.section-about-bg .section-title .accent {
  color: var(--accent);
}

.section-about-bg .section-desc {
  color: #fff;
}

.section-about-bg .feature-list {
  align-items: stretch;
}

.section-about-bg .feature-item {
  flex-direction: row;
  text-align: left;
  max-width: 100%;
}

.section-about-bg .feature-item h4 {
  color: #fff;
  margin: 0 0 0.35rem;
}

.section-about-bg .feature-item p {
  color: #fff;
  margin: 0;
}

.section-about-bg .feature-icon {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.section-about-bg .btn-outline {
  border-color: #fff;
  color: #fff;
}

.section-about-bg .btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.3s;
}

.why-card:hover {
  box-shadow: var(--shadow);
}

/* --- Service detail --- */
.service-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-top: max(7.25rem, calc(5.25rem + env(safe-area-inset-top, 0px)));
  padding-bottom: 4rem;
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--white);
}

.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 32, 0.95), rgba(11, 18, 32, 0.4));
}

.service-hero .container {
  position: relative;
  z-index: 1;
}

.service-hero h1 {
  font-family: var(--font-display);
  font-size: calc(clamp(2rem, 6vw, 3.5rem) * var(--h1-unboost));
  margin: 0 0 0.5rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  padding: 4rem 0;
}

.detail-grid-single {
  grid-template-columns: 1fr;
  max-width: 100%;
}

.pkl-uiux-tahap {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  text-align: center;
}

.pkl-uiux-tahap-inner {
  max-width: 40rem;
  margin-inline: auto;
}

.pkl-uiux-tahap-title {
  margin: 0;
  font-family: var(--font-display, "Syne", system-ui, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy, #0f2744);
  letter-spacing: -0.02em;
}

.pkl-uiux-tahap-title-line {
  display: block;
  white-space: nowrap;
}

.pkl-uiux-tahap-line {
  margin: 1.25rem auto 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.feature-box {
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.feature-box:hover {
  border-color: var(--primary);
}

.process-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.process-pill {
  padding: 0.6rem 1.25rem;
  background: #f1f5f9;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.sidebar-cta {
  position: sticky;
  top: 6rem;
  background: var(--dark);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.sidebar-cta p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

.sidebar-perks {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #94a3b8;
}

@media (max-width: 900px) {

  .split-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-cta {
    position: static;
  }
}

/* --- Contact (Vodjo form) --- */
.contact-wrap {
  display: grid;
  grid-template-columns: 2fr 3fr;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
  margin-top: 2rem;
}

.contact-info {
  background: linear-gradient(160deg, var(--primary), #0e7490);
  color: var(--white);
  padding: 3rem;
}

.contact-info h3 {
  margin-top: 0;
  font-size: 1.75rem;
}

.contact-list {
  margin: 2rem 0;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.contact-form {
  padding: 3rem;
  background: var(--white);
}

.contact-form-header {
  margin-bottom: 1.5rem;
}

.contact-form-header h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--dark);
}

.contact-form-header p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: #334155;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  background: #f1f5f9;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--primary);
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* --- Nav dropdown --- */
.nav-dropdown {
  position: relative;
  flex-shrink: 0;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-toggle .nav-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle .nav-chevron,
.nav-dropdown:focus-within .nav-dropdown-toggle .nav-chevron {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .nav-dropdown.is-open .nav-dropdown-toggle .nav-chevron {
    transform: rotate(180deg);
  }
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  background: rgba(4, 102, 200, 0.1);
  color: var(--primary);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 17.5rem;
  max-width: min(20rem, calc(100vw - 2rem));
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(148, 163, 184, 0.12);
  padding: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}

.nav-dropdown:last-of-type .nav-dropdown-menu,
.nav-dropdown:nth-last-of-type(2) .nav-dropdown-menu {
  left: auto;
  right: 0;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
}

.nav-dropdown-menu > .nav-dropdown-link,
.nav-dropdown-menu > a {
  display: block;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
}

.nav-dropdown-item {
  position: relative;
}

.nav-dropdown-item.has-submenu .nav-dropdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  border-radius: 0.5rem;
  transition: background 0.15s;
}

.nav-dropdown-item.has-submenu:hover .nav-dropdown-row,
.nav-dropdown-item.has-submenu.is-active .nav-dropdown-row {
  background: rgba(4, 102, 200, 0.08);
}

.nav-dropdown-item.has-submenu .nav-dropdown-row > a {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.35rem 0.65rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  white-space: normal;
  color: #475569;
}

a[aria-disabled="true"],
span[aria-disabled="true"].btn,
span[aria-disabled="true"].nav-mobile-link {
  cursor: default;
  pointer-events: none;
}

.nav-submenu-arrow {
  flex-shrink: 0;
  margin-right: 0.65rem;
  color: #94a3b8;
}

.nav-dropdown-submenu {
  position: absolute;
  left: calc(100% + 0.35rem);
  top: 0;
  min-width: 17rem;
  max-width: min(19rem, calc(100vw - 2rem));
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(148, 163, 184, 0.12);
  padding: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 210;
}

.nav-dropdown:last-of-type .nav-dropdown-submenu,
.nav-dropdown:nth-last-of-type(2) .nav-dropdown-submenu {
  left: auto;
  right: calc(100% + 0.35rem);
  transform: translateX(6px);
}

.nav-dropdown-item.has-submenu:hover .nav-dropdown-submenu,
.nav-dropdown-item.has-submenu:focus-within .nav-dropdown-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.nav-dropdown-submenu a {
  font-size: 0.84rem;
  line-height: 1.4;
  white-space: normal;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active,
.nav-dropdown-item.has-submenu .nav-dropdown-row > a:hover,
.nav-dropdown-item.has-submenu .nav-dropdown-row > a.active {
  background: rgba(4, 102, 200, 0.08);
  color: var(--primary);
}

.nav-cta-btn {
  margin-left: 0.2rem !important;
  padding: 0.48rem 1rem !important;
  font-size: 0.8rem !important;
  flex-shrink: 0;
  background: var(--white) !important;
  color: var(--primary) !important;
  border: 2px solid rgba(4, 102, 200, 0.22);
  box-shadow: 0 4px 14px rgba(4, 102, 200, 0.12);
}

.nav-cta-btn:hover {
  background: #f8fafc !important;
  color: var(--primary-dark) !important;
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(4, 102, 200, 0.18);
}

.nav-cta-btn.active {
  background: var(--white) !important;
  color: var(--primary-dark) !important;
  border-color: var(--primary);
}

body.nav-locked {
  overflow: hidden;
}

/* --- Footer --- */
.site-footer {
  position: relative;
  background: var(--dark);
  color: #94a3b8;
  padding: 0;
  overflow: hidden;
}

.footer-map-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.footer-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.52;
  filter: grayscale(15%) contrast(1.15);
  transform: scale(1.14);
  transform-origin: center center;
}

.footer-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.88) 0%, rgba(11, 18, 32, 0.94) 100%);
}

.footer-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 2.2fr);
  gap: 3rem 4rem;
  align-items: start;
  padding-bottom: 3rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.55rem 0.9rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  line-height: 0;
}

.footer-logo img {
  height: 42px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.footer-logo-mark {
  padding: 0.5rem;
  margin-bottom: 1.25rem;
  background: #f8fafc;
}

.footer-logo-mark img {
  height: 64px;
  width: 64px;
  object-fit: contain;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 1.25rem;
}

.footer-social a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #94a3b8;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-tagline {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
}

.footer-desc {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #94a3b8;
}

.footer-channel-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s, transform 0.2s;
}

.footer-channel-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
}

.footer-col-title {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-col-title::after {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 1px;
}

.footer-col-title-sub {
  margin-top: 1.5rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #94a3b8;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #94a3b8;
}

.footer-contact a {
  color: #cbd5e1;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-contact-icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.9;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem 0 1.75rem;
  font-size: 0.88rem;
  color: #64748b;
}

.footer-bottom-center {
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

.footer-admin-link {
  opacity: 0.45;
  font-size: 0.8rem;
}

.footer-admin-link:hover {
  opacity: 0.85;
}

/* --- WhatsApp float + Request Penawaran modal --- */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 99;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.wa-modal[hidden] {
  display: none !important;
}

.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.wa-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.65);
  backdrop-filter: blur(4px);
}

.wa-modal-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: #f8fafc;
  border-radius: 1rem;
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.wa-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: #94a3b8;
  cursor: pointer;
}

.wa-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.wa-modal-header h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--dark);
}

.wa-modal-header p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
}

.wa-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.wa-form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: #334155;
}

.wa-form-group .req {
  color: #ef4444;
}

.wa-form-group input,
.wa-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--white);
}

.wa-form-group input:focus,
.wa-form-group textarea:focus {
  outline: 2px solid var(--primary);
  border-color: var(--primary);
}

.wa-form-full {
  margin-top: 1rem;
}

.btn-wa-submit {
  display: block;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.95rem;
  background: #facc15;
  color: #0f172a;
  border: none;
  border-radius: 0.5rem;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-wa-submit:hover {
  background: #fde047;
  transform: translateY(-1px);
}

.wa-form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate);
  margin: 0.75rem 0 0;
}

@media (max-width: 640px) {
  .wa-form-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Page hero inner --- */
.page-hero {
  padding-top: max(7.25rem, calc(5.25rem + env(safe-area-inset-top, 0px)));
  padding-bottom: 4rem;
  background: var(--light);
  border-bottom: 1px solid #e2e8f0;
}

.page-hero-dark {
  background: var(--dark);
  color: var(--white);
}

.page-hero-dark .section-desc {
  color: #94a3b8;
}

.page-hero .section-desc-extra {
  margin-top: 1rem;
}

/* --- Bootcamp --- */
.bootcamp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.skill-showcase-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.bootcamp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.section-dark .bootcamp-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.section-light .pkl-card,
.section:not(.section-dark) .pkl-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-color: rgba(34, 211, 238, 0.15);
  box-shadow: 0 4px 24px rgba(4, 102, 200, 0.08);
}

.section-light .pkl-card:hover {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: var(--shadow-glow);
}

.pkl-card .bootcamp-badge {
  background: linear-gradient(135deg, #0e7490, var(--accent));
}

.section-dark .bootcamp-card h3 a,
.section-dark .bootcamp-card h3 {
  color: var(--white);
}

.section-dark .bootcamp-card p,
.section-dark .bootcamp-card .bootcamp-meta {
  color: #94a3b8;
}

.section-dark .bootcamp-highlights li {
  color: #cbd5e1;
}

.bootcamp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.bootcamp-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.bootcamp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.bootcamp-card:hover .bootcamp-card-image img {
  transform: scale(1.05);
}

.bootcamp-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--primary), #0ea5e9);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.bootcamp-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bootcamp-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.bootcamp-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.bootcamp-card h3 a:hover {
  color: var(--primary);
}

.bootcamp-card p {
  font-size: 0.9rem;
  color: var(--slate);
  margin: 0 0 1rem;
  flex: 1;
}

.bootcamp-highlights {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.bootcamp-highlights li {
  font-size: 0.85rem;
  color: var(--slate);
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.35rem;
  line-height: 1.45;
}

.bootcamp-highlights-full li {
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

.pkl-card .bootcamp-card-body p {
  display: -webkit-box;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  text-align: justify;
  line-height: 1.65;
}

.pkl-card .bootcamp-card-body p strong,
.pkl-home-grid .pkl-card .bootcamp-card-body > p strong,
.service-hero .container > p strong {
  font-weight: 700;
  color: var(--slate);
}

.bootcamp-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.bootcamp-highlights-block li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.bootcamp-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.bootcamp-module-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.bootcamp-module-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
  color: #475569;
}

.bootcamp-module-list li span {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.bootcamp-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #e2e8f0;
}

.channel-banner {
  position: relative;
  background: #000;
  padding: 0;
  color: var(--white);
  overflow: hidden;
}

.channel-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 55% 100% at 0% 50%, rgba(12, 45, 107, 0.35), transparent 62%);
  pointer-events: none;
}

.channel-banner-inner {
  position: relative;
  z-index: 2;
  line-height: normal;
  min-height: clamp(300px, 38vw, 420px);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.channel-banner .channel-banner-copy {
  position: relative;
  z-index: 3;
  width: min(1200px, 92%);
  height: auto;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.15rem;
  line-height: normal;
  padding: 0 1rem;
  pointer-events: none;
}

.channel-banner-copy > * {
  pointer-events: auto;
  max-width: min(100%, 32rem);
}

.channel-banner-copy .channel-banner-actions {
  width: min(100%, 22rem);
  max-width: 100%;
}

.section-pkl {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section-pkl.section-dark::before {
  display: none;
}

.section-pkl-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.section-pkl-bg-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.section-pkl-bg-blend {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(4, 70, 140, 0.78) 0%,
    rgba(6, 22, 48, 0.85) 45%,
    rgba(8, 15, 30, 0.92) 100%
  );
}

.section-pkl > .container {
  position: relative;
  z-index: 1;
}

/* Kurikulum TKJ/RPL di halaman detail PKL — background sama dengan section PKL beranda */
.section-pkl.section-showcase-kurikulum {
  padding-top: 0;
}

/* Hilangkan gap putih antara materi kurikulum & section showcase PKL */
.container.detail-grid:has(+ .section-pkl.section-showcase-kurikulum) {
  padding-bottom: 0;
}

.container.detail-grid:empty,
.container.detail-grid:not(:has(h2, h3, .bootcamp-module-list, .sidebar-cta)) {
  display: none;
}

.section-pkl.section-showcase-kurikulum > .container {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.section-pkl.section-showcase-kurikulum .section-label {
  color: var(--accent);
}

.section-pkl.section-showcase-kurikulum .section-title {
  color: #fff;
}

.section-pkl.section-showcase-kurikulum .section-title .accent {
  color: var(--accent);
}

.section-pkl.section-showcase-kurikulum .section-desc,
.section-pkl.section-showcase-kurikulum .section-desc strong {
  color: #fff;
}

.section-pkl.section-showcase-kurikulum .rpl-showcase-card .bootcamp-card-body h3,
.section-pkl.section-showcase-kurikulum .rpl-showcase-card .bootcamp-card-body > p,
.section-pkl.section-showcase-kurikulum .rpl-showcase-card .bootcamp-card-body > p strong,
.section-pkl.section-showcase-kurikulum .rpl-showcase-card .bootcamp-meta,
.section-pkl.section-showcase-kurikulum .rpl-showcase-card .bootcamp-meta span,
.section-pkl.section-showcase-kurikulum .rpl-showcase-card .bootcamp-highlights li {
  color: #fff;
}

.section-pkl.section-showcase-kurikulum .rpl-showcase-card .bootcamp-highlights li::before {
  color: #fff;
}

.pkl-home-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.pkl-home-grid .pkl-card {
  height: 100%;
}

.pkl-home-grid .pkl-card .bootcamp-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.pkl-home-grid .pkl-card .bootcamp-card-body h3 {
  min-height: 3.15rem;
  display: flex;
  align-items: flex-end;
}

.pkl-home-grid .pkl-card .bootcamp-card-body > p {
  flex: 0 0 auto;
  min-height: 10.5rem;
  margin-bottom: 1rem;
}

.pkl-home-grid .pkl-card .bootcamp-highlights {
  flex: 1 0 auto;
  margin-top: 0;
  margin-bottom: 1rem;
}

.pkl-home-grid .pkl-card .bootcamp-card-actions {
  margin-top: auto;
}

.section-pkl .pkl-home-grid .pkl-card .bootcamp-card-actions .btn-outline {
  border-color: #fff;
  color: #fff;
}

.section-pkl .pkl-home-grid .pkl-card .bootcamp-card-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 768px) {
  .pkl-home-grid {
    grid-template-columns: 1fr;
  }
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.customers-slider {
  position: relative;
  margin-top: 0.5rem;
}

.customers-slider--auto .customers-slider-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.customers-slider--auto .customers-slider-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: customers-slider-scroll 35s linear infinite;
}

.customers-slider--auto:hover .customers-slider-track {
  animation-play-state: paused;
}

@keyframes customers-slider-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.customers-slider-slide {
  flex: 0 0 220px;
  width: 220px;
  box-sizing: border-box;
}

.customers-slider .customer-card {
  width: 100%;
}

.customers-marquee-wrap {
  overflow: hidden;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.customers-marquee {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: customers-marquee 35s linear infinite;
}

.customers-marquee:hover {
  animation-play-state: paused;
}

@keyframes customers-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.customer-card-marquee {
  flex: 0 0 260px;
  width: 260px;
}

.customer-card {
  text-align: center;
  padding: 1.25rem 1rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.2s;
}

.customer-card:hover {
  transform: translateY(-3px);
}

.customer-logo {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.customer-logo img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.customer-logo-placeholder {
  width: 90%;
  max-width: 117px;
  aspect-ratio: 1;
  height: auto;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customer-name {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.4;
}

.customers-empty {
  text-align: center;
  color: #94a3b8;
  margin: 0;
}

.testimonial-submit-wrap {
  text-align: center;
  margin-top: 2rem;
}

.form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.form-alert-success {
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: #0e7490;
}

.form-alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #b91c1c;
}

.channel-banner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.15rem;
  min-width: 0;
}

.channel-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  margin: 0 0 0.35rem;
  line-height: 1.25;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.channel-banner p {
  margin: 0;
  max-width: none;
  opacity: 0.92;
  line-height: 1.55;
  font-size: 0.92rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.channel-banner-text .section-label {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.channel-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-self: flex-start;
}

.channel-banner-btn-main {
  width: 100%;
}

.channel-banner-actions-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  width: 100%;
}

.channel-banner-actions .btn {
  padding: 0.45rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
  gap: 0.25rem;
  justify-content: center;
  text-align: center;
  white-space: normal;
  border-width: 1px;
  min-height: 2.35rem;
}

.channel-banner-actions .btn-primary {
  box-shadow: 0 6px 18px rgba(4, 102, 200, 0.3);
}

.channel-banner-actions .btn-primary::after {
  display: none;
}

.channel-banner-actions .btn-outline {
  border-width: 1px;
}

.channel-banner-btn-pkl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  min-height: 2.75rem;
  padding-block: 0.35rem;
}

.channel-banner-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  line-height: 0;
}

.channel-banner-art {
  position: absolute;
  inset: 0;
  margin: 0;
}

.channel-banner-art-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.channel-banner-art-blend {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    #000 0%,
    rgba(0, 0, 0, 0.94) 18%,
    rgba(0, 0, 0, 0.72) 38%,
    rgba(0, 0, 0, 0.38) 58%,
    rgba(0, 0, 0, 0.12) 78%,
    transparent 100%
  );
}

@media (max-width: 768px) {
  .channel-banner-inner {
    line-height: normal;
    min-height: clamp(340px, 88vw, 460px);
    align-items: flex-end;
    padding: 1.75rem 0 2rem;
  }

  .channel-banner-art-img {
    object-position: 72% center;
  }

  .channel-banner-art-blend {
    background:
      linear-gradient(
        to right,
        #000 0%,
        rgba(0, 0, 0, 0.92) 28%,
        rgba(0, 0, 0, 0.55) 55%,
        rgba(0, 0, 0, 0.2) 78%,
        transparent 100%
      ),
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.45) 35%,
        transparent 68%
      );
  }

  .channel-banner-actions .btn {
    font-size: 0.75rem;
    padding: 0.55rem 0.75rem;
    min-height: auto;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    max-width: none;
    width: 100%;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding-top: 3.5rem;
  }

  .footer-brand-head {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 36%) minmax(0, 1fr);
    gap: clamp(0.47rem, 2.38vw, 0.77rem);
    align-items: stretch;
    margin-bottom: 0.85rem;
  }

  .footer-brand-head .footer-logo-mark {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin-bottom: 0;
    padding: clamp(0.34rem, 1.7vw, 0.47rem);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-brand-head .footer-logo-mark img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
  }

  .footer-brand-head .footer-tagline {
    width: 100%;
    min-width: 0;
    min-height: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: clamp(0.95rem, 0.88rem + 0.32vw, 1.25rem);
    line-height: 1.02;
    text-align: left;
    text-align-last: left;
    word-spacing: normal;
    hyphens: none;
    -webkit-hyphens: none;
  }

  .footer-grid {
    width: 100%;
    gap: 2.25rem;
  }

  .footer-cols {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1.15rem;
    align-items: start;
  }

  .footer-col:nth-child(3),
  .footer-col-contact {
    grid-column: 1 / -1;
  }

  .footer-col:first-child,
  .footer-col:nth-child(2) {
    align-self: start;
  }

  .footer-col:first-child .footer-links a,
  .footer-col:nth-child(2) .footer-links a,
  .footer-col:nth-child(3) .footer-links a {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .footer-col:nth-child(3) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1.15rem;
    align-items: start;
  }

  .footer-col:nth-child(3) .footer-col-title:not(.footer-col-title-sub) {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-col:nth-child(3) > .footer-links:first-of-type {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-col:nth-child(3) .footer-col-title-sub {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }

  .footer-col:nth-child(3) > .footer-links:last-of-type {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-col-title {
    margin-bottom: 0.85rem;
    font-size: 0.75rem;
  }

  .footer-col {
    min-width: 0;
    width: 100%;
  }

  .footer-col-title-sub {
    margin-top: 1.35rem;
    margin-bottom: 0.85rem;
  }

  .footer-col .footer-links {
    display: block;
  }

  .footer-links li,
  .footer-contact li {
    margin-bottom: 0.55rem;
    min-width: 0;
  }

  .footer-links li:last-child,
  .footer-contact li:last-child {
    margin-bottom: 0;
  }

  .footer-links a {
    display: inline-block;
    font-size: 0.9rem;
    line-height: 1.45;
    overflow-wrap: break-word;
  }

  .footer-contact {
    display: block;
  }

  .footer-contact li {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .footer-desc {
    width: 100%;
    margin-bottom: 1rem;
  }

  .footer-channel-link {
    display: inline-flex;
    width: auto;
    margin-bottom: 0.25rem;
  }

  .footer-social {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.35rem;
    margin-top: 1.15rem;
  }

  .footer-social a {
    font-size: 0.88rem;
    text-align: left;
    min-width: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-cols {
    gap: 1.5rem 0.85rem;
  }

  .footer-col:first-child .footer-links a,
  .footer-col:nth-child(2) .footer-links a,
  .footer-col:nth-child(3) .footer-links a {
    font-size: 0.84rem;
  }

  .footer-links a,
  .footer-contact li {
    font-size: 0.88rem;
  }
}

/* =============================================================================
   Responsive global — tablet & handphone
   ============================================================================= */

/* Tablet landscape */
@media (max-width: 1024px) {
  .section {
    padding: 3.75rem 0;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  .pkl-home-grid .pkl-card .bootcamp-card-body h3,
  .pkl-home-grid .pkl-card .bootcamp-card-body > p {
    min-height: auto;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
  }

  .service-hero {
    min-height: 44vh;
  }

  .section-about-bg-layer::before {
    width: 100%;
    background-image: linear-gradient(
      to left,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.42) 50%,
      rgba(0, 0, 0, 0.12) 100%
    ), var(--about-img-left);
  }

  .section-about-bg-layer::after {
    background: linear-gradient(
      to left,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.35) 55%,
      transparent 100%
    );
  }

  .section-about-bg-content {
    max-width: min(100%, 22rem);
    margin-left: auto;
    margin-right: 0;
  }

  .section-pkl-bg {
    min-height: 100%;
  }

  .section-pkl-bg-img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120%;
    height: 120%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
  }

  .section-pkl-bg-blend {
    background: linear-gradient(
      180deg,
      rgba(4, 70, 140, 0.8) 0%,
      rgba(6, 20, 42, 0.7) 40%,
      rgba(8, 15, 30, 0.88) 100%
    );
  }
}

/* Tablet portrait & mobile */
@media (max-width: 768px) {
  body.futuristic-ui > main {
    padding-top: 4rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: clamp(1.12rem, 4vw, 1.6rem);
    line-height: 1.22;
    overflow-wrap: break-word;
    text-wrap: balance;
    hyphens: none;
  }

  h1.section-title {
    font-size: calc(clamp(1.12rem, 4vw, 1.6rem) * var(--h1-unboost));
  }

  .section-label {
    font-size: 0.72rem;
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .section-desc,
  .hero-lead,
  .channel-banner-text p,
  .bootcamp-card-body > p,
  .pkl-card .bootcamp-card-body > p,
  .pkl-card .bootcamp-card-body p,
  .service-card p,
  .product-card-body p,
  .service-hero .container > p,
  .page-hero .section-desc,
  .detail-grid > div > p,
  .cta-band p,
  .section-about-bg .section-desc,
  .section-about-bg .feature-item p,
  .section-pkl .section-desc,
  .footer-desc,
  .footer-tagline,
  .cms-text,
  .cms-body p,
  .cms-section-inner p,
  .testimonial-card p,
  .contact-form-header p,
  .feature-item p {
    font-size: 0.95rem;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: start;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-spacing: -0.03em;
    letter-spacing: 0;
    line-height: 1.55;
    overflow-wrap: break-word;
    text-wrap: pretty;
    max-width: 100%;
  }

  .nav-shell {
    padding-inline: 0;
  }

  .nav-inner {
    width: var(--page-nav-width);
    padding: 0.45rem 0.55rem 0.45rem 0.85rem;
  }

  .nav-logo img {
    height: 32px;
    max-width: min(140px, 42vw);
  }

  .nav-mobile {
    top: calc(env(safe-area-inset-top, 0px) + 4.35rem);
    max-height: calc(100dvh - env(safe-area-inset-top, 0px) - 4.75rem - env(safe-area-inset-bottom, 0px));
  }

  .nav-shell.is-scrolled .nav-mobile {
    top: calc(env(safe-area-inset-top, 0px) + 3.95rem);
  }

  .hero-immersive {
    padding-top: max(5.5rem, calc(4.5rem + env(safe-area-inset-top, 0px)));
    padding-bottom: 3.5rem;
    align-items: flex-end;
  }

  .hero-immersive .hero-content {
    max-width: 100%;
  }

  .hero h1,
  .hero-immersive h1,
  .hero-title {
    font-size: calc(clamp(1.08rem, 3.6vw + 0.28rem, 1.68rem) * var(--h1-unboost));
    line-height: 1.1;
    letter-spacing: -0.03em;
    overflow-wrap: break-word;
    text-wrap: balance;
    hyphens: none;
  }

  .hero-lead {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    gap: 0.55rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions .btn {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  .hero-immersive .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    padding-top: 1rem;
  }

  .hero-immersive .hero-stats strong {
    font-size: 1.1rem;
  }

  .hero-immersive .hero-stats span {
    font-size: 0.65rem;
    line-height: 1.28;
  }

  .service-card {
    padding: 1.35rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .product-card-body {
    padding: 1.1rem 1.15rem 1.25rem;
  }

  .product-card-body h3 {
    font-size: 1.1rem;
  }

  .product-card-body p {
    font-size: 0.9rem;
  }

  .services-grid,
  .bootcamp-grid,
  .why-grid,
  .pkl-home-grid,
  .products-grid,
  .products-grid-soon {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .services-grid > *,
  .bootcamp-grid > *,
  .portfolio-grid > *,
  .pkl-home-grid > *,
  .container,
  .section-header {
    min-width: 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 2.25rem 0;
  }

  .cta-band h2 {
    font-size: clamp(0.92rem, 3.04vw + 0.32rem, 1.4rem);
    line-height: 1.22;
    letter-spacing: -0.02em;
    max-width: 100%;
  }

  .cta-band p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  /* PKL beranda */
  .section-pkl .section-label {
    font-size: 0.58rem;
    letter-spacing: 0.05em;
  }

  .section-pkl .section-title {
    font-size: clamp(0.92rem, 3.6vw, 1.32rem);
  }

  .section-pkl .section-desc {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .section-pkl .container > p {
    margin-top: 1.75rem !important;
    padding: 0;
  }

  .section-pkl .container > p .btn {
    white-space: normal;
    max-width: 100%;
    line-height: 1.35;
    height: auto;
    min-height: 2.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }

  .pkl-home-grid {
    max-width: 100%;
  }

  .bootcamp-card-body {
    padding: 1.15rem;
  }

  .bootcamp-card-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .bootcamp-card-actions .btn {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    padding: 0.55rem 0.65rem !important;
    font-size: 0.78rem !important;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
  }

  .contact-info,
  .contact-form {
    padding: 1.75rem 1.25rem;
  }

  .contact-form-header h2 {
    font-size: 1.35rem;
  }

  .service-hero {
    min-height: auto;
    padding: 2rem 0 2.5rem;
  }

  .service-hero h1 {
    font-size: calc(clamp(1.2rem, 4.4vw, 1.68rem) * var(--h1-unboost));
  }

  .page-hero {
    padding: 1.5rem 0 1.75rem;
  }

  .page-hero .section-title {
    font-size: clamp(1.08rem, 4vw, 1.48rem);
  }

  h1.section-title,
  .page-hero h1.section-title {
    font-size: calc(clamp(1.08rem, 4vw, 1.48rem) * var(--h1-unboost));
  }

  .wa-modal {
    padding: 0;
    align-items: flex-end;
  }

  .wa-modal-dialog {
    width: 100%;
    max-height: 92dvh;
    border-radius: 1rem 1rem 0 0;
    padding: 1.35rem 1rem 1rem;
  }

  .wa-float {
    bottom: 0.85rem;
    left: 0.85rem;
    width: 48px;
    height: 48px;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  /* Testimoni — skala mengikuti root mobile 70% */
  .section:has(.testimonial-slider) .section-label {
    font-size: 0.7rem;
  }

  .section:has(.testimonial-slider) .section-title {
    font-size: clamp(1.12rem, 4vw, 1.6rem);
  }

  .section:has(.testimonial-slider) .section-desc {
    font-size: 0.95rem;
  }

  .testimonial-stars {
    font-size: 0.95rem;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .testimonial-author {
    font-size: 0.9rem;
  }

  .testimonial-role {
    font-size: 0.8rem;
  }

  .testimonial-slider .slider-btn {
    font-size: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .testimonial-submit-wrap .btn {
    font-size: 0.85rem;
  }

  .customer-card-marquee {
    flex: 0 0 140px;
    width: 140px;
    padding: 0.75rem 0.5rem;
  }

  .customer-logo {
    height: 39px;
    margin-bottom: 0.4rem;
  }

  .customer-logo img {
    max-width: 100%;
    max-height: 100%;
  }

  .customer-logo-placeholder {
    width: 39px;
    max-width: 39px;
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
  }

  .customer-name {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .customers-slider-slide {
    flex-basis: 180px;
    width: 180px;
  }

  .customers-slider--auto .customers-slider-track {
    gap: 1rem;
    animation-duration: 28s;
  }

  .customers-marquee {
    gap: 0.85rem;
  }

  .marquee-wrap {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    box-sizing: border-box;
  }

  .marquee {
    max-width: none;
  }

  .customers-marquee-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .fx-orb {
    display: none;
  }

  .fx-grid {
    opacity: 0.2;
  }

  .section-about-bg-content {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-immersive .hero-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .channel-banner .channel-banner-copy {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .channel-banner-inner {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  body.futuristic-ui > main > :is(
    .hero,
    .hero-immersive,
    .marquee-wrap,
    .section,
    .channel-banner
  ) {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .channel-banner-inner {
    padding: 1.75rem 0 2rem;
  }

  /* Background + konten: mobile full-width */
  .channel-banner-copy > * {
    max-width: 100%;
  }

  .channel-banner-copy .channel-banner-actions {
    max-width: 100%;
  }

  .channel-banner-actions-secondary {
    grid-template-columns: 1fr;
  }

  .section-about-bg-content {
    max-width: 100%;
    margin-left: 0;
  }

  .section-about-bg .section-title {
    font-size: clamp(1rem, 4vw, 1.32rem);
  }

  .section-about-bg .section-desc,
  .section-about-bg .feature-item p {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .section-about-bg .feature-list {
    gap: 1rem;
  }

  .section-about-bg .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  /* Hero — globe menyatu dengan video kota di mobile */
  .hero-city-video {
    object-position: center 42%;
    filter: brightness(0.78) saturate(1.12) contrast(1.05);
  }

  /* iOS: mask/blend di parent membekukan repaint WebGL — pindah ke canvas, tampilan sama */
  .hero-earth-3d-wrap {
    opacity: 1;
    mix-blend-mode: normal;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-earth-3d-wrap canvas,
  .hero-earth-3d-wrap .hero-earth-canvas {
    mix-blend-mode: screen;
    -webkit-mask-image: radial-gradient(
      ellipse 52% 46% at 72% 38%,
      #000 18%,
      rgba(0, 0, 0, 0.85) 42%,
      transparent 72%
    );
    mask-image: radial-gradient(
      ellipse 52% 46% at 72% 38%,
      #000 18%,
      rgba(0, 0, 0, 0.85) 42%,
      transparent 72%
    );
  }

  .hero-immersive-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(2, 6, 23, 0.9) 0%,
        rgba(2, 6, 23, 0.42) 16%,
        rgba(2, 6, 23, 0.08) 42%,
        rgba(2, 6, 23, 0.5) 74%,
        rgba(2, 6, 23, 0.94) 100%
      ),
      radial-gradient(
        ellipse 54% 42% at 72% 36%,
        rgba(56, 189, 248, 0.1) 0%,
        transparent 58%
      );
  }

  .hero-immersive .hero-content {
    padding-bottom: 0.5rem;
  }

  /* PKL — background full height, zoom out agar lebih banyak foto terlihat */
  .section-pkl .bootcamp-card {
    background: rgba(8, 15, 30, 0.85);
  }

  .section-pkl-bg {
    min-height: 100%;
  }

  .section-pkl-bg-img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 128%;
    height: 128%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
  }

  .section-pkl-bg-blend {
    background: linear-gradient(
      180deg,
      rgba(4, 70, 140, 0.78) 0%,
      rgba(6, 20, 42, 0.65) 38%,
      rgba(8, 15, 30, 0.86) 100%
    );
  }

  .pkl-home-grid .pkl-card .bootcamp-card-body h3,
  .pkl-home-grid .pkl-card .bootcamp-card-body > p {
    min-height: auto;
  }
}

/* Handphone kecil */
@media (max-width: 480px) {
  .section {
    padding: 2.5rem 0;
  }

  .nav-inner {
    border-radius: 1rem;
    padding: 0.45rem 0.65rem;
  }

  .nav-logo img {
    height: 28px;
    max-width: 120px;
  }

  .hero-immersive {
    padding-bottom: 2.75rem;
  }

  .hero-immersive .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    text-align: center;
  }

  .hero-immersive .hero-stats strong {
    font-size: 1.05rem;
  }

  .hero-immersive .hero-stats span {
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-badge {
    font-size: 0.68rem;
    margin-bottom: 0.85rem;
  }

  .hero-city-video {
    object-position: center 36%;
  }

  .hero-earth-3d-wrap {
    mix-blend-mode: normal;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-earth-3d-wrap canvas,
  .hero-earth-3d-wrap .hero-earth-canvas {
    -webkit-mask-image: radial-gradient(
      ellipse 54% 44% at 70% 34%,
      #000 14%,
      rgba(0, 0, 0, 0.82) 36%,
      transparent 66%
    );
    mask-image: radial-gradient(
      ellipse 54% 44% at 70% 34%,
      #000 14%,
      rgba(0, 0, 0, 0.82) 36%,
      transparent 66%
    );
  }

  .hero-immersive-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(2, 6, 23, 0.92) 0%,
        rgba(2, 6, 23, 0.38) 14%,
        rgba(2, 6, 23, 0.1) 38%,
        rgba(2, 6, 23, 0.58) 72%,
        rgba(2, 6, 23, 0.96) 100%
      ),
      radial-gradient(
        ellipse 52% 38% at 70% 32%,
        rgba(56, 189, 248, 0.08) 0%,
        transparent 55%
      );
  }

  .section-title {
    font-size: clamp(1.2rem, 4.2vw + 0.35rem, 1.65rem);
  }

  h1.section-title {
    font-size: calc(clamp(1.2rem, 4.2vw + 0.35rem, 1.65rem) * var(--h1-unboost));
  }

  .bootcamp-card-actions {
    flex-direction: column;
  }

  .bootcamp-card-actions .btn {
    flex: 1 1 auto;
    width: 100%;
  }

  .contact-wrap {
    border-radius: 1rem;
    margin-top: 1rem;
  }

  .contact-info,
  .contact-form {
    padding: 1.25rem 0.9rem;
  }

  .btn {
    padding: 0.72rem 1rem;
    font-size: 0.84rem;
  }

  .customer-card-marquee {
    flex: 0 0 125px;
    width: 125px;
    padding: 0.65rem 0.4rem;
  }

  .customer-logo {
    height: 39px;
  }

  .customer-name {
    font-size: 0.68rem;
  }

  .footer-brand img {
    max-width: 150px;
  }

  .footer-brand-head {
    grid-template-columns: minmax(0, 34%) minmax(0, 1fr);
    gap: clamp(0.43rem, 2.13vw, 0.66rem);
  }

  .footer-brand-head .footer-logo-mark img {
    max-width: none !important;
  }

  .section-pkl .section-desc {
    font-size: 0.82rem;
  }

  .section-pkl-bg-img {
    width: 135%;
    height: 135%;
    object-position: center center;
  }

  .channel-banner-inner {
    padding: 1.5rem 0;
  }
}

/* =============================================================================
   Scroll & entrance animations (data-anim — di-inject via JS, struktur HTML tetap)
   ============================================================================= */
[data-anim] {
  opacity: 0;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-anim].anim-play {
  opacity: 1;
  transform: none;
}

[data-anim].anim-play:not(.hero-float) {
  transform: none !important;
}

/* Fade */
[data-anim="fade-in"] {
  opacity: 0;
}

[data-anim="fade-out"] {
  opacity: 0;
  transform: scale(1);
}

[data-anim="fade-out"].anim-play {
  opacity: 1;
  transform: scale(1);
}

/* Zoom */
[data-anim="zoom-in"] {
  opacity: 0;
  transform: scale(0.82);
}

[data-anim="zoom-out"] {
  opacity: 0;
  transform: scale(1.14);
}

/* Slide */
[data-anim="slide-left"] {
  opacity: 0;
  transform: translateX(56px);
}

[data-anim="slide-right"] {
  opacity: 0;
  transform: translateX(-56px);
}

/* Hero: animasi saat load */
.hero .hero-badge,
.hero h1,
.hero-lead,
.hero-actions,
.hero-stats,
.hero-visual,
.hero-float {
  transition-duration: 0.9s;
}

.hero-visual.anim-play img {
  animation: hero-img-reveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hero-img-reveal {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

.hero-float {
  animation: float-y 5s ease-in-out infinite;
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.hero-float.anim-play {
  animation: float-y 5s ease-in-out 0.9s infinite !important;
  transform: translateY(0);
}

/* Kartu & item: hover micro-interaction */
.service-card.anim-play:hover,
.bootcamp-card.anim-play:hover,
.pkl-card.anim-play:hover,
.portfolio-item.anim-play:hover,
.why-card.anim-play:hover {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

/* Testimoni: transisi slide + fade antar slide */
.testimonial-slider {
  position: relative;
  min-height: 280px;
  padding-bottom: 0.5rem;
}

.testimonial-slider .slider-nav {
  position: relative;
  z-index: 10;
}

.testimonial-slide {
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-slide[hidden] {
  display: block !important;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px) scale(0.96);
  pointer-events: none;
  visibility: hidden;
}

.testimonial-slide:not([hidden]) {
  position: relative;
  opacity: 1;
  transform: translateX(0) scale(1);
  visibility: visible;
}

.testimonial-slide.slide-from-left:not([hidden]) {
  animation: testimonial-in-left 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-slide.slide-from-right:not([hidden]) {
  animation: testimonial-in-right 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes testimonial-in-left {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes testimonial-in-right {
  from {
    opacity: 0;
    transform: translateX(48px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* CTA band: subtle zoom pulse on button */
.cta-band .btn-white.anim-play {
  animation: cta-glow 3s ease-in-out 1s infinite;
}

@keyframes cta-glow {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  50% {
    box-shadow: 0 14px 40px rgba(255, 255, 255, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {

  [data-anim],
  [data-anim].anim-play {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .hero-float {
    animation: none !important;
  }

  .hero h1 .gradient,
  .hero-title .gradient {
    animation: none !important;
  }

  .fx-orb,
  .hero::after {
    animation: none !important;
  }

  .btn-primary::after {
    display: none;
  }

  .testimonial-slide[hidden] {
    display: none !important;
  }
}

/* Futuristic micro-details */
.hero-visual {
  border: 1px solid rgba(34, 211, 238, 0.2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(34, 211, 238, 0.08);
}

.hero-float {
  border: 1px solid rgba(34, 211, 238, 0.2);
  box-shadow: var(--shadow), 0 0 24px rgba(34, 211, 238, 0.12);
}

.process-item .step-num {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.25), rgba(4, 102, 200, 0.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-card {
  backdrop-filter: blur(8px);
  border-color: rgba(34, 211, 238, 0.1);
}

.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, #0369a1 35%, #0e7490 70%, #164e63 100%);
}

.sidebar-cta {
  border: 1px solid rgba(34, 211, 238, 0.15);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.08);
}

.wa-float {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 20px rgba(37, 211, 102, 0.2);
}

/* =============================================================================
   Mobile — safe area & teks rata kanan-kiri (≤768px)
   ============================================================================= */
@media (max-width: 768px) {
  body.futuristic-ui .nav-shell {
    padding-inline: 0;
  }

  body.futuristic-ui :is(
    .section-desc,
    .hero-lead,
    .channel-banner-text p,
    .bootcamp-card-body > p,
    .pkl-card .bootcamp-card-body p,
    .service-hero .container > p,
    .page-hero .section-desc,
    .detail-grid > div > p,
    .cta-band p,
    .section-about-bg .section-desc,
    .section-about-bg .feature-item p,
    .section-pkl .section-desc,
    .footer-desc,
    .cms-text,
    .cms-body p,
    .cms-section-inner p
  ) {
    text-align: justify;
    text-justify: inter-word;
    text-align-last: start;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-spacing: -0.03em;
    line-height: 1.55;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  .btn,
  .nav-mobile-link,
  .footer-grid a,
  .footer-grid h4,
  .marquee span,
  .service-link,
  .wa-modal-dialog,
  .wa-form-group label,
  .wa-form-group input,
  .wa-form-group textarea {
    font-size: 0.85rem;
  }

  .detail-grid h2 {
    font-size: 1.15rem;
  }

  .detail-grid h3,
  .bootcamp-card-body h3,
  .sidebar-cta h3 {
    font-size: 1rem;
  }

  .contact-form-header h2 {
    font-size: 1.1rem;
  }
}

@media (max-width: 390px) {
  .section {
    padding: 2rem 0;
  }

  .service-card,
  .bootcamp-card-body,
  .product-card-body {
    padding: 1rem;
  }
}