:root {
  --bg-main:#050813;
  --bg-alt:#090f22;
  --accent:#f2c94c;
  --accent-soft:#ffe29d;
  --text-main:#f7f7fb;
  --text-muted:#a9aec2;
  --border-soft:rgba(255,255,255,0.08);
  --success:#3dd68c;
  --radius-lg:18px;
  --radius-xl:26px;
  --radius-pill:999px;
  --shadow-soft:0 18px 45px rgba(0,0,0,0.6);
}

* {
  box-sizing:border-box;
}

body {
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:radial-gradient(circle at top,#161c3b 0,#050813 45%,#02030a 100%);
  color:var(--text-main);
  -webkit-font-smoothing:antialiased;
}

a {
  color:inherit;
  text-decoration:none;
}

img {
  max-width:100%;
  display:block;
}

.page {
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

/* HEADER & NAV */
header {
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(16px);
  background:linear-gradient(to bottom,rgba(5,8,19,0.96),rgba(5,8,19,0.86));
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.nav {
  max-width:1120px;
  margin:0 auto;
  padding:12px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.nav-left {
  display:flex;
  align-items:center;
  gap:14px;
}

.logo-wrap {
  display:flex;
  align-items:center;
}

.logo-img {
  height:32px;        /* logo panjang */
  width:auto;
}

.nav-links {
  display:flex;
  align-items:center;
  gap:18px;
  font-size:0.86rem;
  color:var(--text-muted);
}

.nav-links a {
  position:relative;
  padding:6px 0;
}

.nav-links a::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-3px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,#f2c94c,#f2994a);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .2s ease-out;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform:scaleX(1);
}

.nav-cta {
  display:flex;
  align-items:center;
  gap:10px;
}

.pill {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 10px;
  border-radius:var(--radius-pill);
  border:1px solid rgba(242,201,76,0.6);
  background:linear-gradient(90deg,rgba(242,201,76,0.22),rgba(242,152,74,0.06));
  font-size:0.72rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--accent-soft);
}

.pill-dot {
  width:8px;
  height:8px;
  border-radius:50%;
  background:radial-gradient(circle,var(--success),#13854a);
  box-shadow:0 0 10px rgba(61,214,140,0.9);
}

.btn {
  border-radius:var(--radius-pill);
  padding:7px 16px;
  border:1px solid transparent;
  font-size:0.82rem;
  font-weight:500;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:all .2s ease-out;
  background:none;
  color:var(--text-main);
}

.btn-outline {
  border-color:rgba(255,255,255,0.24);
  background:rgba(6,10,26,0.85);
}

.btn-outline:hover {
  border-color:rgba(242,201,76,0.7);
  background:rgba(6,10,26,1);
}

.btn-primary {
  background:linear-gradient(135deg,#f2c94c,#f2994a);
  color:#211504;
  box-shadow:0 12px 28px rgba(0,0,0,0.8);
}

.btn-primary:hover {
  transform:translateY(-1px);
  filter:brightness(1.03);
  box-shadow:0 18px 40px rgba(0,0,0,0.9);
}

.btn .icon {
  font-size:1rem;
}

.hamburger {
  display:none;
  width:32px;
  height:32px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.25);
  align-items:center;
  justify-content:center;
  cursor:pointer;
  background:rgba(5,8,19,0.9);
}

.hamburger-line {
  width:17px;
  height:2px;
  border-radius:999px;
  background:var(--text-main);
  position:relative;
  transition:background .2s ease-out;
}

.hamburger-line::before,
.hamburger-line::after {
  content:"";
  position:absolute;
  left:0;
  width:17px;
  height:2px;
  border-radius:999px;
  background:var(--text-main);
  transition:transform .2s ease-out,top .2s ease-out,bottom .2s ease-out;
}

.hamburger-line::before { top:-5px; }
.hamburger-line::after { bottom:-5px; }

header.nav-open .hamburger-line {
  background:transparent;
}

header.nav-open .hamburger-line::before {
  top:0;
  transform:rotate(45deg);
}

header.nav-open .hamburger-line::after {
  bottom:0;
  transform:rotate(-45deg);
}

/* LAYOUT UTAMA */
main {
  flex:1;
}

.wrap {
  max-width:1120px;
  margin:0 auto;
  padding:24px 16px 40px;
}

/* HERO / BANNER */
.hero {
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(0,1fr);
  gap:28px;
  align-items:center;
  margin-bottom:32px;
}

.hero-text {
  display:flex;
  flex-direction:column;
  gap:16px;
}

.hero-kicker {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  font-size:0.8rem;
  color:var(--text-muted);
}

.hero-title {
  font-size:clamp(2rem,3.1vw,2.7rem);
  line-height:1.1;
  letter-spacing:0.02em;
  font-weight:800;
}

.hero-title span.gradient {
  background:linear-gradient(120deg,#f2c94c,#f2994a,#f2c94c);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero-sub {
  font-size:0.97rem;
  color:var(--text-muted);
  max-width:520px;
}

.hero-sub strong {
  color:var(--accent-soft);
  font-weight:600;
}

.hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:4px;
}

.hero-meta {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  font-size:0.78rem;
  color:var(--text-muted);
  margin-top:8px;
}

.hero-meta span {
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.meta-dot {
  width:8px;
  height:8px;
  border-radius:50%;
  border:2px solid rgba(61,214,140,0.75);
}

.hero-banner {
  display:flex;
  justify-content:flex-end;
}

.banner-card {
  border-radius:var(--radius-xl);
  padding:14px;
  background:radial-gradient(circle at top,rgba(242,201,76,0.22),rgba(7,10,24,0.98));
  border:1px solid rgba(242,201,76,0.5);
  box-shadow:var(--shadow-soft);
  max-width:360px;
  margin-left:auto;
}

.banner-label {
  font-size:0.76rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:#2a1a03;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.96);
  display:inline-flex;
  gap:6px;
  align-items:center;
  margin-bottom:10px;
}

.banner-label-dot {
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--success);
}

.banner-image {
  border-radius:16px;
  overflow:hidden;
  background:#02030a;
}

.banner-image img {
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  display:block;
}

.banner-note {
  margin-top:8px;
  font-size:0.78rem;
  color:var(--text-muted);
}

/* SECTION GENERIC */
.section {
  margin-bottom:32px;
}

.section-header {
  margin-bottom:14px;
  display:flex;
  flex-direction:column;
  gap:4px;
}

.section-kicker {
  font-size:0.78rem;
  text-transform:uppercase;
  letter-spacing:.22em;
  color:var(--accent-soft);
}

.section-title {
  font-size:1.1rem;
  font-weight:700;
}

.section-desc {
  font-size:0.9rem;
  color:var(--text-muted);
  max-width:640px;
}

/* KONTEN UTAMA */
.main-content {
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);
  gap:22px;
}

.main-text {
  font-size:0.9rem;
  color:var(--text-muted);
  line-height:1.6;
}

.main-text p {
  margin:0 0 8px;
}

.main-points {
  margin-top:10px;
  padding-left:18px;
  font-size:0.88rem;
}

.main-points li {
  margin-bottom:6px;
}

.main-side {
  border-radius:var(--radius-lg);
  border:1px solid var(--border-soft);
  background:linear-gradient(145deg,#090f22,#050814);
  padding:14px;
  font-size:0.85rem;
  color:var(--text-muted);
}

.tag-pill {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(242,201,76,0.12);
  border:1px solid rgba(242,201,76,0.4);
  font-size:0.75rem;
  margin-bottom:8px;
}

/* REVIEW SECTION */
.review-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.review-card {
  border-radius:var(--radius-lg);
  border:1px solid var(--border-soft);
  background:linear-gradient(150deg,#070b19,#050813);
  padding:14px;
  font-size:0.86rem;
  color:var(--text-muted);
  box-shadow:0 12px 30px rgba(0,0,0,0.6);
}

.review-head {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:6px;
}

.review-name {
  font-weight:600;
  font-size:0.88rem;
}

.review-badge {
  font-size:0.75rem;
  padding:3px 8px;
  border-radius:999px;
  background:rgba(61,214,140,0.08);
  border:1px solid rgba(61,214,140,0.5);
  color:#7ef2b9;
}

.review-stars {
  font-size:0.8rem;
  color:var(--accent-soft);
  margin-bottom:4px;
}

.review-foot {
  margin-top:6px;
  font-size:0.78rem;
  color:var(--text-muted);
}

/* BLOG SECTION */
.blog-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.blog-card {
  border-radius:var(--radius-lg);
  border:1px solid var(--border-soft);
  background:linear-gradient(145deg,#080d1e,#050813);
  padding:13px 13px 11px;
  font-size:0.86rem;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.blog-tag {
  font-size:0.75rem;
  color:var(--accent-soft);
  text-transform:uppercase;
  letter-spacing:.16em;
}

.blog-title {
  font-weight:600;
  font-size:0.9rem;
}

.blog-excerpt {
  font-size:0.84rem;
  color:var(--text-muted);
}

.blog-link {
  margin-top:4px;
  font-size:0.8rem;
  color:var(--accent-soft);
  display:inline-flex;
  align-items:center;
  gap:6px;
}

/* TRUST PAGES SECTION */
.trust-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.trust-card {
  border-radius:var(--radius-lg);
  border:1px solid var(--border-soft);
  background:#050813;
  padding:12px 11px;
  font-size:0.83rem;
  color:var(--text-muted);
  cursor:pointer;
  transition:transform .18s ease-out,box-shadow .18s ease-out,border-color .18s ease-out;
}

.trust-card:hover {
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(0,0,0,0.7);
  border-color:rgba(242,201,76,0.7);
}

.trust-title {
  font-weight:600;
  margin-bottom:3px;
  color:var(--accent-soft);
  font-size:0.86rem;
}

.trust-link {
  margin-top:4px;
  font-size:0.78rem;
  color:var(--accent-soft);
  display:inline-flex;
  align-items:center;
  gap:5px;
}

/* FOOTER */
footer {
  border-top:1px solid rgba(255,255,255,0.08);
  background:#02030a;
}

.footer-inner {
  max-width:1120px;
  margin:0 auto;
  padding:14px 16px 18px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:10px;
  font-size:0.78rem;
  color:var(--text-muted);
}

.footer-links {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.footer-links a {
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-style:dotted;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .hero {
    grid-template-columns:minmax(0,1fr);
  }

  .hero-banner {
    justify-content:center;
    order:-1;
  }

  .banner-card {
    margin:0 auto 6px;
    max-width:310px;
  }

  .main-content {
    grid-template-columns:minmax(0,1fr);
  }

  .review-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .blog-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .trust-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:720px) {
  .nav-links {
    display:none;
  }

  .nav-cta {
    display:none;
  }

  .hamburger {
    display:flex;
  }

  header.nav-open .nav-links {
    display:flex;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    padding:10px 16px 12px;
    background:rgba(5,8,19,0.98);
    backdrop-filter:blur(16px);
    flex-direction:column;
    gap:6px;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }

  header.nav-open .nav-links a {
    padding:6px 0;
  }

  header.nav-open .nav-cta {
    display:flex;
    position:absolute;
    top:100%;
    right:16px;
    margin-top:130px;
  }

  .review-grid {
    grid-template-columns:minmax(0,1fr);
  }

  .blog-grid {
    grid-template-columns:minmax(0,1fr);
  }

  .trust-grid {
    grid-template-columns:minmax(0,1fr);
  }
}