/* ================= RESET ================= */
*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:#fff;
  color:#0f172a;
  line-height:1.65;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:#2563eb}

/* ================= CONTAINER ================= */
.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
}

/* ================= HEADER ================= */
.header{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid #e6e9f2;
  z-index:50;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.logo img{height:36px}

/* Hamburger */
.menu-btn{
  width:34px;height:24px;
  display:flex;flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
}
.menu-btn span{
  height:3px;
  background:#0f172a;
  border-radius:3px;
}

/* Energy bar */
.energy-bar{
  height:4px;
  background:linear-gradient(90deg,#e11d48,#f59e0b);
}

/* ================= NAV DRAWER ================= */
#nav-toggle{display:none}
.nav{
  position:fixed;
  inset:0 0 0 -300px;
  width:300px;
  background:#fff;
  border-right:1px solid #e6e9f2;
  padding:20px;
  transition:.3s;
  z-index:60;
}
#nav-toggle:checked + .nav{inset:0 0 0 0}
.nav h4{
  font-size:.75rem;
  letter-spacing:.6px;
  color:#64748b;
  margin:18px 0 8px;
}
.nav a{
  display:block;
  padding:10px 0;
  font-weight:600;
  color:#0f172a;
  border-bottom:1px dashed #e6e9f2;
}
.overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  z-index:55;
}
#nav-toggle:checked ~ .overlay{display:block}

/* ================= HERO ================= */
.hero{
  padding:34px 0 28px;
}
.hero-grid{
  display:grid;
  gap:28px;
}
.hero h1{
  font-size:1.8rem;
  line-height:1.3;
}
.hero p{
  color:#64748b;
  margin-top:10px;
  max-width:720px;
}
.hero-note{
  display:inline-block;
  background:#eef2ff;
  color:#1e3a8a;
  font-size:.85rem;
  padding:6px 12px;
  border-radius:999px;
  margin:12px 0;
}

/* Hero banner */
.hero-banner{
  max-width:750px;
  border:1px solid #e6e9f2;
}
.hero-banner img{
  aspect-ratio:1/1;
  object-fit:cover;
}

/* ================= WHY ================= */
.why{
  padding:28px 0;
}
.why-grid{
  display:grid;
  gap:18px;
}
.why-item{
  background:#f6f7fb;
  border:1px solid #e6e9f2;
  padding:18px;
}
.why-item strong{
  display:block;
  margin-bottom:6px;
}

/* ================= PASARAN ================= */
.section{
  padding:32px 0;
}
.section h2{
  font-size:1.4rem;
  margin-bottom:6px;
}
.section p{
  color:#64748b;
  margin-bottom:16px;
}
.pasaran-grid{
  display:grid;
  gap:16px;
}
.pasaran-item{
  border:1px solid #e6e9f2;
  padding:16px;
}
.pasaran-item strong{
  display:block;
  font-size:1.05rem;
}
.pasaran-item span{
  color:#64748b;
  font-size:.9rem;
}
.pasaran-item a{
  display:inline-block;
  margin-top:8px;
  font-weight:600;
}

/* ================= FOOTER ================= */
.footer{
  border-top:1px solid #e6e9f2;
  padding:22px 0;
}
.trust{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  font-size:.9rem;
  color:#64748b;
}

/* ===== NAV UPGRADE ===== */
.nav{
  padding:20px;
}

.nav-brand{
  margin-bottom:20px;
}
.nav-brand strong{
  display:block;
  font-size:1.05rem;
  font-weight:800;
  color:#0f172a;
}
.nav-brand span{
  font-size:.8rem;
  color:#64748b;
}

/* GROUP */
.nav-group{
  margin-bottom:22px;
}
.nav-group h4{
  font-size:.75rem;
  letter-spacing:.6px;
  color:#94a3b8;
  margin-bottom:10px;
}

/* LINKS */
.nav-group a{
  display:block;
  padding:10px 0;
  font-weight:700;
  color:#0f172a;
  border-bottom:1px dashed #e6e9f2;
}
.nav-group a small{
  display:block;
  font-size:.75rem;
  font-weight:500;
  color:#64748b;
  margin-top:2px;
}

/* FOOT */
.nav-foot{
  margin-top:24px;
  font-size:.75rem;
  color:#94a3b8;
  line-height:1.4;
}

.footer{
  border-top:1px solid #e6e9f2;
  margin-top:40px;
  padding:28px 0;
  background:#fafafa;
}

.footer-inner{
  display:grid;
  gap:18px;
}

.footer-context p{
  font-size:.9rem;
  color:#64748b;
  max-width:720px;
  line-height:1.6;
}

.footer-meta{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  font-size:.85rem;
}

.footer-meta a{
  color:#475569;
}

.footer-copy{
  font-size:.8rem;
  color:#94a3b8;
}

.faq{
  max-width:900px;
}

.faq-item{
  padding:16px 0;
  border-bottom:1px solid #e5e7eb;
}

.faq-item strong{
  display:block;
  margin-bottom:6px;
  font-weight:600;
  color:#0f172a;
}

.faq-item p{
  margin:0;
  color:#475569;
  line-height:1.6;
}

/* ================= RESPONSIVE ================= */
@media(min-width:768px){
  .hero-grid{
    grid-template-columns:1.2fr .8fr;
    align-items:center;
  }
  .why-grid{
    grid-template-columns:repeat(3,1fr);
  }
  .pasaran-grid{
    grid-template-columns:repeat(3,1fr);
  }
}