/* ==========================================================================
   THEME TOKENS (CSS Variables)
   ========================================================================== */
:root {
  --bg: #05070a;
  --bg-soft: #080a0f;
  --card: rgba(15, 20, 29, 0.6);
  --text: #e9edf5;
  --muted: #9aa7bd;
  --gold: #f5a623;
  --gold-2: #ffcc4c;
  --ring: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 24px;
  --shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
  --promo-h: 46px;

  /* animasi reveal */
  --reveal-dur: .5s;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background:
    radial-gradient(1000px 600px at -10% -20%, rgba(245, 166, 35, .08), transparent 60%),
    radial-gradient(900px 600px at 110% -10%, rgba(255, 204, 76, .07), transparent 55%),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto
}

/* Gradient emas untuk teks judul */
.gradient-text {
  background-image: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Utility a11y */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, #090b10e6, #090b10d5 60%, transparent);
  backdrop-filter: blur(10px);
}

body.has-promo header {
  top: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  /* Reduced from 72px for a sleeker look */
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .3px;
}

.brand span {
  color: var(--gold)
}

.logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(255, 204, 76, .25);
}

/* DESKTOP NAV */
.nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Nav Links are now styled below in the utility/premium section */

.nav-links .cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1200;
  filter: brightness(1.03);
  box-shadow: 0 6px 22px rgba(255, 204, 76, .28);
  transform: translateY(-1px);
}

.nav-links .cta:active {
  transform: translateY(0)
}

/* HAMBURGER */
.menu-btn {
  display: none;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 110;
  transition: transform 0.3s ease;
}

.menu-btn span {
  width: 28px;
  height: 2px;
  background: #c2cde2;
  display: block;
  border-radius: 4px;
  margin: 6px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Animasi Hamburger ke X */
body.nav-open .menu-btn span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--gold);
}

body.nav-open .menu-btn span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

body.nav-open .menu-btn span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--gold);
}

/* MOBILE NAV (Premium Sidebar) */
@media (max-width: 980px) {
  .nav {
    justify-content: flex-start;
    gap: 12px;
  }

  .menu-btn {
    display: block;
    order: 1;
  }

  .brand {
    order: 2;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;
    background: rgba(15, 20, 29, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
    padding: 80px 20px;
    z-index: 120;
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    left: 0;
  }

  .nav-links a {
    width: 100%;
    text-align: left;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }

  .nav-links.open a {
    opacity: 1;
    transform: translateX(0);
  }

  /* Close button inside sidebar */
  .side-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #1a212c;
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 130;
    transition: all 0.2s ease;
  }

  .side-close:hover {
    background: var(--gold);
    color: #1a1200;
    transform: rotate(90deg);
  }

  /* Stagger animation links */
  .nav-links.open a:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.open a:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.open a:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-links.open a:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-links.open a:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-links.open a:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav-links a.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #1a1200;
  }

  /* Overlay saat menu buka */
  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 95;
    animation: fadeIn 0.3s ease forwards;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.section {
  padding: 60px 0;
  /* Reduced from 100px */
}

@media (max-width: 768px) {
  .section {
    padding: 24px 0;
    /* Ultra tight on mobile */
  }

  .section+.section {
    padding-top: 0;
  }

  .section-head {
    margin-bottom: 20px;
  }
}

.page-hero {
  padding: 40px 0 40px;
  /* Reduced from 60px */
  background:
    radial-gradient(1000px 500px at 0% 0%, rgba(245, 166, 35, 0.15), transparent 70%),
    radial-gradient(800px 400px at 100% 0%, rgba(245, 166, 35, 0.10), transparent 60%);
}

.title {
  font-size: clamp(28px, 3.5vw, 42px);
  margin: 0 0 10px;
  font-weight: 900;
}

.lead {
  color: var(--muted);
  max-width: 60ch;
  /* Slightly shorter for better readability */
  line-height: 1.6;
}

.lead2 {
  color: var(--muted);
  max-width: 60ch;
  text-align: center;
  margin: 0 auto;
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 16px;
  /* Slightly tighter gap */
}

