/* ==========================================================================
   MegaPro Affiliate - Ultra-Premium Design System & Stylesheet
   Theme: Midnight Luxury & High-Tech Wellness (Deep Slate, Gold & Emerald)
   Fully Responsive & Proportional across Desktop, Tablet & Mobile
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Tokens */
  --bg-main: #070B14;
  --bg-surface: #0E1526;
  --bg-card: rgba(18, 26, 46, 0.75);
  --bg-card-hover: rgba(26, 38, 68, 0.85);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(245, 158, 11, 0.35);

  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  --accent-gold: #F59E0B;
  --accent-gold-light: #FCD34D;
  --accent-gold-glow: rgba(245, 158, 11, 0.25);

  --accent-emerald: #10B981;
  --accent-emerald-light: #34D399;
  --accent-emerald-glow: rgba(16, 185, 129, 0.25);

  --accent-cyan: #06B6D4;
  --accent-cyan-light: #67E8F9;
  --accent-cyan-glow: rgba(6, 182, 212, 0.25);

  --accent-red: #EF4444;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 8px 25px rgba(245, 158, 11, 0.25);
  --shadow-emerald: 0 8px 25px rgba(16, 185, 129, 0.25);
  --shadow-cyan: 0 8px 25px rgba(6, 182, 212, 0.25);

  /* Layout */
  --container-max: 1220px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 35%, rgba(245, 158, 11, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 75%, rgba(16, 185, 129, 0.07) 0%, transparent 50%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #FDE68A 0%, #F59E0B 50%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #A5F3FC 0%, #06B6D4 50%, #0284C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-emerald {
  background: linear-gradient(135deg, #A7F3D0 0%, #10B981 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent-gold-light);
}

.section-badge.cyan {
  background: rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.3);
  color: var(--accent-cyan-light);
}

.section-badge.emerald {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--accent-emerald-light);
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Proportional Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  line-height: 1.2;
}

.btn-gold {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  color: #070B14;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.35);
  background: linear-gradient(135deg, #FCD34D 0%, #D97706 100%);
}

.btn-emerald {
  background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
  color: #070B14;
  box-shadow: var(--shadow-emerald);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-main);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.02rem;
}

.btn-md {
  padding: 11px 22px;
  font-size: 0.92rem;
}

/* ==========================================================================
   Section 1: Top Bar & Header Navigation (Proportional)
   ========================================================================== */
.topbar {
  background: rgba(14, 21, 38, 0.94);
  border-bottom: 1px solid var(--border-glass);
  padding: 6px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-tag, .topbar-omnas {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-gold-light);
  font-weight: 600;
  font-size: 0.8rem;
}

.topbar-location {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.topbar-wa {
  color: var(--accent-emerald-light);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 20, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-badge-img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  color: #FFF;
  letter-spacing: -0.01em;
}

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

.brand-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--accent-gold-light);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-header {
  padding: 8px 16px;
  font-size: 0.84rem;
  gap: 6px;
}

.btn-text-mobile {
  display: none;
}

.btn-text-desktop {
  display: inline;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

/* ==========================================================================
   Section 2: Hero Section
   ========================================================================== */
.hero {
  position: relative;
  padding: 65px 0 85px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
}

.hero-pill.gold {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--accent-gold-light);
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}

.stat-item h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent-gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

/* NO-CROP IMAGE CONTAINER: 16:9 aspect ratio, object-fit: contain */
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(245, 158, 11, 0.25);
  background: #080D1A;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.hero-img-wrap:hover img {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: rgba(14, 21, 38, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: floatAnim 4s ease-in-out infinite alternate;
}

.floating-badge.badge-top {
  top: -12px;
  right: -12px;
  border-color: var(--accent-gold);
}

.floating-badge.badge-bottom {
  bottom: -15px;
  left: -15px;
  border-color: var(--accent-emerald);
  animation-delay: -2s;
}

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.fbadge-icon {
  font-size: 1.5rem;
}

.fbadge-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.fbadge-text p {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Section 3: Reality Check & Urgensi Finansial (Slide 4-6)
   ========================================================================== */
.reality-section {
  padding: 80px 0;
  position: relative;
}

.reality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.reality-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.reality-card.danger {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.22);
}

.reality-card.success {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.22);
}

.reality-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.rc-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.reality-card.danger .rc-icon {
  background: rgba(239, 68, 68, 0.15);
  color: var(--accent-red);
}

.reality-card.success .rc-icon {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald-light);
}

