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

:root {
  /* Color Palette - Premium Dark Emerald & Gold */
  --bg-deep: #05080c;
  --bg-dark: #09120e;
  --bg-card: rgba(10, 22, 16, 0.55);
  --bg-card-hover: rgba(16, 36, 26, 0.7);
  --border-card: rgba(16, 185, 129, 0.12);
  --border-card-hover: rgba(16, 185, 129, 0.25);
  
  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.35);
  --accent-lime: #34d399;
  --accent-gold: #fbbf24;
  --accent-gold-dark: #d97706;
  --accent-gold-glow: rgba(251, 191, 36, 0.25);
  
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-snappy: all 0.15s ease-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(251, 191, 36, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(16, 185, 129, 0.3);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-emerald);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

p {
  line-height: 1.7;
  color: var(--text-secondary);
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient-emerald {
  background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-text-emerald {
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--accent-emerald);
  color: var(--accent-emerald);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.06);
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.1);
}

.badge-gold {
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(251, 191, 36, 0.06);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.1);
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.08);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-emerald) 0%, #059669 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px var(--accent-emerald-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.55);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #000;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--accent-gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.55);
}

.btn-outline {
  border: 1.5px solid var(--accent-emerald);
  color: var(--text-primary);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}

/* Sticky Top Promo Bar */
.promo-bar {
  background: linear-gradient(90deg, #091a11 0%, #043e24 50%, #091a11 100%);
  border-bottom: 1px solid rgba(16, 185, 129, 0.25);
  padding: 10px 0;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  position: relative;
  z-index: 1000;
  animation: shine 6s infinite linear;
}

.promo-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.promo-bar a {
  background: var(--accent-gold);
  color: #000;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5, 8, 12, 0.75);
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
  transition: var(--transition-smooth);
}

.header-active {
  padding: 12px 0;
  background: rgba(5, 8, 12, 0.9);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.logo-text {
  letter-spacing: -0.5px;
  font-weight: 900;
}

.logo-rc {
  color: var(--accent-emerald);
}

.logo-capital {
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-emerald), var(--accent-lime));
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover {
  color: #fff;
}

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

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

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  position: absolute;
  transition: var(--transition-smooth);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* Hero Section */
.hero {
  padding: 90px 0 80px 0;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-description {
  font-size: 16.5px;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-trust-dots {
  display: flex;
  margin-right: -4px;
}

.hero-trust-dots span {
  width: 8px;
  height: 8px;
  background: var(--accent-emerald);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse 1.5s infinite alternate;
}

.hero-trust-dots span:nth-child(2) { animation-delay: 0.3s; }
.hero-trust-dots span:nth-child(3) { animation-delay: 0.6s; }

.hero-trust-text {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Hero Visual: A.I. Terminal */
.hero-visual {
  position: relative;
  z-index: 1;
}

.terminal-card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.terminal-header {
  background: #0d1217;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.terminal-dots span:nth-child(1) { background: #ef4444; }
.terminal-dots span:nth-child(2) { background: #eab308; }
.terminal-dots span:nth-child(3) { background: #22c55e; }

.terminal-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 600;
}

.terminal-body {
  background: #070a0e;
  padding: 24px;
  font-family: monospace;
}

.terminal-row {
  margin-bottom: 16px;
}

.terminal-label {
  color: var(--text-secondary);
  font-size: 12px;
  margin-bottom: 4px;
}

.terminal-value {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terminal-arrow {
  color: var(--accent-lime);
  font-size: 16px;
  animation: bounceVertical 1.5s infinite;
}

.chart-mock {
  height: 100px;
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  position: relative;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.8));
  border-radius: 3px 3px 0 0;
  height: 10%;
  transition: var(--transition-smooth);
  animation: growBar 3s ease-out forwards;
}

/* 3 Sources of Income Section */
.section {
  padding: 80px 0;
}

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

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
  font-weight: 800;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
}

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

.income-card {
  padding: 40px 32px;
  text-align: center;
}

.income-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px auto;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.1) inset;
  color: var(--accent-emerald);
}

.income-icon-wrap svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.income-title {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}

.income-desc {
  font-size: 14px;
  line-height: 1.6;
}

.income-callout {
  grid-column: span 3;
  text-align: center;
  margin-top: 36px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}

/* 1% Dividen Harian Section */
.dividen-bg {
  background: radial-gradient(circle at 100% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 40%);
}

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

.phone-mockup-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup-wrapper::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--accent-emerald);
  filter: blur(120px);
  opacity: 0.15;
  z-index: -1;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: #000;
  border-radius: 40px;
  border: 8px solid #1a2228;
  padding: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  position: relative;
}