.grid-2 {
  grid-template-columns: 1.15fr .85fr
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 12px;
  /* Tighter badge */
  border-radius: 999px;
  border: 1px solid var(--ring);
  background: rgba(12, 18, 27, 0.4);
  /* Softer glass */
  backdrop-filter: blur(12px);
  color: #ffd98b;
  font-weight: 700;
  font-size: 11px;
  /* Smaller for premium feel */
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(46, 204, 113, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

.section-head {
  margin-bottom: 24px;
  /* Even tighter */
  max-width: 800px;
}

.section-head .badge {
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(28px, 5vw, 52px);
  /* Slightly smaller for cleaner look */
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.type-wrap {
  min-height: 1.2em;
  margin-bottom: 12px;
}

.hero-actions {
  margin-top: 24px;
  /* Reduced from 32px inline */
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #e9edf5;
  opacity: 0.9;
}

.stats {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.stat {
  background: rgba(15, 20, 29, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  flex: 1;
  min-width: 140px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.3);
}

.stat-icon {
  font-size: 20px;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
}

.section-alt {
  background: radial-gradient(circle at 50% 100%, rgba(245, 166, 35, 0.05), transparent 70%);
}

.section-head .eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.feature-card {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(15, 20, 29, 0.6), rgba(15, 20, 29, 0.3));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(15, 20, 29, 0.8), rgba(245, 166, 35, 0.05));
  border-color: rgba(245, 166, 35, 0.2);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 1px solid var(--ring);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
  }
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1200;
  border: 0;
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.2), inset 0 2px 0 rgba(255, 255, 255, 0.4);
  font-weight: 900;
}

.btn.primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}

.btn.primary:hover::before {
  left: 100%;
}

.btn.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(245, 166, 35, 0.4);
  filter: brightness(1.05);
}

.btn.ghost {
  background: rgba(15, 20, 29, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffe9ad;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.h3 {
  font-weight: 900;
  font-size: 24px;
  color: #ffe28a
}

.cursor {
  display: inline-block;
  animation: blink 1s steps(1) infinite
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.btn-text:hover {
  gap: 12px;
  color: var(--gold-2);
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: 0.02em;
}

/* Active Link "Headlight" Effect */
.nav-links a.active {
  color: var(--gold) !important;
  background: rgba(245, 166, 35, 0.08) !important;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 12px;
  right: 12px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  box-shadow: 0 0 15px var(--gold), 0 0 5px var(--gold);
}

.nav-links a:not(.cta):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* CTA styling in nav */
.nav-links .cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1200 !important;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.2);
}

.nav-links .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

.side-close {
  display: none;
  /* Hide on laptop (mode lebar) */
}

hr.sep {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 18px 0
}

/* ==========================================================================
   HERO COMPOSITE
   ========================================================================== */
.hero-wrap {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 22px;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.hero-wrap>div:first-child {
  position: relative;
  z-index: 2
}

.hero-card {
  position: relative;
  overflow: visible;
  z-index: 1
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  opacity: .95;
}

.hero-ribbon {
  position: absolute;
  top: -12px;
  left: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1200;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
}

/* Cleaned up duplicate hero-title */

/* ==========================================================================
   CARD GRID
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media(max-width:1100px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablet */
    gap: 12px;
  }
}

@media(max-width:768px) {

  .grid-2,
  .grid-3,
  .cards,
  .hero-wrap {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  color: #a7b3c8;
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================
   LISTS & ELEMENTS
   ========================================= */
.list-check {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.list-check li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--muted);
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: rgba(245, 166, 35, 0.2);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.list-check li strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

/* COMMIT ITEMS */
.commit-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.commit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.commit-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid var(--border);
}

.commit-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.commit-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* PRICING ELEMENTS */
.tiered-pricing {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tier strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 6px 14px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.chip:hover {
  background: var(--gold);
  color: #1a1200;
  transform: translateY(-2px);
}

.chip.dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.chip.featured-chip {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(245, 166, 35, 0.3);
  background: rgba(245, 166, 35, 0.2);
}

.chip.dark.featured-chip {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(245, 166, 35, 0.2);
  color: var(--gold);
}

.chip.dark.featured-chip:hover {
  background: var(--gold);
  color: #1a1200;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* BENEFIT ITEMS */
.benefit-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-item .check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--gold);
  color: #1a1200;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}

.benefit-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    transform var(--reveal-dur, .5s) cubic-bezier(.2, .8, .2, 1),
    opacity var(--reveal-dur, .5s);
}

.reveal--left {
  transform: translateX(-18px)
}

.reveal--right {
  transform: translateX(18px)
}

.reveal.is-inview {
  opacity: 1;
  transform: none
}

.btn,
.hero-btn,
.cta {
  position: relative;
  overflow: hidden
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple .6s linear;
  background: rgba(255, 204, 76, .35);
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(16);
    opacity: 0
  }
}

.h3.glow {
  text-shadow: 0 0 14px rgba(245, 166, 35, .45),
    0 0 42px rgba(255, 204, 76, .35);
}

