/* ═══════════════════════════════════════════════
   NEXRA — REDESIGN v3
   Clean · Professional · Modern Dark
   Accent: #C2FF00 (vibrant cyberlime)
   Font: Sora + Space Mono
═══════════════════════════════════════════════ */

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

:root {
  --bg:          #030404;
  --bg2:         #050806;
  --bg3:         #08100a;
  --bg-card:     #060a06;
  --accent:      #C2FF00;
  --accent2:     #a8e000;
  --accent-dim:  rgba(194,255,0,0.10);
  --accent-glow: rgba(194,255,0,0.16);
  --white:       #FFFFFF;
  --muted:       rgba(240,239,248,0.45);
  --muted2:      rgba(240,239,248,0.22);
  --border:      rgba(255,255,255,0.06);
  --border2:     rgba(194,255,0,0.16);
  --radius:      12px;
  --radius-sm:   8px;
}

html { scroll-behavior: smooth; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── GRAIN ── */
.grain-overlay {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

/* ── CURSOR ── */
.cursor-dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%); transition: transform 0.1s;
}
.cursor-outline {
  width: 30px; height: 30px; border: 1.5px solid rgba(194,255,0,0.30); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.25s, height 0.25s, border-color 0.25s, transform 0.08s;
}
body.cursor-hover .cursor-outline { width: 48px; height: 48px; border-color: rgba(194,255,0,0.50); }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(8,8,16,0.92);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-color: var(--border);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  transition: padding 0.4s;
}
#navbar.scrolled .nav-container { padding: 14px 40px; }

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.brand-hex { display: flex; align-items: center; }
.brand-text {
  font-family: 'Space Mono', monospace; font-size: 18px; letter-spacing: 4px;
  color: var(--white); font-weight: 700;
}

.nav-center {
  display: flex; gap: 36px; align-items: center;
}
.nav-item {
  color: var(--muted); text-decoration: none; font-size: 12px;
  letter-spacing: 0.5px; font-weight: 500; transition: color 0.2s;
  position: relative;
}
.nav-item::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--accent); transition: width 0.25s;
}
.nav-item:hover { color: var(--white); }
.nav-item:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-login {
  color: var(--muted); font-size: 12px; font-weight: 500;
  text-decoration: none; transition: color 0.2s;
}
.nav-login:hover { color: var(--white); }
.nav-cta {
  background: #C2FF00 !important; color: #030404 !important; padding: 10px 22px;
  border-radius: 6px; font-size: 12px; font-weight: 600; text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: all 0.25s;
  letter-spacing: 0.3px;
}
.nav-cta:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(194,255,0,0.28); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--white);
  border-radius: 2px; transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn-primary {
  background: #C2FF00 !important; color: #030404 !important; padding: 14px 32px;
  border-radius: 8px; font-size: 13px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s; border: none; cursor: pointer; font-family: 'Sora', sans-serif;
  letter-spacing: 0.2px;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(194,255,0,0.30); }
.btn-primary.btn-large { padding: 17px 40px; font-size: 14px; }

.btn-outline {
  background: transparent; color: var(--muted); padding: 14px 28px;
  border-radius: 8px; font-size: 13px; font-weight: 500;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s; border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: rgba(194,255,0,0.35); color: var(--white); }

.btn-outline-light {
  background: transparent; color: rgba(240,239,248,0.7); padding: 14px 28px;
  border-radius: 8px; font-size: 13px; font-weight: 500;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s; border: 1.5px solid rgba(255,255,255,0.15);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }

.btn-text-link {
  color: var(--muted); font-size: 12px; font-weight: 500; text-decoration: none; transition: color 0.2s;
}
.btn-text-link:hover { color: var(--accent); }

/* ── FADE ANIMATION ── */
[data-fade] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1); }
[data-fade="right"] { transform: translateX(30px); }
[data-fade="left"] { transform: translateX(-30px); }
[data-fade].visible { opacity: 1; transform: translate(0,0); }

/* ── SECTION COMMONS ── */
.section { padding: 120px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.eyebrow {
  font-family: 'Space Mono', monospace; font-size: 11px;
  color: var(--accent); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px; opacity: 0.85;
}
.section-title {
  font-size: clamp(36px,4.5vw,60px); line-height: 1.08; font-weight: 700;
  margin-bottom: 20px;
}
.section-title strong { display: block; color: var(--white); }
.section-title .title-outline {
  display: block; color: transparent;
  -webkit-text-stroke: 1.5px rgba(240,239,248,0.22);
}
.section-desc {
  font-size: 14px; line-height: 1.8; color: var(--muted); font-weight: 300; max-width: 440px;
}
.section-head { margin-bottom: 72px; }
.section-head.centered { text-align: center; margin-bottom: 72px; }
.section-head.centered .section-desc { margin: 0 auto; }
.section-head-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; padding: 120px 0 80px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 55% 45%, black 0%, transparent 72%);
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  right: -8%; top: -15%;
  background: radial-gradient(circle, rgba(194,255,0,0.08) 0%, transparent 65%);
}
.hero-orb-2 {
  width: 400px; height: 400px;
  left: 5%; bottom: 5%;
  background: radial-gradient(circle, rgba(194,255,0,0.05) 0%, transparent 65%);
  animation-delay: -5s;
}
@keyframes orbFloat { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }

.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 2; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px;
  background: var(--accent-dim); border: 1px solid var(--border2);
  padding: 8px 16px; border-radius: 99px;
}
.badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
.hero-badge span:last-child { font-size: 11px; color: rgba(240,239,248,0.7); letter-spacing: 0.5px; }

.hero-title {
  font-size: clamp(48px,6vw,88px); line-height: 0.95; font-weight: 700; margin-bottom: 28px;
}
.title-line { display: block; }
.title-line.solid { color: var(--white); }
.title-line.outline { color: transparent; -webkit-text-stroke: 1.5px rgba(240,239,248,0.2); }
.title-line.accent { color: #C2FF00 !important; text-shadow: none; }

.hero-desc { font-size: 14px; line-height: 1.85; color: var(--muted); margin-bottom: 40px; max-width: 420px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; align-items: center; margin-bottom: 40px; flex-wrap: wrap; }

.hero-trust { display: flex; align-items: center; gap: 12px; }
.trust-avatars { display: flex; }
.trust-avatar {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--bg3), var(--accent-dim));
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--muted); margin-left: -8px;
}
.trust-avatar:first-child { margin-left: 0; }
.trust-text { font-size: 12px; color: var(--muted); }
.trust-text strong { color: var(--white); }