.phone-screen {
  flex: 1;
  background: #06090e;
  border-radius: 26px;
  padding: 20px 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 11px;
  color: var(--text-muted);
}

.phone-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
}

.phone-label {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.phone-balance {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
}

.phone-dividen-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.02) 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.05);
}

.phone-dividen-label {
  color: var(--accent-emerald);
  font-weight: 600;
}

.phone-dividen-val {
  font-size: 24px;
  color: var(--accent-lime);
  font-weight: 800;
  font-family: var(--font-heading);
}

.phone-dividen-sub {
  font-size: 9px;
  color: var(--text-secondary);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.phone-transactions {
  margin-top: auto;
}

.phone-tx-header {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.phone-tx-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 11.5px;
}

.phone-tx-row:last-child {
  border-bottom: none;
}

.phone-tx-title {
  color: var(--text-primary);
}

.phone-tx-time {
  font-size: 9.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

.phone-tx-amount {
  color: var(--accent-lime);
  font-weight: 700;
}

/* Pricing / Plans Selector Section */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

.plan-card {
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}

.plan-featured {
  border: 2px solid var(--accent-emerald);
  background: rgba(16, 185, 129, 0.08);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.08);
}

.plan-featured:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: var(--accent-lime);
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.15);
}

.plan-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-name {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.plan-desc {
  font-size: 13.5px;
  margin-bottom: 28px;
  color: var(--text-secondary);
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  margin-bottom: 32px;
}

.plan-currency {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-right: 4px;
}

.plan-price {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-heading);
  line-height: 1;
}

.plan-price-period {
  font-size: 14px;
  color: var(--text-secondary);
  margin-left: 8px;
}

.plan-features-list {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.plan-features-list svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-btn {
  width: 100%;
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: stretch;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text {
  font-size: 15.5px;
  margin-bottom: 24px;
}

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 1.5px solid rgba(16, 185, 129, 0.15);
}

.about-img-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.about-card {
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-quote {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #fff;
  border-left: 3px solid var(--accent-emerald);
  padding-left: 16px;
}

.about-quote-sub {
  font-size: 13.5px;
  margin-bottom: 32px;
}

.about-stats {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
}

.about-stat-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-emerald);
}

/* Vision / Mission Section */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vision-card {
  padding: 40px;
}

.vision-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.vision-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-emerald);
}

.vision-icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.vision-card-title {
  font-size: 20px;
  font-weight: 700;
}

.vision-desc {
  font-size: 14.5px;
  line-height: 1.7;
}

.mission-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-secondary);
}

.mission-list svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Key Advantages Grid (Kelebihan) */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.12);
}

.advantage-card {
  background: var(--bg-deep);
  padding: 40px;
  position: relative;
  transition: var(--transition-smooth);
}

.advantage-card:hover {
  background: rgba(16, 185, 129, 0.03);
}

.advantage-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--accent-emerald), var(--accent-lime));
  transition: var(--transition-smooth);
}

.advantage-card:hover::after {
  width: 100%;
}

.advantage-num {
  font-size: 11px;
  font-weight: 700;
  color: rgba(16, 185, 129, 0.35);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.advantage-icon {
  width: 36px;
  height: 36px;
  color: var(--accent-emerald);
  margin-bottom: 24px;
}

.advantage-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.advantage-title {
  font-size: 16.5px;
  margin-bottom: 12px;
  font-weight: 700;
}

.advantage-desc {
  font-size: 13.5px;
  line-height: 1.6;
}

/* Steps / Cara Menyertai Section */
.steps-row {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.step-card {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent-emerald), transparent);
  z-index: 0;
}

.step-bubble {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-emerald) 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 24px auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.step-title {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 700;
}

.step-desc {
  font-size: 13px;
  line-height: 1.5;
}

/* Testimonials Scrolling Slider */
.testimonial-carousel {
  overflow: hidden;
  position: relative;
  display: flex;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollInfinite 30s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testi-card {
  width: 320px;
  padding: 30px;
  flex-shrink: 0;
}

.testi-stars {
  color: var(--accent-gold);
  margin-bottom: 14px;
  font-size: 14px;
}

.testi-text {
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #27272a;
  border: 1px solid var(--border-card);
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}

.testi-role {
  font-size: 11px;
  color: var(--text-muted);
}

/* Footer Section */
.footer {
  background: #020406;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  padding: 80px 0 40px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo-desc p {
  font-size: 14px;
  margin-top: 16px;
  max-width: 380px;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--accent-emerald);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--accent-emerald);
  color: var(--accent-emerald);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-widget::before {
  content: 'Tanya Kami di WhatsApp';
  position: absolute;
  right: 70px;
  background: #0d1e15;
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.whatsapp-widget:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Keyframes animations */
@keyframes shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 1; }
}