/* ==========================================================================
   CHIPS & GALLERY
   ========================================================================== */

/* versi baru: pakai grid */
.chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.chip {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1200;
  border: 0;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(255, 204, 76, .18);
  width: 100%;
}

.chip .small {
  font-size: 12px;
  opacity: .9
}

.chip.dark {
  background: #1809e6;
  color: #ffffff;
  border: 1px solid var(--ring);
  box-shadow: none;
}

/* two-col */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width:680px) {
  .two-col {
    grid-template-columns: 1fr
  }
}

/* Pamflet */
.pamflet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.pamflet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

@media(max-width:860px) {
  .pamflet {
    grid-template-columns: 1fr
  }
}

/* ==========================================================================
   PROMO BAR (Top Announcement)
   ========================================================================== */
/* Promo bar muncul di dalam header (via #promoMount) */
header .promo-bar {
  position: relative;
  z-index: 101;
  background: linear-gradient(90deg, #090b10, #1a1408, #090b10);
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
  display: flex;
  align-items: center;
  min-height: var(--promo-h);
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.promo-content-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.promo-content-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.promo-link-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-link-btn:hover {
  background: var(--gold);
  color: #1a1200;
  border-color: var(--gold);
}

.promo-badge {
  background: var(--gold);
  color: #1a1200;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.promo-msg {
  font-size: 13px;
  font-weight: 500;
  color: #ffe9ad;
}

.promo-msg strong {
  color: #fff;
}

@media (max-width: 600px) {
  .promo-content-right {
    display: none;
  }

  .promo-inner {
    justify-content: center;
  }
}

/* tombol X di kanan */
.promo-close {
  margin-left: auto;
  margin-right: 12px;
  background: none;
  border: 1px solid var(--ring);
  color: #ffd98b;
  border-radius: 10px;
  height: 28px;
  width: 28px;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
}

@media(max-width:720px) {
  .promo-inner {
    font-size: 14px
  }
}

/* ==========================================================================
   PROMO TABLE (8+1) — ADAPTIF HP
   ========================================================================== */
.promo-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media(max-width:980px) {
  .promo-wrap {
    grid-template-columns: 1fr
  }
}

.promo-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: clamp(13px, 1.6vw, 16px);
  line-height: 1.35;
}

.promo-table th,
.promo-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  white-space: normal;
  word-break: break-word;
}

.promo-table th {
  background: #0b1018;
  color: #ffd98b;
  font-weight: 900;
}

.promo-table tr:last-child td {
  border-bottom: 0
}

.promo-hit {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1200;
  font-weight: 900;
}

/* Badge “REKOMENDASI” dalam tabel */
.promo-table .promo-badge {
  font-size: .86em;
  padding: .35em .7em;
  line-height: 1.05;
  margin-left: .5em;
  white-space: nowrap;
  border-radius: 999px;
  gap: .4em;
  background: #0c121b;
  border: 1px solid var(--ring);
  color: #ffe9ad;
}

/* Proporsi kolom desktop */
@media(min-width:981px) {

  .promo-table th:nth-child(1),
  .promo-table td:nth-child(1) {
    width: 32%
  }

  .promo-table th:nth-child(2),
  .promo-table td:nth-child(2) {
    width: 18%
  }

  .promo-table th:nth-child(3),
  .promo-table td:nth-child(3) {
    width: 20%
  }

  .promo-table th:nth-child(4),
  .promo-table td:nth-child(4) {
    width: 30%
  }
}

/* HP kecil */
@media(max-width:560px) {
  .promo-table {
    font-size: 12px
  }

  .promo-table th,
  .promo-table td {
    padding: 8px 10px
  }

  .promo-table .promo-badge {
    font-size: .82em;
    padding: .3em .6em;
    margin-left: .45em;
  }
}

@media(max-width:400px) {

  .promo-table th:nth-child(1),
  .promo-table td:nth-child(1) {
    width: 36%
  }

  .promo-table th:nth-child(4),
  .promo-table td:nth-child(4) {
    width: 28%
  }
}

/* ==========================================================================
   SOFT NAVIGATION (fade overlay)
   ========================================================================== */