/* Hero Visual */
.hero-visual { position: relative; }
.hv-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.hv-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hv-card-icon {
  width: 40px; height: 40px; border-radius: 8px; background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.hv-card-title { font-size: 13px; font-weight: 600; }
.hv-card-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }
.hv-status { font-size: 10px; color: #4ade80; margin-left: auto; font-family: 'Space Mono', monospace; }

.hv-progress-wrap { margin-bottom: 20px; }
.hv-progress-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.hv-pct { color: var(--accent); font-family: 'Space Mono', monospace; }
.hv-progress-track { height: 4px; background: var(--border); border-radius: 4px; overflow: hidden; }
.hv-progress-bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), #86efac); border-radius: 4px; transition: width 0.1s; }

.hv-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.hv-field { display: flex; align-items: center; gap: 10px; }
.hv-field-key { font-size: 10px; font-family: 'Space Mono', monospace; color: var(--muted2); width: 60px; flex-shrink: 0; }
.hv-field-line { flex: 1; height: 6px; background: var(--border); border-radius: 4px; overflow: hidden; }
.hv-field-line > div { height: 100%; background: var(--accent-dim); border-radius: 4px; animation: fieldLoad 2s ease-in-out infinite; }
.hv-field:nth-child(1) .hv-field-line > div { width: 85%; animation-delay: 0.2s; }
.hv-field:nth-child(2) .hv-field-line > div { width: 92%; animation-delay: 0.5s; }
.hv-field:nth-child(3) .hv-field-line > div { width: 70%; animation-delay: 0.8s; }
@keyframes fieldLoad { 0%,100%{opacity:0.4} 50%{opacity:1} }

.hv-footer-stats { display: flex; gap: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.hv-stat { display: flex; flex-direction: column; gap: 2px; }
.hv-stat-n { font-size: 16px; font-weight: 700; color: var(--accent); font-family: 'Space Mono', monospace; }
.hv-stat-l { font-size: 10px; color: var(--muted); }

.hv-float {
  position: absolute; background: var(--bg-card); border: 1px solid var(--border2);
  border-radius: 10px; padding: 10px 14px; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3); font-size: 11px;
}
.hv-float-top { top: -20px; right: -24px; animation: floatAnim 4s ease-in-out infinite; }
.hv-float-bottom { bottom: -20px; left: -24px; animation: floatAnim 4s ease-in-out infinite reverse; animation-delay: -2s; }
@keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hv-float span:nth-child(2) { font-weight: 700; color: var(--white); }
.float-label { color: var(--muted); font-size: 10px; }