.rc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #E2E8F0;
}

.rc-list li span.bullet {
  color: var(--accent-red);
  font-weight: bold;
}

.reality-card.success .rc-list li span.bullet {
  color: var(--accent-emerald-light);
}

.quadrant-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}

.quadrant-item {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.quadrant-item.highlight {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.1);
}

.q-badge {
  display: inline-block;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--accent-gold-light);
}

.quadrant-item h4 {
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.quadrant-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Section 4 & 5: Profil Perusahaan, Direksi & Formulator
   ========================================================================== */
.corporate-section {
  padding: 80px 0;
  background: rgba(14, 21, 38, 0.4);
}

.corporate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 50px;
}

/* NO-CROP IMAGE CONTAINER: 16:9 aspect ratio, object-fit: contain */
.corp-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
  background: #080D1A;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.corp-details h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.corp-details p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}

.corp-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cm-box {
  padding: 14px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.cm-box h5 {
  color: var(--accent-gold-light);
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.cm-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* NO-CROP IMAGE CONTAINER: 16:9 aspect ratio, object-fit: contain */
.trust-img-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--border-glass);
  background: #080D1A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-card h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

.trust-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Section 6, 7, 8: Etalase Katalog Produk Unggulan
   ========================================================================== */
.products-section {
  padding: 85px 0;
  position: relative;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

.tab-btn.active {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  border-color: var(--accent-gold);
  color: #070B14;
  box-shadow: var(--shadow-gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
}

/* NO-CROP PRODUCT IMAGE BOX: 16:9 aspect ratio, object-fit: contain */
.product-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #080D1A;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-glass);
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Full image visible from left to right */
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-box img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(7, 11, 20, 0.88);
  backdrop-filter: blur(8px);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  border: 1px solid rgba(245, 158, 11, 0.3);
  z-index: 2;
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: #FFF;
}

.product-ingredients {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-cyan-light);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-glass);
  gap: 8px;
}

.product-badge-mini {
  font-size: 0.76rem;
  color: var(--accent-emerald-light);
  font-weight: 600;
}

/* ==========================================================================
   Section 9: Transparansi 100% Alokasi Omset
   ========================================================================== */
.transparency-section {
  padding: 80px 0;
  background: rgba(14, 21, 38, 0.5);
}

.allocation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.allocation-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.allocation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-gold);
}

.allocation-card.cyan::before { background: var(--accent-cyan); }
.allocation-card.emerald::before { background: var(--accent-emerald); }

.alloc-percentage {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.allocation-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.allocation-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Section 10: Komparasi 2 Jalur Kemitraan (Pasif vs Aktif)
   ========================================================================== */
.pathway-section {
  padding: 80px 0;
}

.pathway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.pathway-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
}

.pathway-card.passive {
  background: linear-gradient(145deg, rgba(6, 182, 212, 0.08) 0%, rgba(14, 21, 38, 0.85) 100%);
  border: 1px solid rgba(6, 182, 212, 0.35);
  box-shadow: 0 12px 35px rgba(6, 182, 212, 0.08);
}

.pathway-card.active {
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.08) 0%, rgba(14, 21, 38, 0.85) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.08);
}

.pathway-header {
  margin-bottom: 22px;
}

.pathway-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.pathway-card.passive .pathway-tag {
  background: rgba(6, 182, 212, 0.2);
  color: var(--accent-cyan-light);
}

.pathway-card.active .pathway-tag {
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent-gold-light);
}

.pathway-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.pathway-sub {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.pathway-features {
  margin-bottom: 28px;
  flex-grow: 1;
}

.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.pf-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.pathway-card.passive .pf-check {
  background: rgba(6, 182, 212, 0.2);
  color: var(--accent-cyan-light);
}

.pathway-card.active .pf-check {
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent-gold-light);
}

/* ==========================================================================
   Section 11: Belanja Misi Reward & MegaPoin (MP)
   ========================================================================== */
.mission-section {
  padding: 80px 0;
  background: rgba(14, 21, 38, 0.35);
}

.mission-packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.mission-pkg-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.mission-pkg-card.featured {
  border-color: var(--accent-gold);
  background: linear-gradient(160deg, rgba(245, 158, 11, 0.08) 0%, rgba(18, 26, 46, 0.8) 100%);
  box-shadow: 0 14px 40px rgba(245, 158, 11, 0.12);
}