.page-veil {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.page-veil.show {
  opacity: 1;
  pointer-events: auto
}

.hero-card,
.hero-card img,
.reveal {
  will-change: transform
}

@media(prefers-reduced-motion:reduce) {
  .page-veil {
    transition: none
  }
}

/* ==========================================================================
   SECTION VARIAN & FEATURE GRID (KELEBIHAN RDP)
   ========================================================================== */
.section-alt {
  padding: 28px 0 40px;
  background:
    radial-gradient(700px 380px at 0% 0%, rgba(245, 166, 35, .10), transparent 55%),
    radial-gradient(700px 380px at 100% 0%, rgba(15, 20, 29, 0.95), transparent 55%),
    var(--bg-soft);
}

/* Section-head */
.section-head {
  text-align: center;
  margin-bottom: 18px;
}

.section-head .title {
  margin-bottom: 6px
}

.section-head .lead {
  margin: 0 auto;
  max-width: 60ch;
}

.eyebrow-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 9px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1200;
  box-shadow: 0 6px 18px rgba(255, 204, 76, .20);
  margin-bottom: 8px;
  font-size: clamp(24px, 5.6vw, 32px);
}

.section-cta {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

.section-cta .btn {
  font-weight: 800
}

@media (max-width:680px) {
  .section-head .title {
    font-size: clamp(24px, 5.6vw, 32px)
  }

  .section-head .lead {
    font-size: 14px
  }
}

.tegas {
  color: var(--gold)
}

/* Pamflet heading */
.pamflet-title {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: .5px;
  background: linear-gradient(135deg, #ffd778, #f5a623);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pamflet-sub {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 22px;
}

/* Grid kelebihan */
.feature-grid {
  margin-top: 18px;
  align-items: stretch;
}

/* Card kelebihan */
.card.feature-card {
  position: relative;
  padding: 18px 18px 16px;
  background:
    radial-gradient(260px 260px at 0% 0%, rgba(245, 166, 35, 0.12), transparent 60%),
    #0f141d;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transition:
    transform 0.16s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.2s ease-out,
    background 0.22s ease-out;
}

.card.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.78);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.78);
  background:
    radial-gradient(320px 320px at 0% 0%, rgba(245, 166, 35, 0.20), transparent 65%),
    #101623;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: .2px;
}

.warna-kartu {
  background-image: linear-gradient(135deg, var(--gold), var(--gold-2));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  text-align: justify;
}

/* HERO CARD (BIG SALE) — Refined proportions to not be 'besar banget' */
.hero-card {
  position: relative;
  max-width: 320px;
  /* Shrunk significantly from 480px */
  max-height: 450px;
  margin-inline: auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(245, 166, 35, 0.1);
  transition: all 0.4s ease;
  background: var(--card);
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1), transparent 70%);
  z-index: -1;
  filter: blur(15px);
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.hero-card img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.01);
}

.hero-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--gold);
  color: #1a1200;
  padding: 8px 45px;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: rotate(45deg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.feature-card--new {
  position: relative;
  overflow: hidden;
}

.feature-card--new::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  pointer-events: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  opacity: .16;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  padding: 1px;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.feature-card--new .warna-kartu {
  text-shadow: 0 0 14px rgba(245, 166, 35, .35),
    0 0 36px rgba(255, 204, 76, .28);
}

.tag-new {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  color: #1a1200;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 24px rgba(255, 204, 76, .38);
  animation: newPulse 1.9s ease-in-out infinite;
}

@keyframes newPulse {

  0%,
  100% {
    transform: scale(1);
    filter: brightness(1)
  }

  50% {
    transform: scale(1.05);
    filter: brightness(1.07)
  }
}

.feature-card--new .feature-lead {
  margin: 2px 0 8px;
  color: #ffecb0;
  line-height: 1.55;
  text-align: justify;
}

@media (max-width:900px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:640px) {
  .feature-grid {
    grid-template-columns: 1fr
  }

  .tag-new {
    top: 10px;
    right: 10px;
    font-size: 11px;
    padding: 3px 9px;
  }
}

/* Base gaya list custom */
.list-ring,
.list-dot,
.list-square,
.list-diamond,
.list-dash,
.list-arrow,
.list-check {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.list-ring li,
.list-dot li,
.list-square li,
.list-diamond li,
.list-dash li,
.list-arrow li,
.list-check li {
  position: relative;
  margin: 8px 0;
  padding-left: 28px;
  line-height: 1.6;
  color: var(--muted);
  text-align: justify;
}

.list-ring li::before,
.list-dot li::before,
.list-square li::before,
.list-diamond li::before,
.list-dash li::before,
.list-arrow li::before,
.list-check li::before {
  position: absolute;
  left: 0;
  top: 0.85em;
  transform: translateY(-50%);
  content: "";
}

.list-ring li::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold-2);
  background: transparent;
  box-shadow: 0 0 0 2px rgba(255, 204, 76, .14);
}

.list-dot li::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 0 2px rgba(255, 204, 76, .18);
}

