:root{
  --bg-body:#050816;
  --bg-surface:#0b1022;
  --bg-soft:#11162d;
  --accent:#f5b754;
  --accent-soft:rgba(245,183,84,0.16);
  --text-main:#f9fafb;
  --text-soft:#a5b4d4;
  --border-soft:rgba(148,163,184,0.35);
  --shadow-soft:0 22px 45px rgba(0,0,0,0.75);
  --radius-lg:18px;
  --radius-xl:24px;
  --max-width:1120px;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at top left,rgba(245,183,84,0.18),transparent 55%),
    radial-gradient(circle at bottom right,rgba(59,130,246,0.16),transparent 55%),
    var(--bg-body);
  color:var(--text-main);
  line-height:1.7;
}

a{
  color:var(--accent);
  text-decoration:none;
}
a:hover{
  text-decoration:underline;
}

.page{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 16px;
}

/* =========================
   HEADER + NAV
   ========================= */

header.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(16px);
  background:linear-gradient(to bottom,rgba(5,8,22,0.96),rgba(5,8,22,0.84));
  border-bottom:1px solid rgba(148,163,184,0.25);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:12px;
  flex-wrap:wrap;
}

/* Brand */

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Logo bulat (kalau nanti mau dipakai lagi) */
.brand-logo{
  width:40px;
  height:40px;
  border-radius:999px;
  background:radial-gradient(circle at 30% 10%,#fff7e0,#f5b754 45%,#a86214 85%);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:20px;
  color:#111827;
  box-shadow:0 0 0 2px rgba(245,183,84,0.5);
}

/* Logo horizontal (yang dipakai sekarang) */
.brand-logo-img{
  height:32px;
  width:auto;
  display:block;
}

.brand-text{
  display:flex;
  flex-direction:column;
}

.brand-name{
  font-size:18px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.brand-tagline{
  font-size:12px;
  color:var(--text-soft);
}

/* Nav desktop */

.nav-mini{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
}

.nav-pill{
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(245,183,84,0.4);
  background:rgba(11,16,34,0.95);
  color:var(--accent);
  display:inline-flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
  font-weight:500;
}

.nav-link{
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
  border:1px solid rgba(148,163,184,0.4);
  color:var(--text-soft);
  background:rgba(15,23,42,0.7);
}
.nav-link:hover{
  color:var(--text-main);
  border-color:var(--accent);
}

.badge-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#22c55e;
  box-shadow:0 0 0 3px rgba(34,197,94,0.35);
}

/* Tombol hamburger (mobile) */

.nav-toggle{
  display:none;
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.6);
  background:rgba(15,23,42,0.9);
  color:var(--text-main);
  padding:6px 12px;
  font-size:13px;
  font-weight:500;
  align-items:center;
  gap:6px;
  cursor:pointer;
}

.nav-toggle-icon{
  font-size:16px;
  line-height:1;
}

.nav-toggle-text{
  font-size:12px;
}

/* =========================
   MAIN
   ========================= */

main{
  flex:1;
}

/* HERO */

.hero{
  padding:28px 0 16px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.7fr) minmax(0,1.3fr);
  gap:32px;
  align-items:center;
}

.hero-kicker{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.22em;
  color:var(--accent);
  font-weight:600;
  margin-bottom:10px;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.hero-kicker::before{
  content:"";
  width:26px;
  height:1px;
  background:var(--accent);
  opacity:.7;
}

.hero-title{
  margin:0 0 8px;
  font-size:clamp(26px,3.2vw,32px);
  line-height:1.25;
}

.hero-title span.highlight{
  background:linear-gradient(120deg,#fef3c7,#facc15,#fb923c);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero-subtitle{
  font-size:14px;
  color:var(--text-soft);
  max-width:40rem;
  margin-bottom:16px;
}

/* Keyword pills di hero */

.hero-keywords{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:14px 0 16px;
}

.keyword-pill{
  padding:6px 12px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:999px;
  font-size:12px;
  color:var(--text-soft);
}

.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  font-size:12px;
  margin-bottom:14px;
  color:var(--text-soft);
}

.hero-meta span{
  padding:5px 10px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.5);
  background:rgba(15,23,42,0.85);
}

