:root {
  --bg: #050816;
  --bg-soft: #0b1020;
  --card: #111827;
  --card-2: #151f32;
  --gold: #facc15;
  --gold-dark: #b8860b;
  --blue: #38bdf8;
  --green: #22c55e;
  --red: #ef4444;
  --text: #ffffff;
  --muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(250, 204, 21, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 30%),
    linear-gradient(180deg, #050816 0%, #080b13 45%, #050505 100%);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 22, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #050816;
  font-weight: 900;
  background: linear-gradient(135deg, #facc15, #f97316);
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.35);
}

.logo-text span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #dbeafe;
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a:hover {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  color: #111827;
  background: linear-gradient(135deg, #facc15, #f97316);
  box-shadow: 0 16px 32px rgba(250, 204, 21, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(250, 204, 21, 0.28);
}

.btn-outline {
  border-color: var(--border);
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  padding: 88px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 999px;
  color: #fde68a;
  background: rgba(250, 204, 21, 0.08);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  max-width: 680px;
  color: #cbd5e1;
  font-size: 18px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 660px;
}

.mini-stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
}

.mini-stat strong {
  display: block;
  font-size: 24px;
  color: var(--gold);
}

.mini-stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.check-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.check-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  background: rgba(250, 204, 21, 0.18);
  border-radius: 50%;
  filter: blur(10px);
}

.check-card h2 {
  font-size: 26px;
  margin-bottom: 8px;
  position: relative;
}

.check-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
  position: relative;
}

.input-group {
  position: relative;
  display: grid;
  gap: 12px;
}

.input-group input {
  width: 100%;
  height: 54px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  padding: 0 16px;
  font-size: 16px;
  outline: none;
}

.input-group input:focus {
  border-color: rgba(250, 204, 21, 0.65);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.08);
}

.result-box {
  display: none;
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.9);
}

.result-box.show {
  display: block;
}

.result-title {
  font-weight: 900;
  margin-bottom: 10px;
}

.result-list {
  display: grid;
  gap: 8px;
  color: #dbeafe;
  font-size: 14px;
}

.result-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 7px;
}

.result-list div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.level-pill {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: #111827;
  background: var(--gold);
}

.section {
  padding: 58px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.8px;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  margin: 8px 0 12px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card,
.member-card,
.article-card,
.faq-item,
.step-card {
  background: rgba(17, 24, 39, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.stat-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.12);
}

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(250, 204, 21, 0.12);
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 18px;
}

.stat-card h3 {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card p {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.chart-wrap {
  background: rgba(17, 24, 39, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.chart-head h3 {
  font-size: 22px;
}

.chart-head p {
  color: var(--muted);
  font-size: 14px;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.member-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.member-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.09), transparent 45%);
  pointer-events: none;
}

.member-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  position: relative;
}

.member-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
  position: relative;
}

.member-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: #dbeafe;
  font-size: 14px;
  position: relative;
}

.member-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  padding: 24px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #111827;
  font-weight: 900;
  margin-bottom: 16px;
}

.step-card h3 {
  margin-bottom: 8px;
}

.step-card p {
  color: var(--muted);
  font-size: 15px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.article-card {
  overflow: hidden;
}

.article-thumb {
  height: 150px;
  background:
    linear-gradient(135deg, rgba(250, 204, 21, 0.35), rgba(56, 189, 248, 0.14)),
    #0f172a;
  display: grid;
  place-items: center;
  font-size: 42px;
}

.article-body {
  padding: 22px;
}

.article-body small {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.article-body h3 {
  font-size: 20px;
  line-height: 1.35;
  margin: 8px 0 10px;
}

.article-body p {
  color: var(--muted);
  font-size: 15px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: auto;
}

.faq-item {
  padding: 22px;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--muted);
}

.cta-box {
  text-align: center;
  padding: 42px 26px;
  background:
    linear-gradient(135deg, rgba(250, 204, 21, 0.14), rgba(56, 189, 248, 0.08)),
    rgba(17, 24, 39, 0.85);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta-box p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 22px;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.22);
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .member-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .articles-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 56px;
  }

  .nav {
    height: 68px;
  }

  .logo-text {
    font-size: 14px;
  }

  .mini-stats,
  .stats-grid,
  .member-grid {
    grid-template-columns: 1fr;
  }

  .check-card,
  .chart-wrap,
  .cta-box {
    padding: 22px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .chart-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-list div {
    flex-direction: column;
    gap: 2px;
  }
}

/* ==============================
   HEADER LOGO IMAGE UPDATE
   Logo: https://bemo88.media/assets/logo.png
   Size asli: 300x66
============================== */

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
  font-weight: normal;
  letter-spacing: normal;
}

.header-logo {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(250, 204, 21, 0.22));
}

/* Sembunyikan logo lama kalau masih ada */
.logo-mark,
.logo-text {
  display: none;
}

/* Tombol kanan header */
.nav-cta {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Tablet */
@media (max-width: 980px) {
  .nav {
    gap: 18px;
  }

  .header-logo {
    width: 240px;
  }

  .nav-menu {
    display: none;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .site-header {
    position: sticky;
  }

  .nav {
    height: 70px;
    gap: 12px;
  }

  .header-logo {
    width: 190px;
  }

  .nav-cta {
    width: auto;
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  /* Override dari .btn width:100% di mobile */
  .nav .btn {
    width: auto;
  }

  .hero-actions .btn,
  .input-group .btn,
  .cta-box .btn {
    width: 100%;
  }
}

/* Mobile kecil */
@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    height: 66px;
    gap: 8px;
  }

  .header-logo {
    width: 160px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }
}

/* Mobile sangat kecil */
@media (max-width: 360px) {
  .header-logo {
    width: 145px;
  }

  .nav-cta {
    padding: 0 10px;
    font-size: 11px;
  }
}