.list-square li::before {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 0 2px rgba(255, 204, 76, .18);
}

.list-diamond li::before {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 0 2px rgba(255, 204, 76, .18);
}

.list-dash li {
  padding-left: 22px
}

.list-dash li::before {
  content: "—";
  transform: none;
  top: 0;
  left: 0;
  color: var(--gold-2);
  font-weight: 900;
}

.list-arrow li {
  padding-left: 22px
}

.list-arrow li::before {
  content: "›";
  transform: none;
  top: 0;
  left: 0;
  color: var(--gold-2);
  font-weight: 900;
}

.list-check li {
  padding-left: 24px
}

.list-check li::before {
  content: "✓";
  transform: none;
  top: 0;
  left: 0;
  color: var(--gold-2);
  font-weight: 900;
}

/* CTA bawah section */
.section-cta--bottom {
  justify-content: center;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.btn-cta {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  gap: .7rem;
  box-shadow:
    0 14px 38px rgba(255, 204, 76, .26),
    0 2px 0 rgba(0, 0, 0, .25) inset;
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .22s ease, filter .2s ease;
}

.btn-cta:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow:
    0 18px 46px rgba(255, 204, 76, .32),
    0 2px 0 rgba(0, 0, 0, .25) inset;
}

.btn-cta:active {
  transform: translateY(0);
}

.cta-arrow {
  opacity: .9;
  flex-shrink: 0;
}

.btn--shine {
  position: relative;
  overflow: hidden
}

.btn--shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, .35) 50%,
      rgba(255, 255, 255, 0) 70%);
  transform: translateX(-120%) skewX(-20deg);
  transition: transform .6s ease;
  pointer-events: none;
}

.btn--shine:hover::after {
  transform: translateX(120%) skewX(-20deg)
}

.btn--pulse {
  animation: ctaPulse 2.2s ease-in-out infinite;
}

@keyframes ctaPulse {

  0%,
  100% {
    box-shadow:
      0 14px 38px rgba(255, 204, 76, .26),
      0 2px 0 rgba(0, 0, 0, .25) inset;
  }

  50% {
    box-shadow:
      0 18px 54px rgba(255, 204, 76, .36),
      0 2px 0 rgba(0, 0, 0, .25) inset;
  }
}

@media (max-width:640px) {
  .btn-cta {
    width: 100%;
    justify-content: center
  }
}

/* ==========================================================================
   PAYMENT METHODS
   ========================================================================== */
.section-pay {
  padding-top: 8px
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width:860px) {
  .payment-grid {
    grid-template-columns: 1fr
  }
}

.payment-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease;
}

.payment-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 166, 35, .6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .65);
}

.payment-card:focus-visible {
  outline: 2px solid rgba(255, 204, 76, .55);
  outline-offset: 3px;
  border-radius: 16px;
}

.pay-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #0c121b;
  border: 1px solid var(--ring);
  border-radius: 12px;
  padding: 6px;
}

.pay-logo--qris {
  width: 56px;
  height: 56px
}

.pay-info {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.pay-name {
  font-weight: 900;
  letter-spacing: .2px
}

.pay-desc {
  color: var(--muted);
  font-size: 14px
}

.pay-hint {
  color: #b9c6df;
  opacity: .75
}

/* Toast */
.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1200;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Modal QRIS */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.modal.show {
  opacity: 1;
  pointer-events: auto
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(2px);
}

.modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #0c121b;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  width: min(520px, 92vw);
  box-shadow: var(--shadow);
  text-align: center;
}

.modal__dialog img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  background: #fff;
}

.modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid var(--ring);
  background: #0f141d;
  color: #ffd98b;
  cursor: pointer;
  line-height: 1;
  font-size: 18px;
}

