:root{
  --bg:#050d1f;
  --glass: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.10);
  --muted:#c9d6ff;
  --primary1:#1f3c88;
  --primary2:#2952cc;
  --accent:#5dade2;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(41,82,204,.35), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(93,173,226,.22), transparent 45%),
    var(--bg);
  color:#eaf2ff;
  overflow-x:hidden;
  padding-bottom:90px;
}

/* subtle dots */
body::before{
  content:"";
  position:fixed;
  inset:-50%;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity:.22;
  animation: drift 45s linear infinite;
  pointer-events:none;
  z-index:-1;
}
@keyframes drift{to{transform:translate(-180px,-180px);}}

/* ===== NAVBAR ===== */
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  backdrop-filter: blur(14px);
  background: rgba(8,18,38,.62);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand{display:flex;align-items:center;gap:12px;}
.brand-badge{
  width:44px;height:44px;border-radius:16px;
  display:grid;place-items:center;
  background: linear-gradient(135deg,var(--primary1),var(--primary2));
  box-shadow: 0 14px 40px rgba(41,82,204,.35);
}
.brand-name{font-weight:800;font-size:18px;line-height:1;}
.brand-sub{font-size:12px;color:rgba(255,255,255,.65);margin-top:4px;}

.menu-toggle{
  width:46px;height:46px;border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg,var(--primary1),var(--primary2));
  display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;
  cursor:pointer;
  box-shadow: 0 12px 34px rgba(41,82,204,.30);
}
.menu-toggle span{width:18px;height:2px;background:#fff;border-radius:2px;transition:.35s;}
.menu-toggle.active span:nth-child(1){transform: rotate(45deg) translate(5px,5px);}
.menu-toggle.active span:nth-child(2){opacity:0;}
.menu-toggle.active span:nth-child(3){transform: rotate(-45deg) translate(5px,-5px);}

/* ===== SIDE MENU ===== */
.overlay{
  position:fixed; inset:0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(8px);
  z-index:998;
}
.hidden{display:none;}

.side-menu{
  position:fixed; top:0; right:-320px;
  width:280px; height:100vh;
  padding:22px 18px;
  background: linear-gradient(180deg,#081226,#0d1b2a);
  border-left:1px solid rgba(255,255,255,.10);
  box-shadow:-20px 0 70px rgba(0,0,0,.75);
  z-index:999;
  transition:right .45s cubic-bezier(.16,1,.3,1);
}
.side-menu.active{right:0;}
.side-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px;}
.side-title{font-weight:800;font-size:16px;}
.side-close{
  width:40px;height:40px;border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color:#fff;cursor:pointer;
}
.side-links{display:flex;flex-direction:column;gap:10px;padding:10px 0 16px;}
.side-links a{
  padding:12px 12px;border-radius:14px;
  color:#eaf2ff;text-decoration:none;
  transition:.25s;
}
.side-links a:hover{background: rgba(93,173,226,.16); transform: translateX(6px);}
.side-cta{
  display:block;
  text-align:center;
  padding:12px 14px;border-radius:14px;
  background: linear-gradient(135deg,var(--primary1),var(--primary2));
  color:#fff;text-decoration:none;font-weight:700;
  box-shadow: 0 12px 34px rgba(41,82,204,.28);
}

/* ===== LAYOUT ===== */
.container{max-width:1100px;margin:0 auto;padding:0 18px;}
.section{padding:92px 0 72px;}
.section-head h2{font-size:34px;letter-spacing:-.3px;}
.muted{color:var(--muted);margin-top:10px;line-height:1.6;max-width:640px;}
.divider{
  width:72px;height:3px;border-radius:999px;margin-top:14px;
  background: linear-gradient(90deg,var(--accent),var(--primary2));
  box-shadow: 0 0 16px rgba(93,173,226,.55);
}

/* ===== HERO ===== */
.hero{
  padding:92px 0 40px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  width:700px;height:700px;
  background: radial-gradient(circle, rgba(41,82,204,.30), transparent 65%);
  top:-260px; right:-260px;
  animation: floatGlow 7s ease-in-out infinite;
}
@keyframes floatGlow{50%{transform:translateY(22px);} }

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:center;
}
.hero h1{
  font-size:42px;
  line-height:1.12;
  letter-spacing:-.6px;
}
.hero p{margin-top:14px;color:var(--muted);line-height:1.7;max-width:560px;}
.chip{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 12px;border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  margin-bottom:14px;
  font-size:13px;color:rgba(255,255,255,.86);
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px;}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 18px;border-radius:16px;
  text-decoration:none;font-weight:800;
  transition:.25s;
}
.btn-primary{
  background: linear-gradient(135deg,var(--primary1),var(--primary2));
  color:#fff;
  box-shadow: 0 14px 40px rgba(41,82,204,.30);
}
.btn-primary:hover{transform: translateY(-3px); filter: brightness(1.02);}
.btn-ghost{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}
.btn-ghost:hover{background: rgba(255,255,255,.10); transform: translateY(-2px);}

.trust{
  display:flex;gap:26px;flex-wrap:wrap;
  margin-top:28px;
}
.trust-item{
  padding:14px 14px;border-radius:18px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  min-width:120px;
}
.trust-num{font-size:28px;font-weight:900;color:var(--accent);line-height:1;}
.trust-label{margin-top:6px;color:rgba(255,255,255,.78);font-size:13px;}