@keyframes bounceVertical {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes growBar {
  from { height: 10%; }
}

@keyframes scrollInfinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Referral Structure Section */
.referral-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.referral-card {
  padding: 44px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.referral-badge-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
}

.referral-level-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.5px;
}

.referral-percent {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 46px;
  line-height: 1;
}

.referral-card-l1 {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12) 0%, rgba(251, 191, 36, 0.02) 100%);
  border: 1px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.06);
}
.referral-card-l1 .referral-level-name,
.referral-card-l1 .referral-percent {
  color: var(--accent-gold);
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.25);
}

.referral-card-l2 {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.12) 0%, rgba(52, 211, 153, 0.02) 100%);
  border: 1px solid rgba(52, 211, 153, 0.25);
  box-shadow: 0 10px 30px rgba(52, 211, 153, 0.06);
}
.referral-card-l2 .referral-level-name,
.referral-card-l2 .referral-percent {
  color: var(--accent-lime);
  text-shadow: 0 0 15px rgba(52, 211, 153, 0.25);
}

.referral-card-l3 {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.02) 100%);
  border: 1px solid rgba(59, 130, 246, 0.25);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.06);
}
.referral-card-l3 .referral-level-name,
.referral-card-l3 .referral-percent {
  color: #60a5fa;
  text-shadow: 0 0 15px rgba(96, 165, 250, 0.25);
}

.referral-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 500;
}

.referral-subdesc {
  font-size: 12.5px;
  line-height: 1.5;
  margin-top: 14px;
  color: var(--text-secondary);
  font-style: italic;
  opacity: 0.85;
}

.referral-card:hover {
  transform: translateY(-8px);
}
.referral-card-l1:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.18);
}
.referral-card-l2:hover {
  border-color: var(--accent-lime);
  box-shadow: 0 15px 40px rgba(52, 211, 153, 0.18);
}
.referral-card-l3:hover {
  border-color: #60a5fa;
  box-shadow: 0 15px 40px rgba(96, 165, 250, 0.18);
}

/* FAQ Accordion Styling */
.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 12px;
  background: rgba(10, 22, 16, 0.45);
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(10, 22, 16, 0.65);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
}

.faq-item:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: normal;
  color: var(--accent-lime);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

/* Scroll reveal helper */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive breakpoint styling */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .income-grid, .plans-grid, .vision-grid, .referral-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .income-callout {
    grid-column: span 1;
  }
  
  .dividen-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-img-wrap {
    order: -1;
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-row {
    flex-direction: column;
    gap: 40px;
  }
  
  .step-card:not(:last-child)::after {
    display: none;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 16px;
  }
  .nav-link {
    font-size: 13.5px;
  }
  .header .nav-actions .btn-outline {
    display: none;
  }
}

@media (max-width: 991px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(5, 8, 12, 0.85);
    border-left: 1px solid rgba(16, 185, 129, 0.15);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 28px;
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-actions {
    display: none;
  }
}

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

/* Interactive Investment Calculator Styling */
.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
}

.calc-tabs {
  display: flex;
  gap: 12px;
  width: 100%;
}

.calc-tab {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.calc-tab:hover {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.35);
}

.calc-tab.active {
  background: rgba(16, 185, 129, 0.12);
  border-color: var(--accent-lime);
  box-shadow: 0 0 15px rgba(52, 211, 153, 0.15);
}

.calc-tab-title {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.calc-tab-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}

/* Custom Range Slider */
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition: var(--transition-smooth);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  transition: var(--transition-snappy);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
}

.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  transition: var(--transition-snappy);
}

.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
}

/* FAQ Filter Styling */
.faq-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.faq-filter-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-filter-btn:hover {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.4);
  color: #fff;
}

.faq-filter-btn.active {
  background: linear-gradient(135deg, var(--accent-emerald) 0%, #059669 100%);
  border-color: var(--accent-lime);
  color: #fff;
  box-shadow: 0 4px 15px var(--accent-emerald-glow);
}

/* Live Terminal Log Animation */
.terminal-log-line {
  animation: typing 0.3s ease-out forwards;
}

@keyframes typing {
  from { opacity: 0; transform: translateX(-5px); }
  to { opacity: 0.85; transform: translateX(0); }
}

/* Toast Notification Styling Extensions */
.toast-card {
  animation: slideInLeft 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 991px) {
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