.modal__hint {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

/* PAYMENT NOTE */
.pay-note {
  margin-top: 18px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 204, 76, .25);
  border-radius: 14px;
  background: linear-gradient(135deg, #0c121b, #131b28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}

.pay-note__text {
  margin: 0;
  font-weight: 700;
  color: #ffe9ad;
  letter-spacing: .2px;
}

.pay-note .btn {
  border-radius: 999px;
  font-weight: 900;
}

@media (max-width:720px) {
  .pay-note {
    flex-direction: column;
    text-align: center;
  }

  .pay-note .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   TUTORIAL PAGE
   ========================================================================== */
.tutorial-hero {
  padding-top: 64px;
  padding-bottom: 40px;
  background:
    radial-gradient(900px 520px at -10% -20%, rgba(245, 166, 35, 0.14), transparent 60%),
    radial-gradient(800px 480px at 110% -10%, rgba(255, 204, 76, 0.10), transparent 60%);
}

.tutorial-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 32px;
  align-items: center;
}

.tutorial-hero-text .title {
  margin-bottom: 14px
}

.tutorial-hero-text .lead {
  max-width: 540px
}

.tutorial-hero-meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-soft {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.14);
  border: 1px solid rgba(245, 166, 35, 0.25);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tutorial-hero-highlight {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--ring);
  padding: 22px 22px 24px;
}

.tutorial-hero-highlight h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.tutorial-hero-highlight p {
  margin-bottom: 18px
}

.tutorial-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* GRID VIDEO TUTORIAL */
.tutorial-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tutorial-card {
  position: relative;
  padding-top: 18px;
  padding-bottom: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.tutorial-number {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 12px;
  opacity: .65;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.tutorial-card .title {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 17px;
}

.tutorial-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 14px;
}

.tutorial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tutorial-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  padding-inline: 14px;
  width: 100%;
  text-align: center;
}

/* tombol ghost di tutorial */
.btn-ghost {
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid rgba(245, 166, 35, 0.65);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn-ghost:hover {
  background: rgba(245, 166, 35, 0.15);
}

/* RESPONSIVE TUTORIAL */
@media (max-width:960px) {
  .tutorial-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .tutorial-hero-highlight {
    order: -1
  }

  .tutorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:640px) {
  .tutorial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tutorial-card {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

/* =========================================
   FIX NAVBAR MOBILE (OVERRIDE PALING BAWAH)
   ========================================= */
/* REMOVED DUPLICATE OVERRIDE */


/* Downlaod

/* =========================================
   DOWNLOAD PAGE – GRID & CARD
   ========================================= */

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 860px) {
  .download-grid {
    grid-template-columns: 1fr;
  }
}

.download-card {
  position: relative;
  background: linear-gradient(145deg, #0f141d, #0a0f19);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* =========================================
   DOWNLOAD PAGE – LOGO (PLAYSTORE / APPSTORE)
   ========================================= */

.download-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 0% 0%, rgba(245, 166, 35, 0.24), transparent 55%),
    #050814;
  border: 1px solid rgba(255, 204, 76, 0.45);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 204, 76, 0.18);
  max-width: 260px;
  /* lebar maksimum sama untuk semua logo */
}

/* gambar Play Store & App Store dibuat seragam */
.download-logo-img {
  display: block;
  width: 100%;
  /* penuh mengikuti container */
  max-width: 260px;
  /* biar tidak lebih besar dari wrap */
  height: auto;
  /* rasio asli terjaga */
}

/* =========================================
   DOWNLOAD PAGE – TITLE & TEXT
   ========================================= */

.download-card .download-title {
  font-size: 18px;
  line-height: 1.4;
  margin: 10px 0 6px;

  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  background-image: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  text-align: left;
}

.download-card .download-text {
  font-size: 14px;
  margin-top: 4px;
  color: var(--muted);
  text-align: justify;
}

/* Link teks di bawah deskripsi (Buka di Google Play / App Store) */
.download-link-text {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--gold-2);
  font-weight: 600;
  text-decoration: none;
}

.download-link-text:hover {
  text-decoration: underline;
}

/* =========================================
   DOWNLOAD PAGE – BADGE KECIL (OPTIONAL)
   ========================================= */

/* contoh kalau mau kasih badge kecil di pojok atas kartu:
   <span class="download-tag">Resmi</span>
*/
.download-tag {
  position: absolute;
  top: 12px;
  right: 14px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.45);
  color: #ffe9ad;
}

/* =========================================
   DOWNLOAD PAGE – BLOK ALTERNATIF APK (ANDROID)
   ========================================= */

/* kalau di HTML kamu tambahkan:
   <div class="download-alt">
     <div class="download-alt-title">Alternatif file APK</div>
     <p class="download-alt-text">Jika Play Store bermasalah, kamu bisa pakai file APK langsung:</p>
     <a href="assets/file/client.apk" class="download-alt-link" download>Unduh client.apk →</a>
   </div>
*/

.download-alt {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 204, 76, 0.6);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.14), rgba(5, 8, 20, 0.96));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.download-alt-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffe9ad;
  margin-bottom: 4px;
}

.download-alt-text {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 6px;
}

.download-alt-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #1a1200;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  text-decoration: none;
}

.download-alt-link:hover {
  filter: brightness(1.05);
}

/* =========================================
   DOWNLOAD PAGE – HERO
   ========================================= */