/* ── TICKER ── */
.ticker-wrap { overflow: hidden; padding: 18px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ticker-track { display: flex; gap: 0; animation: ticker 30s linear infinite; width: max-content; }
.ticker-item { padding: 0 28px; font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: 0.5px; white-space: nowrap; display: flex; align-items: center; gap: 12px; }
.ticker-dot { color: var(--accent); font-size: 8px; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── STATS ── */
.stats-section { padding: 72px 0; border-bottom: 1px solid var(--border); }
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { display: flex; flex-direction: column; gap: 6px; padding: 0 40px; border-right: 1px solid var(--border); }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Space Mono', monospace; font-size: clamp(32px,3.5vw,52px); font-weight: 700; color: var(--accent); line-height: 1; }
.stat-label { font-size: 12px; color: var(--muted); }

/* ── ABOUT ── */
.about-section { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-left {}
.about-desc { font-size: 14px; line-height: 1.9; color: var(--muted); font-weight: 300; margin-bottom: 36px; }
.about-image-placeholder {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  background: var(--bg3); border: 1px solid var(--border); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}
.about-image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted2); font-size: 11px; text-align: center; padding: 20px; }
.about-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.about-pill {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 20px; display: flex; flex-direction: column; gap: 4px;
}
.pill-num { font-family: 'Space Mono', monospace; font-size: 24px; font-weight: 700; color: var(--accent); }
.pill-label { font-size: 11px; color: var(--muted); }
.about-cards { display: flex; flex-direction: column; gap: 12px; }
.about-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 24px; }
.about-card-title { font-size: 12px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.about-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── FEATURES ── */
.features-section {}
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 0; }
.feat-card {
  background: var(--bg-card); border: 1px solid var(--border); padding: 36px 32px;
  transition: all 0.35s; position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 0 0, var(--accent-dim), transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.feat-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.feat-card:hover::before { opacity: 1; }
.feat-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.feat-num { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--muted2); }
.feat-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; color: var(--accent); transition: background 0.25s; }
.feat-card:hover .feat-icon { background: rgba(194,255,0,0.20); }
.feat-title { font-size: 16px; font-weight: 600; margin-bottom: 12px; color: var(--white); }
.feat-desc { font-size: 13px; line-height: 1.75; color: var(--muted); margin-bottom: 24px; font-weight: 300; }
.feat-link { font-size: 12px; color: var(--accent); text-decoration: none; display: flex; align-items: center; gap: 6px; font-weight: 500; transition: gap 0.2s; }
.feat-link:hover { gap: 10px; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--bg2); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.how-desc { font-size: 14px; line-height: 1.85; color: var(--muted); font-weight: 300; margin-bottom: 40px; }
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-num { font-family: 'Space Mono', monospace; font-size: 14px; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.step-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* Terminal */
.terminal-wrap { position: sticky; top: 120px; }
.terminal { background: #0a0a14; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
.terminal-bar { background: #111124; padding: 14px 18px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border); }
.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-dot.red { background: #ff5f57; }
.t-dot.yellow { background: #FFBD2E; }
.t-dot.green { background: #27C93F; }
.t-title { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--muted2); margin-left: 8px; }
.terminal-body { padding: 24px; font-family: 'Space Mono', monospace; font-size: 11.5px; line-height: 2; }
.t-prompt { color: var(--muted2); }
.t-cmd { color: var(--accent); }
.t-arg { color: rgba(240,239,248,0.55); }
.t-gap { height: 8px; }
.t-ok { color: #27C93F; }
.t-success { color: var(--accent); font-weight: 700; }
.t-val { color: var(--white); opacity: 0.85; }
.t-muted { color: var(--muted2); }
.t-cursor { display: inline-block; width: 8px; height: 14px; background: var(--accent); vertical-align: middle; animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── INDONESIA MAP ── */
.map-section { background: var(--bg); }
.map-container { position: relative; background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; padding: 0; }
.indonesia-map { width: 100%; height: auto; display: block; }
.island-path { fill: rgba(194,255,0,0.06); stroke: rgba(194,255,0,0.28); stroke-width: 1.5; transition: fill 0.3s; }
.island-path:hover { fill: rgba(194,255,0,0.16); }
.hex-bg {}
.map-node { cursor: pointer; transition: r 0.2s; }
.map-node:hover { r: 6; }
.map-node-ring { animation: nodeRing 2.5s ease-in-out infinite; }
@keyframes nodeRing { 0%,100%{opacity:0.4;transform:scale(1)} 50%{opacity:0.8;transform:scale(1.3)} }
.map-label { font-family: 'Sora', sans-serif; font-size: 9px; fill: rgba(240,239,248,0.65); font-weight: 500; pointer-events: none; }
.map-lines path { stroke-dashoffset: 0; animation: dashAnim 3s linear infinite; }
@keyframes dashAnim { to{stroke-dashoffset:-14} }

.map-legend {
  display: flex; flex-wrap: wrap; gap: 10px; padding: 20px 28px;
  border-top: 1px solid var(--border);
}
.map-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 99px; font-size: 11px; color: var(--muted);
  transition: all 0.2s;
}
.map-pill:hover { border-color: var(--border2); color: var(--white); }
.map-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── PRICING ── */
.pricing-section { background: var(--bg2); }
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.pkg-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 32px 28px; display: flex; flex-direction: column; position: relative; transition: all 0.3s;
}
.pkg-card:hover { transform: translateY(-6px); border-color: var(--border2); }
.pkg-card.featured {
  background: linear-gradient(160deg, #160e0a, #0e0e1a);
  border-color: var(--accent); box-shadow: 0 0 0 1px rgba(194,255,0,0.15), 0 32px 64px rgba(194,255,0,0.10);
}
.pkg-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; padding: 4px 14px;
  border-radius: 99px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; white-space: nowrap;
}
.pkg-name { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 2px; color: var(--muted); margin-bottom: 16px; }
.pkg-price { font-family: 'Space Mono', monospace; font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.pkg-price span { font-size: 12px; color: var(--muted); font-weight: 400; }
.pkg-desc { font-size: 12px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.pkg-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 24px; }
.pkg-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--muted); line-height: 1.5; }
.pkg-features li svg { flex-shrink: 0; margin-top: 1px; }
.pkg-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 8px; font-size: 12px; font-weight: 600;
  text-decoration: none; transition: all 0.25s; border: 1.5px solid var(--border);
  color: var(--muted); background: transparent;
}
.pkg-btn:hover { border-color: rgba(194,255,0,0.35); color: var(--white); }
.pkg-btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.pkg-btn-accent:hover { background: var(--accent2); border-color: var(--accent2); color: #fff; box-shadow: 0 8px 24px rgba(194,255,0,0.28); }

/* ── TESTIMONI ── */
.testi-section { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: border-color 0.3s; }
.testi-card:hover { border-color: var(--border2); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-text { font-size: 13px; color: var(--muted); line-height: 1.8; font-weight: 300; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testi-avatar-init { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-dim); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--accent); }
.testi-name { font-size: 13px; font-weight: 600; }
.testi-role { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── BLOG ── */
.blog-section { background: var(--bg2); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.blog-thumb-wrap { display: block; aspect-ratio: 16/9; overflow: hidden; position: relative; }
.blog-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-thumb { transform: scale(1.05); }
.blog-thumb-empty { background: var(--bg3); display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; }
.blog-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(8,8,16,0.6)); }
.blog-body { padding: 24px; }
.blog-cat { font-size: 10px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.blog-title { font-size: 15px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.blog-title a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.blog-title a:hover { color: var(--accent); }
.blog-excerpt { font-size: 12px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; font-weight: 300; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; }
.blog-date { font-size: 11px; color: var(--muted2); font-family: 'Space Mono', monospace; }
.blog-read { font-size: 11px; color: var(--accent); text-decoration: none; font-weight: 600; transition: gap 0.2s; }

/* ── CTA ── */
.cta-section {
  padding: 140px 40px; text-align: center; position: relative;
  background: var(--bg); overflow: hidden;
}
.cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.cta-orb {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(194,255,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title { font-size: clamp(40px,5vw,72px); font-weight: 700; line-height: 1.05; margin-bottom: 20px; }
.cta-desc { font-size: 14px; color: var(--muted); line-height: 1.8; font-weight: 300; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
#footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 80px 0 40px; }
.footer-wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.footer-top { display: grid; grid-template-columns: 300px 1fr; gap: 80px; margin-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Space Mono', monospace; font-size: 16px; letter-spacing: 3px; color: var(--white); text-decoration: none; font-weight: 700; margin-bottom: 16px; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; transition: all 0.25s;
}
.social-link:hover { border-color: var(--border2); color: var(--accent); }
.footer-nav-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.footer-nav-col { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-label { font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.footer-nav-col a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-nav-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--border); }
.footer-copy { font-size: 12px; color: var(--muted2); }
.footer-made { font-size: 12px; color: var(--muted2); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .about-grid, .how-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .stat-item { border-right: none; padding: 0; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav-cols { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  /* Sidebar menggantikan mobile dropdown - lihat bagian Sidebar di bawah */
  .pricing-grid, .features-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; }
  .section-head-inner { flex-direction: column; }
  .section-title { font-size: clamp(28px,7vw,44px); }
  .footer-nav-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .how-grid { grid-template-columns: 1fr; }
  .terminal-wrap { position: static; }
  .hv-float-top, .hv-float-bottom { display: none; }
}

/* ══════════════════════════════════════════
   LANGUAGE SWITCHER (Desktop Navbar)
══════════════════════════════════════════ */
.lang-switcher {
  position: relative;
}
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); border-radius: 8px;
  padding: 7px 10px; font-size: 12px; font-weight: 500;
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.lang-toggle:hover { color: var(--white); border-color: var(--border2); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #141418; border: 1px solid var(--border);
  border-radius: 10px; padding: 6px; min-width: 140px;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: all 0.2s ease; z-index: 200;
}
.lang-dropdown.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 8px;
  width: 100%; padding: 8px 12px; border-radius: 7px;
  background: transparent; border: none; color: var(--muted);
  font-size: 13px; font-family: inherit; cursor: pointer;
  transition: all 0.15s; text-align: left;
}
.lang-option:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.lang-option.active { color: var(--accent); }

/* ══════════════════════════════════════════
   MOBILE SIDEBAR DRAWER
══════════════════════════════════════════ */
.mobile-sidebar {
  display: none;
  position: fixed; inset: 0; z-index: 900;
}
.mobile-sidebar.open { display: block; }
.sidebar-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease;
}
.sidebar-drawer {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: #0f0f17;
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  padding-bottom: 32px;
}
.mobile-sidebar.open .sidebar-drawer { transform: translateX(0); }

.sidebar-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 20px;
  border-bottom: 1px solid var(--border);
}
.sidebar-close {
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); border-radius: 8px; padding: 7px;
  cursor: pointer; display: flex; align-items: center;
  transition: all 0.2s;
}
.sidebar-close:hover { color: var(--white); border-color: var(--border2); }

.sidebar-nav {
  display: flex; flex-direction: column;
  padding: 8px 12px;
}
.sidebar-link {
  display: block; padding: 14px 14px;
  font-size: 1rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  border-radius: 10px; transition: all 0.2s;
  border-bottom: 1px solid transparent;
}
.sidebar-link:hover { color: var(--white); background: rgba(255,255,255,0.04); }

.sidebar-divider { height: 1px; background: var(--border); margin: 4px 24px; }

.sidebar-actions {
  display: flex; flex-direction: column; gap: 10px;
  padding: 16px 24px;
}
.sidebar-btn-login {
  display: block; text-align: center;
  padding: 13px; border-radius: 10px;
  border: 1px solid var(--border); color: var(--white);
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
}
.sidebar-btn-login:hover { border-color: var(--border2); background: rgba(255,255,255,0.04); }
.sidebar-btn-register {
  display: block; text-align: center;
  padding: 13px; border-radius: 10px;
  background: var(--accent); color: #fff;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
}
.sidebar-btn-register:hover { background: var(--accent2); transform: translateY(-1px); }

.sidebar-lang-row {
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.sidebar-lang-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--muted); font-weight: 500;
}
.sidebar-lang-btns { display: flex; gap: 8px; }
.sidebar-lang-opt {
  padding: 7px 14px; border-radius: 8px;
  border: 1px solid var(--border); background: transparent;
  color: var(--muted); font-size: 0.82rem; font-family: inherit;
  cursor: pointer; font-weight: 600; transition: all 0.2s;
}
.sidebar-lang-opt:hover { color: var(--white); }
.sidebar-lang-opt.active {
  border-color: var(--accent); color: var(--accent);
  background: rgba(194,255,0,0.06);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ══════════════════════════════════════════
   FIX: Sembunyikan nav-center & nav-right di mobile
   Tampilkan tombol hamburger
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-center { display: none !important; }
  .nav-right   { display: none !important; }
  .nav-toggle  { display: flex !important; }
}

/* ══════════════════════════════════════════════════
   CYBERLIME OVERRIDES & GLOBAL ANIMATIONS
══════════════════════════════════════════════════ */

:root {
  --accent:      #C2FF00;
  --accent2:     #a8e000;
  --accent-dim:  rgba(194,255,0,0.10);
  --accent-glow: rgba(194,255,0,0.18);
  --bg:          #030404;
  --bg2:         #050806;
  --bg3:         #08100a;
  --bg-card:     #060a06;
  --border:      rgba(255,255,255,0.06);
  --border2:     rgba(194,255,0,0.18);
}

/* Lime CTA buttons: dark text for readability */
.nav-cta, .sidebar-btn-register, .pkg-card.popular .pkg-cta,
.hero-cta, .cta-btn-primary {
  color: #030404 !important;
  font-weight: 700 !important;
}
.title-outline { 
  color: var(--accent) !important;
  -webkit-text-stroke: 0px;
  text-shadow: none;
}

/* ── GLOBAL PAGE LOAD ANIMATION ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 0px rgba(194,255,0,0); }
  50%     { box-shadow: 0 0 28px rgba(194,255,0,0.22); }
}
@keyframes floatY {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-10px); }
}
@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}
@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes scanLine {
  0%   { top: 0%; opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* ── ANIMATED GRADIENT BACKGROUND ACCENT ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(194,255,0,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 75%, rgba(194,255,0,0.03) 0%, transparent 60%);
}

/* ── FEAT CARDS: glow on hover ── */
.feat-card {
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s !important;
}
.feat-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(194,255,0,0.2) !important;
  box-shadow: 0 16px 40px rgba(194,255,0,0.08), 0 0 0 1px rgba(194,255,0,0.08) !important;
}
.feat-icon {
  
}

/* ── STAT NUMBERS: shimmer effect ── */
.stat-num {
  background: linear-gradient(90deg, var(--accent) 30%, #fff 50%, var(--accent) 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ── NAVBAR: lime accent glow on scroll ── */
#navbar.scrolled {
  border-color: rgba(194,255,0,0.12) !important;
}

/* ── STEP ITEMS: hover lift ── */
.step-item {
  transition: transform 0.25s, background 0.25s !important;
  border-radius: 12px; padding: 12px;
}
.step-item:hover {
  transform: translateX(6px);
  background: rgba(194,255,0,0.04);
}
.step-num {
  color: var(--accent) !important;
  text-shadow: none;
}

/* ── PRICING CARDS ── */
.pkg-card { transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s !important; }
.pkg-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(194,255,0,0.18) !important;
  box-shadow: 0 24px 60px rgba(194,255,0,0.08) !important;
}
.pkg-card.popular { border-color: rgba(194,255,0,0.3) !important; }

/* ── HERO TERMINAL: scan line effect ── */
.terminal-wrap { position: relative; overflow: hidden; }
.terminal-wrap::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(194,255,0,0.25), transparent);
  animation: scanLine 4s linear infinite;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════
   RUNNING TEXT / MARQUEE TESTIMONI
══════════════════════════════════════════════════ */
.testi-section { background: var(--bg); overflow: hidden; }
.testi-marquee-wrap {
  position: relative;
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.testi-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: marqueeRun 40s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }
.testi-track-2 {
  animation-direction: reverse;
  animation-duration: 50s;
  margin-top: 16px;
}
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testi-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.testi-card:hover {
  border-color: rgba(194,255,0,0.18);
  box-shadow: 0 12px 32px rgba(194,255,0,0.06);
}
/* Override grid for marquee */
.testi-grid { display: none; }

/* ══════════════════════════════════════════════════
   PETA HEXAGONAL - ENHANCED
══════════════════════════════════════════════════ */
.map-section { background: var(--bg2); position: relative; overflow: hidden; }
.map-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(194,255,0,0.03) 0%, transparent 70%);
  pointer-events: none;
}
#hexMapCanvas {
  width: 100% !important;
  height: auto !important;
  display: block;
  border-radius: 16px 16px 0 0;
}
.map-container {
  background: #060a06;
  border: 1px solid rgba(194,255,0,0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(194,255,0,0.04);
}
.map-legend {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 20px 24px;
  border-top: 1px solid rgba(194,255,0,0.08);
  background: rgba(194,255,0,0.02);
}
.map-pill {
  animation: none;
  transition: all 0.25s !important;
}
.map-pill:hover {
  border-color: rgba(194,255,0,0.25) !important;
  color: var(--accent) !important;
  background: rgba(194,255,0,0.06) !important;
  transform: translateY(-2px);
}
.map-pill-dot { background: var(--accent) !important; box-shadow: 0 0 8px rgba(194,255,0,0.5); }

/* ══════════════════════════════════════════════════
   3 LANGKAH - REDESIGN MODERN
══════════════════════════════════════════════════ */
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 16px; position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute; left: 29px; top: 68px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(194,255,0,0.3), transparent);
}
.step-num {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1.5px solid rgba(194,255,0,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; font-family: 'Space Mono', monospace;
  background: rgba(194,255,0,0.06);
  transition: all 0.3s;
}
.step-item:hover .step-num {
  border-color: var(--accent);
  background: rgba(194,255,0,0.12);
  box-shadow: 0 0 20px rgba(194,255,0,0.2);
}

/* ══════════════════════════════════════════════════
   MOBILE FIXES
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Running text tetap jalan di mobile */
  .testi-track { animation: marqueeRun 28s linear infinite; }
  .testi-track-2 { animation-duration: 36s; }
  /* Disable hover-pause on touch */
  .testi-track:hover { animation-play-state: running; }
  .testi-card { width: 280px; padding: 20px; }
}