.hero-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px;
}

.btn-primary{
  border:none;
  cursor:pointer;
  padding:10px 18px;
  border-radius:999px;
  background:linear-gradient(135deg,#facc15,#f97316);
  color:#111827;
  font-weight:600;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  box-shadow:0 14px 32px rgba(0,0,0,0.7);
}

.btn-primary span.icon{
  font-size:16px;
}

.btn-ghost{
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.6);
  background:rgba(15,23,42,0.7);
  color:var(--text-main);
  font-size:13px;
  font-weight:500;
  padding:9px 14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
}

.hero-note{
  font-size:11px;
  color:var(--text-soft);
  max-width:34rem;
}

/* HERO RIGHT: banner + card */

.hero-right{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.hero-banner{
  border-radius:var(--radius-xl);
  overflow:hidden;
  border:1px solid rgba(148,163,184,0.6);
  background:radial-gradient(circle at top,#1f2937,#020617);
  box-shadow:var(--shadow-soft);
}

.hero-banner img{
  display:block;
  width:100%;
  height:auto;
  max-height:320px;
  object-fit:cover;
}

/* HERO CARD */

.hero-card{
  background:radial-gradient(circle at top,#1f2937 0,#020617 55%);
  border-radius:var(--radius-xl);
  padding:18px 18px 16px;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(148,163,184,0.55);
  position:relative;
  overflow:hidden;
}

.hero-pill{
  position:absolute;
  top:16px;
  right:16px;
  padding:6px 11px;
  border-radius:999px;
  font-size:11px;
  background:rgba(15,23,42,0.9);
  border:1px solid rgba(248,250,252,0.3);
  color:#e5e7eb;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.hero-pill-dot{
  width:7px;
  height:7px;
  border-radius:999px;
  background:#22c55e;
  box-shadow:0 0 0 3px rgba(34,197,94,0.3);
}

.hero-card-title{
  font-size:15px;
  font-weight:600;
  margin:0 0 4px;
}

.hero-card-sub{
  font-size:12px;
  color:#e5e7eb;
  opacity:.88;
  margin-bottom:12px;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-bottom:12px;
}

.hero-stat{
  padding:8px 9px;
  border-radius:14px;
  background:rgba(15,23,42,0.9);
  border:1px solid rgba(148,163,184,0.55);
}

.hero-stat-label{
  font-size:11px;
  color:#9ca3af;
  margin-bottom:2px;
}

.hero-stat-value{
  font-size:14px;
  font-weight:600;
}

.hero-bottom-note{
  font-size:11px;
  color:#9ca3af;
  border-top:1px dashed rgba(148,163,184,0.55);
  padding-top:8px;
  display:flex;
  justify-content:space-between;
  gap:6px;
  flex-wrap:wrap;
}

/* =========================
   SECTION / GRID / CARD
   ========================= */

.section{
  padding:12px 0 0;
}

.section + .section{
  margin-top:20px;
}

.section-eyebrow{
  font-size:11px;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.22em;
  margin-bottom:4px;
}

.section-title{
  font-size:19px;
  margin:0 0 6px;
}

.section-lead{
  font-size:13px;
  color:var(--text-soft);
  max-width:46rem;
  margin-bottom:12px;
}

.content-grid{
  display:grid;
  grid-template-columns:minmax(0,2.1fr) minmax(0,1.4fr);
  gap:22px;
}

.card{
  background:var(--bg-surface);
  border-radius:var(--radius-lg);
  border:1px solid var(--border-soft);
  padding:16px 16px 14px;
  box-shadow:0 16px 38px rgba(0,0,0,0.7);
}

.card-soft{
  background:var(--bg-soft);
}

.card h2,
.card h3,
.card h4{
  margin-top:8px;
  margin-bottom:6px;
  line-height:1.35;
}

.card h2{
  font-size:18px;
}
.card h3{
  font-size:16px;
}
.card h4{
  font-size:14px;
}

.card p{
  font-size:13px;
  color:var(--text-soft);
  margin:0 0 9px;
  text-align:justify;
}

ul,
ol{
  font-size:13px;
  color:var(--text-soft);
  padding-left:18px;
  margin:0 0 9px;
}

li + li{
  margin-top:3px;
}

.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-bottom:8px;
}

.badge{
  font-size:11px;
  padding:5px 9px;
  border-radius:999px;
  background:rgba(15,23,42,0.9);
  border:1px solid rgba(148,163,184,0.6);
  color:#e5e7eb;
  white-space:nowrap;
}

.badge-accent{
  background:var(--accent-soft);
  border-color:rgba(245,183,84,0.85);
  color:#fefce8;
}

.callout{
  border-left:3px solid var(--accent);
  padding-left:9px;
  font-size:12px;
  color:var(--text-soft);
  margin:6px 0 9px;
}

.muted{
  font-size:12px;
  color:var(--text-soft);
}

.article-body h2{
  font-size:18px;
  margin-top:14px;
  margin-bottom:6px;
}

.article-body h3{
  font-size:16px;
  margin-top:12px;
  margin-bottom:6px;
}

.article-body strong{
  color:#e5e7eb;
}

/* =========================
   FAQ
   ========================= */

.faq-list{
  display:flex;
  flex-direction:column;
  gap:8px;
}

details.faq-item{
  background:var(--bg-surface);
  border-radius:14px;
  border:1px solid var(--border-soft);
  padding:9px 11px;
}

details.faq-item[open]{
  border-color:var(--accent);
}

details.faq-item summary{
  list-style:none;
  cursor:pointer;
  font-size:13px;
  font-weight:500;
}

details.faq-item summary::-webkit-details-marker{
  display:none;
}

details.faq-item p{
  font-size:12px;
  color:var(--text-soft);
  margin:6px 0 0;
  text-align:justify;
}

/* =========================
   FOOTER
   ========================= */

.site-footer{
  padding:40px 0 24px;
  background:#050711;
  border-top:1px solid rgba(255,255,255,0.06);
  font-size:13px;
  margin-top:26px;
}

.footer-grid{
  display:grid;
  gap:24px;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  margin-bottom:24px;
}

.footer-col h3{
  font-size:14px;
  margin-bottom:8px;
}

.footer-col p{
  color:var(--text-soft);
  line-height:1.6;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0 0 8px;
}

.footer-links li{
  margin-bottom:4px;
}

.footer-links a{
  text-decoration:none;
  color:var(--text-soft);
}
.footer-links a:hover{
  text-decoration:underline;
}

.footer-note,
.footer-mini span{
  color:var(--text-soft);
  font-size:12px;
}

.footer-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:8px;
  border-top:1px solid rgba(255,255,255,0.06);
  padding-top:12px;
  margin-top:8px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media(max-width:880px){
  .hero-grid{
    grid-template-columns:minmax(0,1fr);
  }

  .content-grid{
    grid-template-columns:minmax(0,1fr);
  }

  .hero-right{
    /* kalau mau banner/card naik ke atas di mobile, bisa pakai order:-1; */
    /* order:-1; */
  }
}

@media(max-width:720px){
  .brand{
    flex:1 1 100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
  }

  .brand-tagline{
    font-size:11px;
    color:var(--text-soft);
    max-width:60%;
  }

  /* Tampilkan tombol hamburger */
  .nav-toggle{
    display:inline-flex;
  }

  /* Menu drop-down di mobile */
  .nav-mini{
    display:none;
    position:absolute;
    right:16px;
    top:56px;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
    padding:10px;
    background:rgba(15,23,42,0.98);
    border-radius:14px;
    border:1px solid rgba(148,163,184,0.6);
    box-shadow:0 18px 40px rgba(0,0,0,0.85);
    z-index:30;
  }

  .nav-mini.is-open{
    display:flex;
  }

  .nav-pill{
    width:100%;
    justify-content:flex-start;
  }

  .nav-link{
    width:100%;
    text-align:left;
  }
}