.page-hero--download {
  padding: 90px 0 40px;
  /* sedikit lebih pendek dari home */
}

.download-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.download-hero .badge {
  margin-inline: auto;
  margin-bottom: 10px;
}

.download-hero-title {
  font-size: clamp(24px, 5vw, 40px);
  margin-bottom: 15px;
  line-height: 1.2;
}

.download-hero-sub {
  margin: 0 auto;
  max-width: 60ch;
  font-size: 15px;
  color: var(--muted);
}

/* =========================================
   DOWNLOAD PAGE – PREMIUM STORE BADGES
   ========================================= */
.download-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
  /* Center on mobile usually looks better */
}

@media (min-width: 768px) {
  .download-store-badges {
    justify-content: flex-start;
  }
}

.store-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  min-width: 200px;
  width: auto;
  max-width: 100%;
}

@media (max-width: 480px) {
  .store-badge-premium {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    min-width: unset;
  }
}

.store-badge-premium:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(245, 166, 35, 0.25);
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-pre {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.85;
  letter-spacing: 0.08em;
}

.store-name {
  font-size: 22px;
  font-weight: 800;
}

.store-badge-apple {
  background: #000;
  border-color: rgba(255, 255, 255, 0.2);
}

.store-badge-apple svg {
  color: #fff;
}

/* =========================================
   PROMO CARD
   ========================================= */
.promo-card {
  margin-top: 32px;
  background: linear-gradient(145deg, rgba(20, 25, 35, 0.9), rgba(10, 15, 25, 0.95));
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.promo-badge {
  background: var(--gold);
  color: #1a1200;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 20px;
  align-self: flex-start;
  border-bottom-right-radius: 12px;
  letter-spacing: 0.1em;
}

.promo-content {
  padding: 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
}

.promo-main h3 {
  font-size: 28px;
  margin: 0 0 12px;
  color: #fff;
}

.promo-main p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.promo-stats {
  display: flex;
  gap: 24px;
}

.p-stat {
  display: flex;
  flex-direction: column;
}

.p-stat strong {
  font-size: 20px;
  color: var(--gold);
}

.p-stat span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
}

.promo-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

/* =========================================
   PRICING CARDS (Premium)
   ========================================= */
.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Tighter gap */
  padding: 24px 20px !important;
  /* Reduced from 32px/28px */
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.pricing-card:hover {
  transform: translateY(-10px) !important;
}

.pricing-card .h3 {
  font-size: 20px;
  color: #fff;
  margin: 0;
}

.pricing-card .price {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(245, 166, 35, 0.2);
}

.pricing-card .price small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.pricing-card .list-check {
  flex-grow: 1;
  margin: 0;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-card.featured {
  border-color: var(--gold);
  background: radial-gradient(circle at top right, rgba(245, 166, 35, 0.15), transparent 70%), var(--card);
  box-shadow: 0 20px 40px rgba(245, 166, 35, 0.15);
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: #1a1200;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

.chip {
  padding: 6px 14px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.chip.dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Tutorial Grid & Cards */
/* Tutorial Grid & Cards - Premium Redesign */
.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .tutorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tutorial-grid {
    grid-template-columns: 1fr;
  }
}

.tutorial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 35px 28px;
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tutorial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(245, 166, 35, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.tutorial-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  background: rgba(20, 20, 20, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 166, 35, 0.2);
}

.tutorial-card:hover::before {
  opacity: 1;
}

.tutorial-number {
  font-size: 80px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  position: absolute;
  bottom: -10px;
  right: 10px;
  line-height: 1;
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: 0;
  opacity: 0.5;
}

.tutorial-card:hover .tutorial-number {
  color: rgba(245, 166, 35, 0.05);
  -webkit-text-stroke: 0;
  transform: scale(1.1) rotate(-5deg);
  opacity: 1;
}

.tutorial-card .title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.tutorial-desc {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 25px;
  line-height: 1.6;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.tutorial-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.tutorial-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tutorial-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  box-shadow: 0 5px 20px rgba(245, 166, 35, 0.3);
}

/* Tutorial Hero Premium */
.tutorial-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(30, 35, 50, 0.4) 0%, rgba(10, 10, 15, 0) 70%);
}

.tutorial-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 992px) {
  .tutorial-hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .tutorial-hero-highlight {
    margin-top: 20px;
  }
}

