/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #3cb44b;
  --blue: #1e5fa8;
  --blue-light: #2d7dd2;
  --dark: #070d1a;
  --dark2: #0d1829;
  --dark3: #111e33;
  --text: #e8edf5;
  --text-muted: #8a9bbf;
  --accent: #00e5ff;
  --wa: #25d366;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== CANVAS BG ===== */
#bgCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 40px;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(7, 13, 26, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { height: 90px; width: auto; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-wa { margin-left: 16px; }

/* ===== BUTTONS ===== */
.btn-wa {
  display: inline-block;
  background: linear-gradient(135deg, #1db954, var(--wa));
  color: #fff;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--blue-light);
  color: var(--blue-light);
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--blue-light); color: #fff; }

.pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

.big-wa { font-size: 18px; padding: 16px 40px; width: 100%; text-align: center; }

/* ===== HERO ===== */
#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}
.hero-content { flex: 1; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  min-height: 80px;
}
.cursor {
  display: inline-block;
  animation: blink 0.8s infinite;
  color: var(--accent);
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-sub {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* RADAR */
.hero-radar {
  flex-shrink: 0;
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 229, 255, 0.3);
  animation: radarPulse 3s ease-out infinite;
}
.r1 { width: 280px; height: 280px; animation-delay: 0s; }
.r2 { width: 200px; height: 200px; animation-delay: 1s; }
.r3 { width: 120px; height: 120px; animation-delay: 2s; }
@keyframes radarPulse {
  0% { transform: scale(0.8); opacity: 1; border-color: rgba(0,229,255,0.5); }
  100% { transform: scale(1.2); opacity: 0; border-color: rgba(0,229,255,0); }
}
.radar-dot {
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(0,229,255,0.4);
  z-index: 2;
  animation: dotPing 2s ease-in-out infinite;
}
@keyframes dotPing {
  0%,100%{ transform: scale(1); }
  50%{ transform: scale(1.3); }
}

/* ===== STATS ===== */
#stats {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--blue) 0%, #0a3d6b 100%);
  padding: 60px 40px;
}
.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
}
.stat-plus {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  color: rgba(255,255,255,0.7);
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 40px;
}
.section-dark { background: rgba(13, 24, 41, 0.85); }
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 56px;
}

/* ===== KEUNGGULAN CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,229,255,0.3);
  box-shadow: 0 12px 40px rgba(0,229,255,0.1);
}
.card-icon { font-size: 36px; margin-bottom: 16px; }
.card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== FITUR ===== */
.fitur-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.fitur-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.3s, background 0.3s;
}
.fitur-item:hover {
  border-color: rgba(60, 180, 75, 0.4);
  background: rgba(60,180,75,0.06);
}
.fitur-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.fitur-item h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.fitur-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== LAYANAN ===== */
.layanan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.layanan-card {
  border: 1px solid rgba(30, 95, 168, 0.4);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  background: rgba(30, 95, 168, 0.06);
}
.layanan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.layanan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(30, 95, 168, 0.2);
}
.layanan-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: rgba(30,95,168,0.3);
  margin-bottom: 12px;
}
.layanan-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.layanan-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== SUPPORT ===== */
.support-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.support-text { flex: 1; }
.support-text h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  margin: 12px 0 16px;
}
.support-text p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.highlight { color: var(--accent); }
.support-badge { flex-shrink: 0; }
.badge-ring {
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(0,229,255,0.2), inset 0 0 40px rgba(0,229,255,0.05);
  animation: badgeGlow 3s ease-in-out infinite;
}
.badge-ring span {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent);
  text-align: center;
  letter-spacing: 0.05em;
}
@keyframes badgeGlow {
  0%,100%{ box-shadow: 0 0 40px rgba(0,229,255,0.2); }
  50%{ box-shadow: 0 0 60px rgba(0,229,255,0.4), 0 0 80px rgba(0,229,255,0.15); }
}