/* mock preview */
.mock-card{
  border-radius:26px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  overflow:hidden;
}
.mock-top{
  display:flex;align-items:center;gap:8px;
  padding:12px 14px;
  background: rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.35);}
.mock-title{margin-left:8px;font-size:12px;color:rgba(255,255,255,.70);}
.mock-body{padding:18px;}
.mock-line{height:10px;border-radius:999px;background:rgba(255,255,255,.10);margin-bottom:10px;}
.w80{width:80%} .w60{width:60%} .w70{width:70%}
.mock-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin:16px 0;}
.mock-box{height:46px;border-radius:14px;background:rgba(255,255,255,.08);}
.mock-cta{height:42px;border-radius:16px;background:linear-gradient(135deg,rgba(31,60,136,.8),rgba(41,82,204,.8));}

/* ===== CARDS / GRID ===== */
.grid{display:grid;gap:16px;margin-top:26px;}
.grid-3{grid-template-columns: repeat(3, 1fr);}
.glass-card{
  padding:20px;border-radius:22px;
  background: var(--glass);
  border:1px solid var(--stroke);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 44px rgba(0,0,0,.40);
  transition:.35s;
}
.glass-card:hover{transform: translateY(-8px); box-shadow: 0 22px 70px rgba(41,82,204,.22);}
.icon{
  width:44px;height:44px;border-radius:16px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  margin-bottom:12px;
}
.glass-card h3{font-size:18px;margin-bottom:8px;}
.glass-card p{color:rgba(255,255,255,.78);line-height:1.65;}

/* ===== PRICING ===== */
.pricing{margin-top:26px;}
.price-card{
  position:relative;
  padding:22px;border-radius:24px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 44px rgba(0,0,0,.45);
  backdrop-filter: blur(16px);
  transition:.35s;
}
.price-card:hover{transform: translateY(-8px); box-shadow: 0 26px 80px rgba(41,82,204,.20);}
.price-top{display:flex;justify-content:space-between;align-items:flex-end;gap:10px;}
.price-card h3{font-size:18px;}
.price{font-size:20px;font-weight:900;color:var(--accent);}
.price-card ul{list-style:none;margin-top:14px;display:grid;gap:10px;}
.price-card li{color:rgba(255,255,255,.78);line-height:1.5;position:relative;padding-left:18px;}
.price-card li::before{content:"•";position:absolute;left:0;color:rgba(93,173,226,.9);}
.btn-full{width:100%;margin-top:16px;}
.badge{
  position:static;   /* HAPUS absolute */
  display:inline-block;
  margin-top:8px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  background:rgba(93,173,226,.18);
  border:1px solid rgba(93,173,226,.35);
  color:#5dade2;
}

.popular{
  border:1px solid rgba(93,173,226,.35);
  box-shadow: 0 26px 90px rgba(93,173,226,.14);
}

/* ===== TESTIMONI ===== */
.testimonial-wrap{margin-top:18px;}
.testimonial-card{
  padding:22px;border-radius:24px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 44px rgba(0,0,0,.45);
  display:none;
}
.testimonial-card.active{display:block;}
.testimonial-card p{font-size:16px;line-height:1.7;font-style:italic;color:rgba(255,255,255,.86);}
.testimonial-card span{display:block;margin-top:10px;color:var(--accent);font-weight:800;}
.dots{display:flex;gap:8px;margin-top:12px;}
.dotbtn{
  width:10px;height:10px;border-radius:50%;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
}
.dotbtn.active{background: var(--accent);border-color: rgba(93,173,226,.6);}

/* ===== FAQ ===== */
.faq{margin-top:16px;display:grid;gap:10px;}
.faq-q{
  width:100%;
  text-align:left;
  padding:16px 16px;
  border-radius:18px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  display:flex;justify-content:space-between;align-items:center;
  cursor:pointer;
}
.faq-a{
  display:none;
  padding:14px 16px;
  border-radius:18px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.78);
  line-height:1.7;
}

/* ===== CTA ===== */
.cta{
  padding:92px 0 120px;
  text-align:center;
}
.cta h2{font-size:34px;}
.cta p{margin-top:10px;color:var(--muted);line-height:1.7;margin-bottom:18px;}

/* ===== FLOATING WA ===== */
.floating-wa{
  position:fixed;right:18px;bottom:18px;
  width:54px;height:54px;border-radius:50%;
  display:grid;place-items:center;
  background: linear-gradient(135deg,var(--primary1),var(--primary2));
  box-shadow: 0 18px 50px rgba(41,82,204,.45);
  text-decoration:none;color:#fff;font-size:22px;
  z-index:1000;
  transition:.25s;
}
.floating-wa:hover{transform: scale(1.06);}

/* ===== REVEAL ===== */
.reveal{opacity:0;transform: translateY(26px);transition: all .85s ease;}
.reveal.active{opacity:1;transform: translateY(0);}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px){
  .hero-grid{grid-template-columns: 1fr;gap:16px;}
  .grid-3{grid-template-columns:1fr;}
  .section-head h2{font-size:30px;}
  .hero h1{font-size:38px;}
}