.tutorial-hero-highlight {
  background: rgba(245, 166, 35, 0.03);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.tutorial-hero-highlight::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.chip.featured-chip {
  border: 1px solid var(--gold);
  background: linear-gradient(145deg, rgba(245, 166, 35, 0.2), rgba(26, 18, 0, 0.8));
  color: var(--gold);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 15px rgba(245, 166, 35, 0.15);
}

.chip.high-spec {
  border: 1px solid #00f2ff;
  background: linear-gradient(145deg, rgba(0, 242, 255, 0.1), transparent);
  color: #00f2ff;
  box-shadow: 0 5px 15px rgba(0, 242, 255, 0.1);
}

.chip.good-spec {
  border: 1px solid #00ff88;
  background: linear-gradient(145deg, rgba(0, 255, 136, 0.1), transparent);
  color: #00ff88;
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.1);
}


.promo-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 860px) {
  .promo-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .promo-stats {
    justify-content: center;
  }
}

/* =========================================
   PAMFLET GRID (Premium Edition)
   ========================================= */
.section-pamflet {
  padding: 60px 0;
  background: radial-gradient(circle at bottom, rgba(245, 166, 35, 0.05), transparent 70%);
}

@media (max-width: 768px) {
  .section-pamflet {
    padding: 32px 0;
  }
}

.pamflet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
  max-width: 800px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .pamflet-grid {
    gap: 16px;
    margin-top: 20px;
  }
}

.pamflet-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 9 / 16;
  /* Portrait catalog style */
  background: var(--card);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pamflet-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.8));
  z-index: 1;
}

.pamflet-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.pamflet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 25, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}

.pamflet-item:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(245, 166, 35, 0.15);
}

.pamflet-item:hover img {
  transform: scale(1.1) rotate(1deg);
}

.pamflet-item:hover .pamflet-overlay {
  opacity: 1;
}

@media (max-width: 720px) {
  .pamflet-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .pamflet-item {
    aspect-ratio: 9 / 14;
    /* Slightly shorter for mobile scroll */
  }
}

/* =========================================
   PREMIUM FOOTER (Full Redesign)
   ========================================= */
.footer-premium {
  background: linear-gradient(180deg, rgba(15, 20, 29, 0) 0%, rgba(5, 7, 10, 1) 100%);
  border-top: 1px solid var(--border);
  padding: 40px 0 0;
  margin-top: 40px;
  color: var(--muted);
}

.footer-grid-main {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  text-align: left;
}



.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  margin: 0;
  text-align: left;
}

.footer-top-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 10px;
  width: 100%;
}

.footer-brand-col .footer-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 100%;
  text-align: left;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  color: var(--gold);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
  background: var(--gold);
  color: #1a1200;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(245, 166, 35, 0.4);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-links-col h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 15px;
  color: var(--muted);
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(8px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.3);
}

.foot-btm-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.foot-legal {
  display: flex;
  gap: 30px;
}

.foot-legal a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.foot-legal a:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .footer-grid-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .footer-brand-col {
    text-align: center;
    align-items: center;
    max-width: 100%;
  }

  .footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    text-align: center;
  }

  .footer-links-col:nth-child(2) {
    text-align: center;
    align-items: center;
  }
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-right: 12px;
}

@media (max-width: 640px) {
  .footer-premium {
    padding-top: 60px;
    margin-top: 60px;
  }

  .footer-grid-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand-col {
    grid-column: span 1;
  }

  .foot-btm-wrap {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Utils */
.tegas {
  color: #ffca28;
  /* Bright Golden Yellow */
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255, 202, 40, 0.3);
}

.warna-kartu {
  color: var(--gold);
  font-weight: 700;
}

/* Comparison Table (Premium) */
.comparison-section {
  padding: 80px 0;
}

.comparison-table-wrapper {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow-x: auto;
  /* Enable scroll here */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

/* Custom scrollbar for better visibility on horizontal scroll */
.comparison-table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.comparison-table-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

.table-premium {
  width: 100%;
  min-width: 800px;
  /* Fixed width to force scroll on small screens */
  border-collapse: collapse;
}

.table-premium th,
.table-premium td {
  padding: 14px 18px;
  /* Tighter table spacing */
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-premium th {
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table-premium tr:last-child td {
  border-bottom: none;
}

.table-premium td:first-child,
.table-premium th:first-child {
  text-align: left;
  background: rgba(255, 255, 255, 0.01);
  font-weight: 600;
  width: 200px;
}

.table-premium .check-icon {
  color: #4cd137;
  font-weight: 900;
}

.table-premium .cross-icon {
  color: #ff4757;
  opacity: 0.5;
}

.table-premium .highlight-col {
  background: rgba(245, 166, 35, 0.03);
  font-weight: 700;
  color: var(--gold);
}

.table-premium tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}