.pkg-banner-badge {
  position: absolute;
  top: 18px;
  right: -32px;
  background: var(--accent-gold);
  color: #000;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 5px 36px;
  transform: rotate(45deg);
  text-transform: uppercase;
}

.pkg-price-row {
  margin: 16px 0 20px;
}

.pkg-val-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.pkg-buy-amount {
  font-size: 2.1rem;
  font-weight: 900;
  color: #FFF;
  line-height: 1.1;
}

.pkg-reward-box {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
  border: 1px dashed rgba(245, 158, 11, 0.4);
}

.pkg-reward-box h5 {
  color: var(--accent-gold-light);
  font-size: 1.18rem;
  margin-bottom: 4px;
}

.pkg-reward-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   Section 12: Marketing Plan & Kalkulator Interaktif Komisi
   ========================================================================== */
.marketing-plan-section {
  padding: 85px 0;
}

.bonus-structure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.gen-box {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  text-align: center;
}

.gen-box.direct {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.4);
}

.gen-percent {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--accent-gold-light);
  line-height: 1;
  margin-bottom: 5px;
}

.gen-box h5 {
  font-size: 0.92rem;
  margin-bottom: 3px;
}

.gen-box p {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.calc-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 36px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.55);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.range-group label {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.range-val-badge {
  color: var(--accent-gold-light);
  font-size: 1.05rem;
}

input[type=range] {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  -webkit-appearance: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-gold);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
  transition: var(--transition);
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-result-box {
  background: rgba(7, 11, 20, 0.85);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-glass);
  text-align: center;
}

.calc-result-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}

.calc-total-number {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: var(--accent-emerald-light);
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.calc-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-glass);
  text-align: left;
}

.cb-item h6 {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.cb-item p {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0;
}

/* ==========================================================================
   Section 13 & 14: Prestasi, Pool Sharing & Lucky Draw
   ========================================================================== */
.rewards-section {
  padding: 80px 0;
  background: rgba(14, 21, 38, 0.4);
}

.luckydraw-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 50px;
}

.ld-content h3 {
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.ld-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 20px;
}

.ld-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.ld-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #E2E8F0;
}

.ld-item-icon {
  color: var(--accent-gold);
}

/* NO-CROP IMAGE CONTAINER: 16:9 aspect ratio, object-fit: contain */
.ld-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-lg);
  background: #080D1A;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ld-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================================================================
   Section 15: Galeri Bukti & Testimoni Reward Nyata
   ========================================================================== */
.proofs-section {
  padding: 80px 0;
}

.proofs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proof-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.proof-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

/* NO-CROP PROOF IMAGE BOX: 16:9 aspect ratio, object-fit: contain */
.proof-img-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #080D1A;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-glass);
}

.proof-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.proof-card:hover .proof-img-box img {
  transform: scale(1.03);
}

.proof-body {
  padding: 18px;
}

.proof-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  background: rgba(245, 158, 11, 0.12);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.proof-title {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.proof-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   Section 16 & 17: Roadmap Ekosistem & Kode Etik
   ========================================================================== */
.ecosystem-section {
  padding: 80px 0;
  background: rgba(14, 21, 38, 0.45);
}

.omnas-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.omnas-banner h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 900;
  color: var(--accent-gold-light);
  margin-bottom: 6px;
}

.omnas-banner p {
  font-size: 1.05rem;
  color: #CBD5E1;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.eco-card {
  padding: 22px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  text-align: center;
}

.eco-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.eco-card h4 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.eco-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.ethics-box {
  margin-top: 40px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.28);
}

.ethics-box h4 {
  color: #F87171;
  font-size: 1.15rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ethics-box p {
  font-size: 0.9rem;
  color: #E2E8F0;
  margin-bottom: 6px;
}

/* ==========================================================================
   Section 18: 3 Langkah Bergabung, FAQ & Footer
   ========================================================================== */
.steps-section {
  padding: 80px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.step-card {
  padding: 30px 22px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-glass);
  position: relative;
  text-align: center;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #070B14;
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-gold);
}

.step-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.steps-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Registration Guide Notice Box */
.reg-guide-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(6, 182, 212, 0.06) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-top: -30px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.rgb-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--accent-gold-light);
}

.rgb-header i {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.rgb-header h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

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

.rgb-item {
  background: rgba(14, 21, 38, 0.65);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rgb-badge {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #070B14;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.rgb-item p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #E2E8F0;
  margin: 0;
}

.rgb-item code {
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent-gold-light);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.faq-section {
  padding-bottom: 80px;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.faq-body {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active {
  border-color: rgba(245, 158, 11, 0.4);
}

.faq-item.active .faq-body {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.final-cta-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18) 0%, rgba(14, 21, 38, 0.9) 100%);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-xl);
  padding: 48px 30px;
  text-align: center;
  margin-bottom: 70px;
  box-shadow: var(--shadow-gold);
}

.final-cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}