/* ===== KONTAK ===== */
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.kontak-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.kontak-icon { font-size: 24px; flex-shrink: 0; }
.kontak-item strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 4px; }
.kontak-item p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.cta-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}
.cta-box h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-box > p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 28px; }
.cta-note { margin-top: 16px; font-size: 13px; color: var(--green); font-weight: 600; }

/* ===== FOOTER ===== */
footer {
  position: relative;
  z-index: 1;
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 40px;
  text-align: center;
}
.footer-logo { height: 120px; margin-bottom: 16px; }
.footer-tagline { font-size: 15px; color: var(--text-muted); margin-bottom: 8px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ===== HARGA ===== */
.harga-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.harga-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(60,180,75,0.3);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.harga-card::before {
  content: '🔥 PROMO';
  position: absolute;
  top: 16px; right: -28px;
  background: linear-gradient(135deg, var(--green), #1db954);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 40px;
  transform: rotate(45deg);
}
.harga-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.harga-price { margin-bottom: 28px; }
.harga-old {
  display: block;
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.harga-new {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--green);
}
.harga-list {
  list-style: none;
  margin-bottom: 20px;
}
.harga-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.harga-note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
  font-style: italic;
}
.harga-wa { width: 100%; text-align: center; }
.harga-img { display: flex; justify-content: center; align-items: flex-start; overflow: hidden; }
/* 🖼️ UKURAN BROSUR — edit max-width di sini */
.brosur-img {
  width: 100%;
  max-width: 280px;        /* brosur section Harga */
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.brosur-wide {
  max-width: 100%;         /* brosur section Download App */
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===== DOWNLOAD APP ===== */
.app-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
.app-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.app-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 24px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
  min-width: 160px;
}
.app-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,229,255,0.15);
}
.app-btn-icon { font-size: 28px; }
.app-btn small { display: block; font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.app-btn strong { display: block; font-size: 16px; font-weight: 700; }
.app-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  max-width: 100%;
}

@media (max-width: 900px) {
  .harga-box { grid-template-columns: 1fr; }
  .app-inner { grid-template-columns: 1fr; }
  .harga-img { order: -1; }
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  #hero { flex-direction: column; padding: 120px 24px 60px; }
  .hero-radar { width: 200px; height: 200px; }
  .r1 { width: 200px; height: 200px; }
  .r2 { width: 140px; height: 140px; }
  .r3 { width: 80px; height: 80px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .fitur-grid { grid-template-columns: 1fr; }
  .kontak-grid { grid-template-columns: 1fr; }
  .support-inner { flex-direction: column; gap: 40px; text-align: center; }
  .nav-links { display: none; }
  #navbar { padding: 16px 24px; }
}

@media (max-width: 600px) {
  .section { padding: 70px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ===== MOBILE FIX ===== */
@media (max-width: 600px) {
  #stats { padding: 40px 16px; }
  .stat-num { font-size: 28px; }

  #hero { padding: 100px 16px 50px; gap: 32px; }
  .hero-title { font-size: 26px; min-height: 60px; }
  .hero-sub { font-size: 14px; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }
  .hero-radar { width: 160px; height: 160px; }
  .r1 { width: 160px; height: 160px; }
  .r2 { width: 110px; height: 110px; }
  .r3 { width: 60px; height: 60px; }

  #navbar { padding: 12px 16px; }
  .nav-logo { height: 36px; }

  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 24px 16px; }

  .fitur-item { padding: 18px; }

  .layanan-grid { grid-template-columns: 1fr; gap: 16px; }
  .layanan-card { padding: 28px 20px; }
  .layanan-num { font-size: 28px; }

  .support-inner { gap: 28px; }
  .badge-ring { width: 120px; height: 120px; }
  .badge-ring span { font-size: 14px; }

  .harga-card { padding: 28px 20px; }
  .harga-new { font-size: 28px; }
  .brosur-img { max-width: 100%; }

  .app-btns { flex-direction: column; }
  .app-btn { width: 100%; justify-content: center; }

  .cta-box { padding: 28px 20px; }
  .big-wa { font-size: 16px; padding: 14px 24px; }

  .section-title { font-size: 22px; margin-bottom: 32px; }
  .section { padding: 60px 16px; }
}