/* ════════════════════════════════════════
   FORCE CYBERLIME — Override semua sisa orange
════════════════════════════════════════ */
:root {
  --accent:  #C2FF00 !important;
  --accent2: #a8e000 !important;
}

/* Hero orbs */
.hero-orb-1 { background: radial-gradient(circle, rgba(194,255,0,0.09) 0%, transparent 65%) !important; }
.hero-orb-2 { background: radial-gradient(circle, rgba(194,255,0,0.05) 0%, transparent 65%) !important; }

/* Buttons */
.btn-primary, .nav-cta, .hero-cta, .sidebar-btn-register {
  background: #C2FF00 !important;
  color: #030404 !important;
  border-color: #C2FF00 !important;
}
.btn-primary:hover, .nav-cta:hover { background: #a8e000 !important; }

/* Title accent */
.title-line.accent, .title-outline {
  color: #C2FF00 !important;
  text-shadow: none !important;
}

/* Badge dot */
.badge-dot { background: #C2FF00 !important; }

/* Progress bar */
.hv-progress-bar { background: linear-gradient(90deg, #C2FF00, #86efac) !important; }

/* Stat numbers */
.stat-num { color: #C2FF00 !important; }

/* Eyebrow / labels */
.eyebrow { color: #C2FF00 !important; }

/* Star rating */
.testi-stars svg { fill: #C2FF00 !important; }

/* Cursor */
.cursor-dot { background: #C2FF00 !important; }
.cursor-outline { border-color: rgba(194,255,0,0.35) !important; }

/* Map pill dot */
.map-pill-dot { background: #C2FF00 !important; box-shadow: 0 0 8px rgba(194,255,0,0.5); }

/* Popular badge */
.pkg-badge { background: #C2FF00 !important; color: #030404 !important; }
.pkg-btn-accent { background: #C2FF00 !important; color: #030404 !important; border-color: #C2FF00 !important; }
.pkg-btn-accent:hover { background: #a8e000 !important; }

/* ════════════════════════════════════════
   JEPARA MAP SECTION
════════════════════════════════════════ */
.jepara-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.jepara-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(194,255,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.jepara-map-wrap {
  position: relative;
  background: #040704;
  border: 1px solid rgba(194,255,0,0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(194,255,0,0.05), inset 0 0 40px rgba(0,0,0,0.3);
}
.jepara-map-wrap canvas {
  width: 100% !important;
  height: auto !important;
  display: block;
}
.jepara-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.jepara-info-card {
  background: var(--bg-card);
  border: 1px solid rgba(194,255,0,0.10);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
}
.jepara-info-card:hover {
  border-color: rgba(194,255,0,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(194,255,0,0.07);
}
.jepara-info-num {
  font-family: 'Space Mono', monospace;
  font-size: 28px; font-weight: 700;
  color: #C2FF00;
  text-shadow: none;
}
.jepara-info-label {
  font-size: 12px; color: var(--muted);
  margin-top: 4px; font-weight: 400;
}
.jepara-kec-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px; justify-content: center;
}
.jepara-kec-pill {
  display: flex; align-items: center; gap: 6px;
  background: var(--bg-card); border: 1px solid rgba(194,255,0,0.12);
  border-radius: 99px; padding: 6px 14px;
  font-size: 11px; color: var(--muted);
  transition: all 0.2s; cursor: default;
}
.jepara-kec-pill:hover {
  border-color: rgba(194,255,0,0.3);
  color: #C2FF00; background: rgba(194,255,0,0.05);
}
.jepara-kec-pill span {
  width: 5px; height: 5px; border-radius: 50%;
  background: #C2FF00; flex-shrink: 0;
  box-shadow: 0 0 6px rgba(194,255,0,0.6);
}

@media (max-width: 768px) {
  .jepara-info-grid { grid-template-columns: repeat(2,1fr); }
}

/* ═══════════════════════════════════════════
   NEXRA v4 — CYBERLIME MASTER OVERRIDE
   Semua warna aksen = #C2FF00 (lime neon)
═══════════════════════════════════════════ */

/* 1. Root variables */
:root {
  --accent:      #C2FF00 !important;
  --accent2:     #a8e000 !important;
  --accent-dim:  rgba(194,255,0,0.10) !important;
  --accent-glow: rgba(194,255,0,0.18) !important;
  --border2:     rgba(194,255,0,0.16) !important;
  --bg:          #030404;
  --bg2:         #050806;
  --bg3:         #08100a;
  --bg-card:     #060a06;
}

/* 2. Paksa semua elemen aksen ke lime */
.title-line.accent,
.title-outline,
.eyebrow,
.stat-num,
.step-num,
.feat-link,
.about-card-title,
.t-cmd, .t-success,
.pill-num,
.hv-pct, .hv-stat-n,
.pkg-check, .pkg-price .price,
.testi-name,
.nav-item:hover,
.lang-toggle:hover { color: #C2FF00 !important; }

.title-line.accent,
.title-outline {
  text-shadow: none !important;
}

/* 3. Buttons — lime bg, dark text */
.btn-primary,
.nav-cta,
.sidebar-btn-register,
.pkg-btn-accent,
.hero-cta { 
  background: #C2FF00 !important;
  color: #030404 !important;
  border-color: #C2FF00 !important;
  font-weight: 700 !important;
}
.btn-primary:hover,
.nav-cta:hover,
.sidebar-btn-register:hover,
.pkg-btn-accent:hover { background: #a8e000 !important; }

/* 4. Dots & badges */
.badge-dot,
.map-pill-dot,
.ticker-dot { background: #C2FF00 !important; }
.pkg-badge { background: #C2FF00 !important; color: #030404 !important; font-weight: 700 !important; }

/* 5. Borders & glows */
.pkg-card.popular,
.pkg-card.featured {
  border-color: rgba(194,255,0,0.3) !important;
  box-shadow: 0 0 40px rgba(194,255,0,0.08) !important;
}
.feat-card:hover { border-color: rgba(194,255,0,0.2) !important; }

/* 6. Hero orbs — harus lime, bukan orange */
.hero-orb-1 {
  background: radial-gradient(circle, rgba(194,255,0,0.09) 0%, transparent 65%) !important;
}
.hero-orb-2 {
  background: radial-gradient(circle, rgba(194,255,0,0.05) 0%, transparent 65%) !important;
}

/* 7. Progress bar */
.hv-progress-bar { background: linear-gradient(90deg, #C2FF00, #86efac) !important; }

/* 8. Cursor */
.cursor-dot { background: #C2FF00 !important; }
.cursor-outline { border-color: rgba(194,255,0,0.35) !important; }
body.cursor-hover .cursor-outline { border-color: rgba(194,255,0,0.55) !important; }

/* 9. Scrollbar */
::-webkit-scrollbar-thumb { background: #C2FF00 !important; }

/* 10. Step connector line */
.step-item:not(:last-child)::after {
  content:''; position:absolute; left:29px; top:68px; bottom:0;
  width:1px; background: linear-gradient(to bottom, rgba(194,255,0,0.3), transparent);
}

/* ═══════════════════════════════════════════
   TESTIMONI MARQUEE — clean rebuild
═══════════════════════════════════════════ */
.testi-section { background: var(--bg); overflow: hidden; }

.testi-marquee-outer {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.testi-marquee-inner {
  display: flex;
  flex-direction: row;
  width: max-content;
  gap: 18px;
  padding: 8px 0;
  animation: tcMarquee 45s linear infinite;
  will-change: transform;
}

.testi-marquee-inner.testi-marquee-rev {
  animation-direction: reverse;
  animation-duration: 55s;
}

@keyframes tcMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Pause on hover — desktop only */
@media (hover: hover) {
  .testi-marquee-inner:hover { animation-play-state: paused; }
}

/* Testimoni card */
.tc {
  flex-shrink: 0;
  width: 300px;
  background: #060a06;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
}
.tc:hover {
  border-color: rgba(194,255,0,0.22);
  box-shadow: 0 8px 32px rgba(194,255,0,0.07);
  transform: translateY(-3px);
}
.tc-stars { display:flex; gap:3px; }
.tc-text {
  font-size: 13px; line-height: 1.7;
  color: rgba(240,239,248,0.75);
  font-weight: 300;
  flex: 1;
}
.tc-author { display:flex; align-items:center; gap:10px; }
.tc-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 1.5px solid rgba(194,255,0,0.25);
}
.tc-init {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(194,255,0,0.10);
  border: 1.5px solid rgba(194,255,0,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #C2FF00;
}
.tc-name { font-size: 13px; font-weight: 600; color: #C2FF00; }
.tc-role { font-size: 11px; color: rgba(240,239,248,0.40); margin-top:1px; }

/* Mobile: faster, no pause */
@media (max-width: 768px) {
  .tc { width: 260px; padding: 18px; }
  .testi-marquee-inner { animation-duration: 30s; }
  .testi-marquee-inner.testi-marquee-rev { animation-duration: 38s; }
}

/* ═══════════════════════════════════════════
   PETA MAP — Cyberlime
═══════════════════════════════════════════ */
.map-section { background: var(--bg2); }
.map-container {
  background: #040704;
  border: 1px solid rgba(194,255,0,0.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(194,255,0,0.04);
}
#hexMapCanvas { width:100% !important; height:auto !important; display:block; }
.map-legend {
  display:flex; flex-wrap:wrap; gap:10px; padding:18px 24px;
  border-top: 1px solid rgba(194,255,0,0.08);
}
.map-pill {
  display:inline-flex; align-items:center; gap:6px;
  background: #060a06; border: 1px solid rgba(255,255,255,0.07);
  padding:6px 14px; border-radius:99px; font-size:11px; color:rgba(240,239,248,0.55);
  transition: all 0.2s;
}
.map-pill:hover { border-color:rgba(194,255,0,0.3); color:#C2FF00; background:rgba(194,255,0,0.05); }
.map-pill-dot { width:6px;height:6px;border-radius:50%;background:#C2FF00;flex-shrink:0;box-shadow:0 0 6px rgba(194,255,0,0.6); }

/* ═══════════════════════════════════════════
   GLOBAL ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes glowPulse { 0%,100%{box-shadow:0 0 0 rgba(194,255,0,0)} 50%{box-shadow:0 0 28px rgba(194,255,0,0.18)} }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes shimmer { from{background-position:-200% center} to{background-position:200% center} }

body::before {
  content:''; position:fixed; inset:0; z-index:-1; pointer-events:none;
  background:
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(194,255,0,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 75%, rgba(194,255,0,0.03) 0%, transparent 60%);
}
.feat-card { transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s !important; }
.feat-card:hover { transform:translateY(-6px) !important; border-color:rgba(194,255,0,0.2) !important; box-shadow:0 16px 40px rgba(194,255,0,0.07) !important; }
.pkg-card { transition:transform 0.3s,border-color 0.3s,box-shadow 0.3s !important; }
.pkg-card:hover { transform:translateY(-8px) !important; }
.terminal-wrap { position:relative; overflow:hidden; }
.terminal-wrap::after {
  content:''; position:absolute; left:0; right:0; height:2px;
  background:linear-gradient(90deg,transparent,rgba(194,255,0,0.2),transparent);
  animation:scanLine 4s linear infinite; pointer-events:none;
}
@keyframes scanLine { 0%{top:0%;opacity:0} 10%{opacity:0.6} 90%{opacity:0.6} 100%{top:100%;opacity:0} }

/* ═══════════════════════════════════════════════════════
   NEXRA v7 — FINAL DESIGN SYSTEM
   Background: #020303 (ultra deep black)
   Text: #FFFFFF crisp
   Accent: #C2FF00 (cyberlime, NO glow/neon on text)
═══════════════════════════════════════════════════════ */

:root {
  --bg:      #020303 !important;
  --bg2:     #040605 !important;
  --bg3:     #060a06 !important;
  --bg-card: #050805 !important;
  --white:   #FFFFFF !important;
  --muted:   rgba(255,255,255,0.5) !important;
  --muted2:  rgba(255,255,255,0.28) !important;
  --border:  rgba(255,255,255,0.07) !important;
}

/* No neon on ANY text */
* { text-shadow: none !important; }
.title-line.accent { color: #C2FF00 !important; text-shadow: none !important; }
.title-outline     { color: #C2FF00 !important; text-shadow: none !important; }

/* ─── BODY background ─── */
body { background: #020303 !important; }
body::before {
  background:
    radial-gradient(ellipse 55% 35% at 10% 15%, rgba(194,255,0,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 90% 80%, rgba(194,255,0,0.02) 0%, transparent 60%) !important;
}

/* ─── HERO section ─── */
.hero { background: #020303 !important; }

/* ═══════════════════════════════════════════════════════
   FITUR SECTION — Cyberlime background
═══════════════════════════════════════════════════════ */
.features-section {
  background: linear-gradient(180deg, #0d1a00 0%, #0a1400 50%, #060e00 100%) !important;
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(194,255,0,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 100%, rgba(194,255,0,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.features-section .eyebrow { color: #C2FF00 !important; }
.features-section .section-title strong { color: #FFFFFF !important; }
.features-section .title-outline { color: #C2FF00 !important; }
.features-section .section-desc { color: rgba(255,255,255,0.6) !important; }

/* Feature cards on lime bg */
.feat-card {
  background: rgba(0,0,0,0.5) !important;
  border: 1px solid rgba(194,255,0,0.12) !important;
  border-radius: 16px !important;
  padding: 28px !important;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s !important;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.feat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0 0, rgba(194,255,0,0.05), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.feat-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(194,255,0,0.30) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(194,255,0,0.15) !important;
}
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  background: rgba(194,255,0,0.12) !important;
  border: 1px solid rgba(194,255,0,0.2) !important;
  color: #C2FF00 !important;
}
.feat-card:hover .feat-icon { background: rgba(194,255,0,0.22) !important; }
.feat-title { color: #FFFFFF !important; font-size: 15px !important; font-weight: 600 !important; }
.feat-desc  { color: rgba(255,255,255,0.55) !important; font-size: 13px !important; line-height: 1.75 !important; }
.feat-num   { color: rgba(194,255,0,0.4) !important; font-size: 10px !important; }
.feat-link  { color: #C2FF00 !important; font-size: 12px !important; font-weight: 500 !important; text-decoration: none !important; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
}
@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 640px)  { .features-grid { grid-template-columns: 1fr !important; } }

/* ═══════════════════════════════════════════════════════
   TESTIMONI MARQUEE — Cyberlime background band
═══════════════════════════════════════════════════════ */
.testi-section {
  background: #020303 !important;
  position: relative;
  overflow: hidden;
}
.testi-marquee-outer {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.testi-marquee-inner {
  display: flex;
  flex-direction: row;
  width: max-content;
  gap: 16px;
  padding: 6px 0;
  animation: tcMarquee 45s linear infinite;
  will-change: transform;
}
.testi-marquee-inner.testi-marquee-rev {
  animation-direction: reverse;
  animation-duration: 55s;
}
@keyframes tcMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (hover: hover) {
  .testi-marquee-inner:hover { animation-play-state: paused; }
}

/* Testimoni card — lime accent on dark */
.tc {
  flex-shrink: 0;
  width: 290px;
  background: #060a06;
  border: 1px solid rgba(194,255,0,0.12);
  border-left: 3px solid #C2FF00;
  border-radius: 14px;
  padding: 20px 20px 16px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
}
.tc:hover {
  border-color: rgba(194,255,0,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(194,255,0,0.1);
  transform: translateY(-2px);
}
.tc-stars { display: flex; gap: 3px; }
.tc-text {
  font-size: 12.5px; line-height: 1.75;
  color: rgba(255,255,255,0.7);
  font-weight: 300; font-style: italic;
  flex: 1;
}
.tc-author { display: flex; align-items: center; gap: 10px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); }
.tc-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 1.5px solid rgba(194,255,0,0.3);
}
.tc-init {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: rgba(194,255,0,0.12);
  border: 1px solid rgba(194,255,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #C2FF00;
}
.tc-name { font-size: 12px; font-weight: 600; color: #FFFFFF; }
.tc-role { font-size: 10px; color: rgba(255,255,255,0.38); margin-top: 1px; }

@media (max-width: 768px) {
  .tc { width: 250px; padding: 16px; }
  .testi-marquee-inner { animation-duration: 28s; }
  .testi-marquee-inner.testi-marquee-rev { animation-duration: 36s; }
}

/* ─── ABOUT section ─── */
.about-section { background: #020303 !important; }
.img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; height: 280px;
  background: #060a06;
  border: 1.5px dashed rgba(194,255,0,0.25);
  border-radius: 16px;
  color: rgba(194,255,0,0.5);
  font-size: 12px; text-align: center; line-height: 1.6;
}

/* ─── General section backgrounds ─── */
.how-section, .pricing-section { background: #040605 !important; }
.map-section { background: #030404 !important; }
.blog-section { background: #040605 !important; }
.footer-wrap { background: #020303 !important; }

/* ─── Text crisp ─── */
.section-title strong { color: #FFFFFF !important; }
.hero-title .title-line.solid { color: #FFFFFF !important; }
.hero-title .title-line.outline { 
  color: transparent !important; 
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.2) !important; 
}
.hero-desc { color: rgba(255,255,255,0.55) !important; }
.nav-item { color: rgba(255,255,255,0.65) !important; }
.nav-item:hover { color: #FFFFFF !important; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar-track { background: #020303 !important; }

/* ═══════════════════════════════════════════════════
   NEXRA v9 — FINAL VISUAL SYSTEM
═══════════════════════════════════════════════════ */

/* ── HERO FIELD TEXT (muncul setelah 100%) ── */
.hv-field { position: relative; align-items: flex-start; flex-wrap: wrap; }
.hv-field-text {
  display: none;
  font-size: 10px; line-height: 1.5;
  color: rgba(255,255,255,0.75);
  font-family: 'Space Mono', monospace;
  flex: 1; margin-left: 4px;
  max-width: calc(100% - 70px);
  word-break: break-word;
}
.hv-field-line { transition: all 0.3s; }

/* ── TRUST AVATARS ── */
.trust-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #C2FF00;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: rgba(194,255,0,0.12);
  font-size: 12px; font-weight: 700; color: #C2FF00;
  margin-left: -8px;
}
.trust-avatar:first-child { margin-left: 0; }
.trust-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════════════════
   FITUR — Background cyberlime PEKAT
═══════════════════════════════════════════════════ */
.features-section {
  background: #0a1400 !important;
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(194,255,0,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 80%,   rgba(194,255,0,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 100% 20%, rgba(194,255,0,0.05) 0%, transparent 50%);
}
.features-section::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194,255,0,0.4), transparent);
}
.features-section .section-inner { position: relative; z-index: 1; }

/* Feature card on lime bg — enhanced */
.feat-card {
  background: rgba(2,3,2,0.75) !important;
  border: 1px solid rgba(194,255,0,0.15) !important;
  border-radius: 18px !important;
  padding: 28px 26px !important;
  backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.35s, box-shadow 0.35s !important;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194,255,0,0.3), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feat-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(194,255,0,0.35) !important;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.7),
    0 0 0 1px rgba(194,255,0,0.12),
    0 0 40px rgba(194,255,0,0.06) !important;
}
.feat-card:hover::before { opacity: 1; }

.feat-num {
  font-family: 'Space Mono', monospace;
  font-size: 10px; color: rgba(194,255,0,0.5) !important;
  font-weight: 700; letter-spacing: 1px;
}
.feat-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(194,255,0,0.12) !important;
  border: 1px solid rgba(194,255,0,0.22) !important;
  display: flex; align-items: center; justify-content: center;
  color: #C2FF00 !important;
  transition: background 0.3s, border-color 0.3s;
}
.feat-card:hover .feat-icon {
  background: rgba(194,255,0,0.22) !important;
  border-color: rgba(194,255,0,0.4) !important;
}
.feat-title { color: #FFFFFF !important; font-size: 15px !important; font-weight: 600 !important; margin-bottom: 10px !important; }
.feat-desc  { color: rgba(255,255,255,0.58) !important; font-size: 13px !important; line-height: 1.75 !important; margin-bottom: 20px !important; }
.feat-link  { color: #C2FF00 !important; font-size: 12px !important; font-weight: 500 !important; letter-spacing: 0.3px; }

/* ═══════════════════════════════════════════════════
   TESTIMONI — Cyberlime band background
═══════════════════════════════════════════════════ */
.testi-section {
  position: relative;
  overflow: hidden;
  background: transparent !important;
}
.testi-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  /* Diagonal lime strip */
  background:
    linear-gradient(135deg,
      #020303 0%,
      #020303 30%,
      #0d1a00 30%,
      #0a1400 55%,
      #060e00 55%,
      #020303 55%,
      #020303 100%
    );
}
.testi-section .section-inner,
.testi-marquee-outer { position: relative; z-index: 1; }

/* Top edge lime line */
.testi-section::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(194,255,0,0.35), transparent);
}

/* Marquee cards enhanced */
.tc {
  background: #060a04 !important;
  border: 1px solid rgba(194,255,0,0.14) !important;
  border-left: 3px solid #C2FF00 !important;
}
.tc:hover {
  border-color: rgba(194,255,0,0.4) !important;
  background: #0a1200 !important;
}
.tc-name { color: #C2FF00 !important; }

/* ═══════════════════════════════════════════════════
   PRICING — Sistem Kredit
═══════════════════════════════════════════════════ */
.pricing-section {
  background: #040605 !important;
  position: relative;
}
.pricing-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(194,255,0,0.04) 0%, transparent 60%);
}

.pkg-kredit-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 12px 0 4px;
}
.pkg-kredit-num {
  font-family: 'Space Mono', monospace;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: #C2FF00;
  line-height: 1;
  letter-spacing: -1px;
}
.pkg-kredit-label {
  font-size: 13px;
  color: rgba(194,255,0,0.7);
  font-weight: 500;
  font-family: 'Space Mono', monospace;
}
.pkg-harga {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.pkg-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 4px;
  line-height: 1.5;
  flex-wrap: wrap;
}
.pkg-meta svg { flex-shrink: 0; opacity: 0.5; }

/* Remove old /bulan text */
.pkg-price span { display: none !important; }

/* Featured card lime glow */
.pkg-card.featured {
  border-color: rgba(194,255,0,0.3) !important;
  background: #080f00 !important;
  box-shadow: 0 0 60px rgba(194,255,0,0.07) !important;
}
.pkg-card.featured .pkg-kredit-num {
  font-size: clamp(32px, 4vw, 48px);
}

/* ═══════════════════════════════════════════════════
   CUSTOMIZER IMAGE UPLOAD NOTICE (Tentang)
═══════════════════════════════════════════════════ */
.about-image-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 16px;
  display: block;
}
.about-image-placeholder {
  border-radius: 16px; overflow: hidden;
  min-height: 280px;
}