.final-cta-box p {
  font-size: 1.05rem;
  color: #CBD5E1;
  max-width: 660px;
  margin: 0 auto 28px;
}

/* Footer */
.footer {
  background: #05080F;
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin: 14px 0 18px;
  line-height: 1.55;
}

.footer-col h5 {
  font-size: 0.98rem;
  margin-bottom: 14px;
  color: #FFF;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: var(--accent-gold-light);
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.84rem;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 22px;
  border-top: 1px solid var(--border-glass);
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Floating WhatsApp CTA */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background: #25D366;
  color: #FFF;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   Responsive Media Queries (Fine-Tuned for Proportion & Cleanliness)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { order: -1; max-width: 580px; margin: 0 auto; width: 100%; }
  .reality-grid { grid-template-columns: 1fr; }
  .quadrant-box { grid-template-columns: repeat(2, 1fr); }
  .corporate-grid { grid-template-columns: 1fr; }
  .trust-cards-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .allocation-grid { grid-template-columns: 1fr; }
  .pathway-grid { grid-template-columns: 1fr; }
  .mission-packages-grid { grid-template-columns: 1fr; }
  .bonus-structure-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-grid { grid-template-columns: 1fr; }
  .luckydraw-grid { grid-template-columns: 1fr; }
  .proofs-grid { grid-template-columns: 1fr; }
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Topbar Mobile: Single neat line */
  .topbar {
    padding: 5px 0;
    font-size: 0.72rem;
  }
  .topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }
  .topbar-location,
  .topbar-omnas {
    display: none !important;
  }
  .topbar-left,
  .topbar-right {
    gap: 6px;
  }
  .topbar-tag {
    font-size: 0.72rem;
  }
  .topbar-wa {
    font-size: 0.72rem;
    white-space: nowrap;
  }

  /* Header Mobile: Proportional & Compact */
  .nav-container {
    height: 58px;
  }
  .brand-badge-img {
    height: 32px;
  }
  .brand-title {
    font-size: 0.96rem;
  }
  .brand-sub {
    font-size: 0.52rem;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-actions .btn-header {
    padding: 6px 12px !important;
    font-size: 0.75rem !important;
    gap: 4px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
  }
  .btn-text-desktop {
    display: none !important;
  }
  .btn-text-mobile {
    display: inline !important;
  }
  .menu-toggle {
    display: block;
    font-size: 1.3rem;
  }
  .nav-menu {
    display: none;
  }

  /* Proportional Buttons on Mobile */
  .btn {
    padding: 9px 18px !important;
    font-size: 0.86rem !important;
    gap: 6px !important;
  }
  .btn-lg {
    padding: 11px 20px !important;
    font-size: 0.88rem !important;
  }
  .btn-md {
    padding: 9px 16px !important;
    font-size: 0.84rem !important;
  }
  .btn-sm {
    padding: 5px 11px !important;
    font-size: 0.75rem !important;
  }
  .pathway-card .btn {
    padding: 10px 18px !important;
    font-size: 0.86rem !important;
    width: 100% !important;
  }

  /* Hero & Visuals on Mobile */
  .hero {
    padding: 40px 0 60px;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .floating-badge {
    display: none; /* Hide floating badges on mobile to keep focus clean */
  }

  /* Cards & Grid Adjustments */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .quadrant-box {
    grid-template-columns: 1fr;
  }
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid-4 {
    grid-template-columns: 1fr;
  }
  .rgb-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .reg-guide-box {
    padding: 20px 16px;
    margin-top: -20px;
    margin-bottom: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .calc-wrapper {
    padding: 20px;
  }
  .calc-breakdown {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .calc-total-number {
    font-size: 1.9rem;
  }

  /* Floating WhatsApp on Mobile */
  .floating-whatsapp {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    bottom: 18px;
    right: 18px;
  }

  /* Section Padding */
  .reality-section,
  .corporate-section,
  .products-section,
  .transparency-section,
  .pathway-section,
  .mission-section,
  .marketing-plan-section,
  .rewards-section,
  .proofs-section,
  .ecosystem-section,
  .steps-section {
    padding: 55px 0;
  }
}
