/* =============================================
   VAULTORA — Premium Trading & Investment Platform
   Theme: Luxury White + Gold + Black
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
  --white: #ffffff;
  --gold: #d4af37;
  --dark-gold: #b8860b;
  --black: #111111;
  --light-bg: #f9f9f9;
  --border-gold: #e6c76a;
  --gold-grad: linear-gradient(135deg, #ffd700, #d4af37, #b8860b);
  --gold-grad-soft: linear-gradient(135deg, #fff9ec, #ffffff);
  --lux-grad: linear-gradient(135deg, #ffffff, #fef9ec);
  --text-dark: #111111;
  --text-muted: #6b6b6b;
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(212, 175, 55, 0.3);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.25);
  --shadow-hover: 0 20px 60px rgba(212, 175, 55, 0.35);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --font-cinzel: 'Cinzel', serif;
  --font-poppins: 'Poppins', sans-serif;
  --font-mont: 'Montserrat', sans-serif;
  --font-playfair: 'Playfair Display', serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#themeToggle{
  display: none !important;
}

[data-theme="dark"] {
  --white: #1a1a1a;
  --light-bg: #0d0d0d;
  --text-dark: #f5f5f5;
  --text-muted: #a0a0a0;
  --glass-bg: rgba(30, 30, 30, 0.65);
  --glass-border: rgba(212, 175, 55, 0.35);
  --lux-grad: linear-gradient(135deg, #1a1a1a, #1c1505);
  --gold-grad-soft: linear-gradient(135deg, #1a1505, #1a1a1a);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-poppins);
  background: var(--light-bg);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background 0.5s ease, color 0.5s ease;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--gold-grad); border-radius: 10px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-padding { padding: 20px 0; }

.section-header { margin-bottom: 60px; }

.section-tag {
  display: inline-block;
  padding: 8px 24px;
  background: var(--gold-grad-soft);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}



.glass-dark {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
}

/* ===== BUTTONS ===== */
.btn-gold {
  background: var(--gold-grad);
  background-size: 200% 200%;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: #fff;
}

.btn-outline-gold {
  background: transparent;
  color: var(--dark-gold);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 12px 34px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold-grad);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--border-gold);
  color: var(--dark-gold);
  transform: translateY(-3px);
}

/* Ripple effect */
.ripple { position: relative; overflow: hidden; }
.ripple .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ===== LOADING SCREEN ===== */
.loader-screen {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-screen.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-coin {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold);
  animation: coinFlip 1.5s infinite ease-in-out;
}
@keyframes coinFlip {
  0%, 100% { transform: rotateY(0); }
  50% { transform: rotateY(180deg); }
}
.loader-text {
  font-family: var(--font-cinzel);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 8px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.loader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-bar span {
  display: block;
  height: 100%;
  background: var(--gold-grad);
  border-radius: 4px;
  animation: loadProgress 1.5s ease-in-out forwards;
}
@keyframes loadProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--gold-grad);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-glow {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}
@media (max-width: 992px) {
  .cursor-glow, .cursor-dot { display: none; }
}

/* ===== PARTICLES BG ===== */
.particles-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* ===== NAVBAR ===== */
.navbar-custom {
  padding: 18px 0;
  background: transparent;
  transition: var(--transition);
  z-index: 1000;
}
.navbar-custom.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cinzel);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-dark);
  text-decoration: none;
}
.brand-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
}
.navbar-custom .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 6px;
  position: relative;
  padding: 8px 4px !important;
  transition: var(--transition);
}
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-grad);
  transition: var(--transition);
  transform: translateX(-50%);
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--dark-gold);
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: 100%;
}
.dropdown-menu {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 10px;
}
.dropdown-item {
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 500;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--gold-grad-soft);
  color: var(--dark-gold);
}
.nav-actions { display: flex; align-items: center; gap: 16px; }
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--dark-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.theme-toggle:hover { transform: rotate(180deg); box-shadow: var(--shadow-gold); }
.navbar-toggler { border: none; padding: 8px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-line {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gold-grad);
  border-radius: 3px;
  margin: 5px 0;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--lux-grad);
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffffff 0%, #fef9ec 50%, #ffffff 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}
.hero-light-rays {
  position: absolute;
  top: -50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  animation: pulse 4s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}
.floating-coin {
  position: absolute;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.3;
  animation: floatUp 6s ease-in-out infinite;
}
.coin-1 { top: 20%; left: 10%; animation-delay: 0s; }
.coin-2 { top: 60%; left: 85%; animation-delay: 2s; font-size: 1.5rem; }
.coin-3 { top: 80%; left: 20%; animation-delay: 4s; font-size: 1.2rem; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(15deg); }
}
.hero-left { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-gold);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title {
  font-family: var(--font-playfair);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  min-height: 120px;
}
.typed-text { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.typed-cursor { color: var(--gold); }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { text-align: left; }
.hero-stat .stat-number {
  display: inline;
  font-family: var(--font-playfair);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-gold);
}
.hero-stat span { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.hero-stat p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Hero Visual */
.hero-right { position: relative; z-index: 2; }
.hero-visual { position: relative; height: 500px; }
.gold-coin-3d {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 120px;
  height: 120px;
  perspective: 1000px;
  z-index: 3;
}
.coin-face {
  width: 100%;
  height: 100%;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.3);
  animation: coinSpin 6s infinite linear;
  border: 4px solid rgba(255, 255, 255, 0.4);
}
.coin-label { font-family: var(--font-cinzel); font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; margin-top: 4px; }
@keyframes coinSpin {
  0% { transform: rotateY(0); }
  100% { transform: rotateY(360deg); }
}
.dashboard-mockup {
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  max-width: 380px;
  padding: 20px;
  z-index: 2;
  animation: floatMockup 5s ease-in-out infinite;
}
@keyframes floatMockup {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 16px;
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); opacity: 0.6; }
.mockup-dots span:nth-child(2) { opacity: 0.4; }
.mockup-dots span:nth-child(3) { opacity: 0.2; }
.mockup-title { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.mockup-balance { margin-bottom: 16px; }
.mockup-balance span { font-size: 0.8rem; color: var(--text-muted); }
.mockup-balance h3 { font-family: var(--font-playfair); font-size: 1.8rem; color: var(--text-dark); }
.profit-badge { font-size: 0.8rem; color: #22c55e; font-weight: 600; }
.mockup-chart { margin: 16px 0; }
.chart-svg { width: 100%; height: 80px; }
.mockup-assets { display: flex; gap: 12px; }
.mockup-asset {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--gold-grad-soft);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}
.mockup-asset .up { color: #22c55e; display: block; font-size: 0.7rem; }
.profit-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  z-index: 4;
  animation: floatCard 4s ease-in-out infinite;
}
.profit-card-1 { top: 15%; left: -5%; animation-delay: 0s; }
.profit-card-2 { bottom: 20%; left: -10%; animation-delay: 1.5s; }
.profit-card-3 { bottom: 5%; right: 0; animation-delay: 3s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.pc-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
}
.pc-text span { display: block; font-size: 0.75rem; color: var(--text-muted); }
.pc-text strong { font-size: 1rem; color: var(--text-dark); }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ===== LIVE MARKET ===== */
.market-section { background: var(--light-bg); position: relative; }
.ticker-wrapper {
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  margin-bottom: 30px;
}
.ticker { overflow: hidden; }
.ticker-track {
  display: flex;
  gap: 40px;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}
.ticker-item i { font-size: 1.2rem; }
.ticker-item .ticker-price { color: var(--text-dark); }
.ticker-item .ticker-change.up { color: #22c55e; }
.ticker-item .ticker-change.down { color: #ef4444; }
.market-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  text-align: center;
}
.market-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.market-card .mc-icon { font-size: 2rem; margin-bottom: 12px; }
.market-card .mc-name { font-weight: 700; font-size: 1.1rem; }
.market-card .mc-price { font-family: var(--font-playfair); font-size: 1.5rem; font-weight: 800; margin: 8px 0; }
.market-card .mc-change { font-weight: 600; font-size: 0.9rem; }
.mc-change.up { color: #22c55e; }
.mc-change.down { color: #ef4444; }
.mc-spark { margin-top: 12px; }
.mc-spark svg { width: 100%; height: 40px; }

/* ===== INVESTMENT PLANS ===== */
.plans-section { background: var(--lux-grad); }
.plan-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.plan-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-hover); border-color: var(--gold); }
.plan-card:hover::before { transform: scaleX(1); }
.plan-card.featured {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.65));
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 16px;
  background: var(--gold-grad);
  color: #fff;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.plan-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad-soft);
  border: 2px solid var(--border-gold);
  border-radius: 50%;
  color: var(--dark-gold);
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.plan-card h3 { font-family: var(--font-playfair); font-size: 1.6rem; margin-bottom: 8px; }
.plan-price { margin-bottom: 24px; }
.plan-price .pp-min { font-size: 0.85rem; color: var(--text-muted); }
.plan-price .pp-max { font-family: var(--font-playfair); font-size: 2rem; font-weight: 800; color: var(--dark-gold); }
.plan-roi { font-size: 0.9rem; font-weight: 600; color: var(--gold); margin-bottom: 24px; }
.plan-features { list-style: none; padding: 0; margin-bottom: 28px; }
.plan-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li i { color: var(--gold); }

/* ===== JOINING AMOUNTS ===== */
.amounts-section { background: var(--light-bg); }
.amount-card {
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.amount-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}
.amount-card:hover { transform: translateY(-10px) scale(1.03); box-shadow: var(--shadow-hover); border-color: var(--gold); }
.amount-card:hover .amount-value { color: #000; }
.amount-card:hover .amount-label { color: #000; }
.amount-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-gold);
}
.amount-value { font-family: var(--font-playfair); font-size: 2rem; font-weight: 800; color: var(--dark-gold); transition: var(--transition); }
.amount-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 8px; transition: var(--transition); }

/* ===== 200% PROFIT ===== */
.profit-section {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.profit-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}
.profit-section .section-tag { border-color: var(--gold); color: var(--gold); background: rgba(212, 175, 55, 0.1); }
.profit-big-title {
  font-family: var(--font-playfair);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 1;
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
}
.profit-number {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
  animation: goldShine 3s infinite;
}
@keyframes goldShine {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}
.profit-percent { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.profit-subtitle { font-family: var(--font-playfair); font-size: 2rem; margin-bottom: 20px; }
.profit-desc { color: rgba(255, 255, 255, 0.7); margin-bottom: 30px; max-width: 500px; }
.profit-visual { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; }
.profit-ring {
  position: absolute;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  animation: ringRotate 20s linear infinite;
}
.ring-1 { width: 300px; height: 300px; border-top-color: var(--gold); }
.ring-2 { width: 240px; height: 240px; border-right-color: var(--gold); animation-duration: 15s; animation-direction: reverse; }
.ring-3 { width: 180px; height: 180px; border-bottom-color: var(--gold); animation-duration: 10s; }
@keyframes ringRotate { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }
.profit-center {
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--gold);
  border-radius: 50%;
  z-index: 2;
}
.profit-center i { font-size: 2rem; color: var(--gold); }
.profit-center h3 { font-family: var(--font-playfair); font-size: 2rem; color: var(--gold); margin: 4px 0; }
.profit-center p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); margin: 0; }
.profit-coin-1 { top: 10%; left: 15%; }
.profit-coin-2 { bottom: 10%; right: 15%; animation-delay: 3s; }

/* ===== DIRECT INCOME ===== */
.direct-income-section { background: var(--lux-grad); }
.income-display { position: relative; padding: 40px 0; }
.income-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  animation: pulse 4s ease infinite;
}
.income-circle {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.income-rotating-ring {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--dark-gold);
  border-radius: 50%;
  animation: ringRotate 8s linear infinite;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}
.income-percent { text-align: center; z-index: 2; }
.income-number {
  font-family: var(--font-playfair);
  font-size: 6rem;
  font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.income-symbol {
  font-family: var(--font-playfair);
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
}
.income-title { font-family: var(--font-playfair); font-size: 1.8rem; margin-bottom: 12px; }
.income-desc { color: var(--text-muted); max-width: 500px; margin: 0 auto 30px; }
.income-icons { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.income-icon-float {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--dark-gold);
  font-size: 1.3rem;
  animation: floatUp 3s ease-in-out infinite;
  backdrop-filter: blur(10px);
}
.income-icon-float:nth-child(2) { animation-delay: 0.5s; }
.income-icon-float:nth-child(3) { animation-delay: 1s; }
.income-icon-float:nth-child(4) { animation-delay: 1.5s; }

/* ===== REFERRAL TREE ===== */
.referral-section { background: var(--light-bg); }
.referral-tree { display: flex; flex-direction: column; align-items: center; max-width: 900px; margin: 0 auto; }
.tree-level { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.tree-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
  min-width: 100px;
}
.tree-node:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.tree-node i { font-size: 1.5rem; color: var(--dark-gold); }
.tree-node span { font-size: 0.8rem; color: var(--text-muted); }
.tree-node strong { color: var(--gold); }
.root-node { background: var(--gold-grad); border-color: var(--gold); }
.root-node i, .root-node span, .root-node strong { color: #fff; }
.tree-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 10px 0;
}
.tree-connector::before, .tree-connector::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.referral-levels-info { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
.ref-level-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.ref-level-info:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.ref-badge {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== REWARDS ===== */
.rewards-section { background: var(--lux-grad); }
.reward-card {
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.reward-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transform: translateX(-100%);
  transition: var(--transition);
}
.reward-card:hover::before { transform: translateX(100%); }
.reward-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--gold); }
.reward-badge-float {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}
.reward-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  transition: var(--transition);
}
.reward-card:hover .reward-icon { transform: scale(1.1) rotate(5deg); }
.reward-card h4 { font-family: var(--font-playfair); margin-bottom: 12px; }
.reward-business { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.reward-amount { font-family: var(--font-playfair); font-size: 1.5rem; font-weight: 800; color: var(--dark-gold); margin-bottom: 12px; }
.reward-req { font-size: 0.8rem; color: var(--text-muted); padding-top: 12px; border-top: 1px solid var(--glass-border); }

/* Reward tier colors */
.reward-bronze .reward-icon { background: linear-gradient(135deg, #cd7f32, #a0522d); color: #fff; }
.reward-silver .reward-icon { background: linear-gradient(135deg, #c0c0c0, #a0a0a0); color: #fff; }
.reward-gold .reward-icon { background: var(--gold-grad); color: #fff; }
.reward-platinum .reward-icon { background: linear-gradient(135deg, #e5e4e2, #b8b8b8); color: #333; }
.reward-diamond .reward-icon { background: linear-gradient(135deg, #b9f2ff, #67c7d4); color: #fff; }
.reward-crown .reward-icon { background: linear-gradient(135deg, #ffd700, #ff8c00); color: #fff; }

/* ===== TRADING DASHBOARD ===== */
.dashboard-section { background: var(--black); color: #fff; }
.dashboard-section .section-tag { border-color: var(--gold); color: var(--gold); background: rgba(212, 175, 55, 0.1); }
.dashboard-section .section-title { color: #fff; }
.dashboard-section .section-desc { color: rgba(255, 255, 255, 0.6); }
.dashboard-panel {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  background: #0a0a0a;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 600px;
}
.dashboard-sidebar {
  padding: 24px 16px;
  border-right: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(10, 10, 10, 0.8);
}
.dash-logo { font-family: var(--font-cinzel); font-weight: 800; font-size: 1.3rem; color: var(--gold); margin-bottom: 30px; display: flex; align-items: center; gap: 8px; }
.dash-menu { list-style: none; padding: 0; }
.dash-menu li {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-bottom: 4px;
}
.dash-menu li:hover, .dash-menu li.active { background: rgba(212, 175, 55, 0.15); color: var(--gold); }
.dashboard-main { padding: 24px; overflow-y: auto; }
.dash-top-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.dash-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}
.dash-user { display: flex; align-items: center; gap: 16px; }
.dash-balance { text-align: right; }
.dash-balance span { font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); }
.dash-balance strong { display: block; color: var(--gold); font-size: 1.1rem; }
.dash-avatar {
  width: 40px;
  height: 40px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}
.dash-cards-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.dash-stat-card { display: flex; align-items: center; gap: 16px; padding: 20px; }
.dsc-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.dsc-icon.gold { background: rgba(212, 175, 55, 0.2); color: var(--gold); }
.dsc-icon.green { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.dsc-icon.blue { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.dsc-icon.purple { background: rgba(168, 85, 247, 0.2); color: #a855f7; }
.dsc-info span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); display: block; }
.dsc-info h4 { font-size: 1.3rem; color: #fff; margin: 2px 0; }
.dsc-info small { font-size: 0.75rem; }
.dsc-info small.up { color: #22c55e; }
.dash-charts-row { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; margin-bottom: 16px; }
.dash-chart-card, .dash-orders-card { padding: 20px; }
.dcc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dcc-header h5 { font-size: 1rem; color: #fff; margin: 0; }
.dcc-header a { color: var(--gold); font-size: 0.85rem; text-decoration: none; }
.dcc-tabs { display: flex; gap: 6px; }
.dcc-tabs button {
  padding: 4px 12px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}
.dcc-tabs button.active, .dcc-tabs button:hover { background: var(--gold-grad); color: #fff; border-color: transparent; }
.dash-chart-area { height: 160px; }
.dash-chart-svg { width: 100%; height: 100%; }
.dash-orders-list { display: flex; flex-direction: column; gap: 10px; max-height: 160px; overflow-y: auto; }
.dash-order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  font-size: 0.85rem;
}
.dash-order-item .doi-pair { font-weight: 600; color: #fff; }
.dash-order-item .doi-type.buy { color: #22c55e; }
.dash-order-item .doi-type.sell { color: #ef4444; }
.dash-order-item .doi-price { color: var(--gold); }
.dash-assets-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.dash-asset-card { display: flex; align-items: center; gap: 12px; padding: 14px; }
.dac-coin { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; background: rgba(212, 175, 55, 0.2); color: var(--gold); }
.dac-coin.eth { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.dac-coin.gold { background: rgba(212, 175, 55, 0.2); color: var(--gold); }
.dac-coin.sol { background: rgba(168, 85, 247, 0.2); color: #a855f7; }
.dac-info strong { display: block; color: #fff; font-size: 0.9rem; }
.dac-info span { font-size: 0.75rem; color: rgba(255, 255, 255, 0.4); }
.dac-price { text-align: right; }
.dac-price strong { display: block; color: #fff; font-size: 0.9rem; }
.dac-price .up { color: #22c55e; font-size: 0.75rem; }
.dac-price .down { color: #ef4444; font-size: 0.75rem; }
.dac-spark svg { width: 60px; height: 30px; }
@media (max-width: 992px) {
  .dashboard-panel { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
  .dash-charts-row { grid-template-columns: 1fr; }
}

/* ===== FEATURES ===== */
.features-section { background: var(--light-bg); }
.feature-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad-soft);
  border: 2px solid var(--border-gold);
  border-radius: 50%;
  color: var(--dark-gold);
  font-size: 2rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--gold-grad); color: #fff; transform: rotateY(360deg); }
.feature-card h4 { font-family: var(--font-playfair); margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--lux-grad); }
.why-stats-row { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; margin-bottom: 60px; }
.why-stat { text-align: center; }
.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-gold);
}
.why-number { font-family: var(--font-playfair); font-size: 2.5rem; font-weight: 800; color: var(--dark-gold); }
.why-stat p { color: var(--text-muted); font-size: 0.9rem; }
.why-card { padding: 32px; height: 100%; transition: var(--transition); }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.why-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.why-card h4 { font-family: var(--font-playfair); margin-bottom: 12px; }
.why-card p { color: var(--text-muted); }
.trust-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 50px; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.trust-badge:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.trust-badge i { color: var(--gold); }

/* ===== DEPOSIT & WITHDRAWAL ===== */
.dw-section { background: var(--light-bg); }
.dw-title { font-family: var(--font-playfair); margin-bottom: 30px; display: flex; align-items: center; gap: 12px; }
.dw-timeline { position: relative; padding-left: 20px; }
.dw-step { display: flex; gap: 20px; margin-bottom: 30px; position: relative; }
.dw-step::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 56px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(180deg, var(--gold), transparent);
}
.dw-step:last-child::before { display: none; }
.dw-step-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
  z-index: 1;
}
.dw-step-content h5 { margin-bottom: 6px; }
.dw-step-content p { color: var(--text-muted); margin: 0; }

/* ===== REGISTRATION PROCESS ===== */
.register-section { background: var(--lux-grad); }
.register-timeline {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
}
.register-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.reg-step { text-align: center; max-width: 220px; position: relative; z-index: 1; }
.reg-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 3px solid var(--gold);
  border-radius: 50%;
  position: relative;
  backdrop-filter: blur(20px);
  transition: var(--transition);
}
.reg-circle span {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  background: var(--gold-grad);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.reg-circle i { font-size: 1.8rem; color: var(--dark-gold); }
.reg-step:hover .reg-circle { transform: scale(1.1); box-shadow: var(--shadow-gold); }
.reg-step h4 { font-family: var(--font-playfair); margin-bottom: 8px; }
.reg-step p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== CALCULATOR ===== */
.calculator-section { background: var(--light-bg); }
.calculator-panel { padding: 40px; }
.calc-field { margin-bottom: 24px; }
.calc-field label { display: block; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); }
.calc-slider-wrap { position: relative; }
.calc-slider-wrap input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--gold-grad-soft);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  outline: none;
}
.calc-slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--gold-grad);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
}
.calc-slider-wrap input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.calc-amount-display {
  text-align: center;
  margin-top: 10px;
  font-family: var(--font-playfair);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-gold);
}
.form-select {
  padding: 12px 16px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  font-family: var(--font-poppins);
}
.form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2); }
.calc-results { padding: 24px; background: var(--gold-grad-soft); border: 1px solid var(--glass-border); border-radius: var(--radius); }
.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
}
.calc-result-row.highlight { border-bottom: none; }
.calc-result-row span { font-weight: 600; color: var(--text-muted); }
.calc-result-row strong { font-family: var(--font-playfair); font-size: 1.3rem; color: var(--dark-gold); }
.calc-result-row.highlight strong { font-size: 1.6rem; }
.calc-roi { text-align: center; padding: 20px 0; }
.calc-roi-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-playfair);
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}
.calc-roi-circle small { font-size: 0.7rem; font-weight: 500; }

/* ===== FAQ ===== */
.faq-section { background: var(--lux-grad); }
.custom-accordion .accordion-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 16px;
  overflow: hidden;
}
.custom-accordion .accordion-button {
  background: transparent;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 20px 24px;
  width: 100%;
  text-align: left;
  border: none;
  box-shadow: none;
}
.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--gold-grad-soft);
  color: var(--dark-gold);
}
.custom-accordion .accordion-button::after {
  background-image: none;
  content: '\f067';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--gold);
  width: auto;
  height: auto;
  transition: var(--transition);
}
.custom-accordion .accordion-button:not(.collapsed)::after { content: '\f068'; }
.custom-accordion .accordion-body { padding: 0 24px 20px; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--light-bg); }
.testimonialSwiper { padding: 20px 0 50px; }
.testimonial-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  text-align: center;
  height: 100%;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text { font-size: 1.05rem; color: var(--text-dark); font-style: italic; margin-bottom: 24px; line-height: 1.7; }
.testimonial-avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
}
.testimonial-name { font-weight: 700; font-size: 1.05rem; }
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); }
.swiper-pagination-bullet { background: var(--gold) !important; opacity: 0.4; }
.swiper-pagination-bullet-active { opacity: 1 !important; }

/* ===== FOOTER ===== */
.footer-section { background: var(--black); color: rgba(255, 255, 255, 0.7); }
.footer-top { padding: 70px 0 40px; }
.footer-brand .navbar-brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; max-width: 350px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold-grad); color: #fff; transform: translateY(-3px); }
.footer-title { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.92rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-newsletter {
  margin-top: 50px;
  padding: 36px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
}
.footer-newsletter h4 { color: #fff; font-family: var(--font-playfair); margin-bottom: 8px; }
.footer-newsletter p { margin: 0; }
.newsletter-form { display: flex; gap: 12px; margin-top: 16px; }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50px;
  color: #fff;
  font-family: var(--font-poppins);
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.footer-bottom { padding: 24px 0; border-top: 1px solid rgba(212, 175, 55, 0.15); }
.footer-bottom p { margin: 0; font-size: 0.9rem; }
.footer-payments { display: flex; gap: 16px; justify-content: flex-end; font-size: 1.5rem; color: rgba(255, 255, 255, 0.4); }
@media (max-width: 768px) {
  .footer-payments { justify-content: flex-start; margin-top: 12px; }
  .newsletter-form { flex-direction: column; }
}

/* ===== FLOATING BUTTONS ===== */
.float-whatsapp, .float-chat, .back-to-top {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  border: none;
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}
.float-whatsapp {
  bottom: 30px;
  left: 30px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}
.float-whatsapp:hover { transform: scale(1.1); }
.float-chat {
  bottom: 30px;
  right: 30px;
  background: var(--gold-grad);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.float-chat:hover { transform: scale(1.1); }
.back-to-top {
  bottom: 100px;
  right: 30px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  color: var(--dark-gold);
  opacity: 0;
  visibility: hidden;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-grad); color: #fff; }

/* ===== TOAST ===== */
.toast-container-custom {
  position: fixed;
  top: 100px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.toast-notification {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  min-width: 280px;
  animation: slideInRight 0.4s ease;
}
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.toast-notification.removing { animation: slideOutRight 0.4s ease forwards; }
@keyframes slideOutRight {
  to { transform: translateX(100%); opacity: 0; }
}
.toast-notification i { color: var(--gold); font-size: 1.3rem; }
.toast-notification .toast-text strong { display: block; color: var(--text-dark); }
.toast-notification .toast-text span { font-size: 0.85rem; color: var(--text-muted); }

/* ===== LIVE CHAT WIDGET ===== */
.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 340px;
  max-width: calc(100vw - 60px);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  overflow: hidden;
}
.chat-widget.open { opacity: 1; visibility: visible; transform: translateY(0); }
.chat-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--gold-grad);
  color: #fff;
}
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.chat-status { font-size: 0.75rem; display: flex; align-items: center; gap: 4px; }
.status-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: blink 1.5s infinite; }
.chat-close { background: none; border: none; color: #fff; font-size: 1.2rem; cursor: pointer; }
.chat-body { padding: 20px; height: 280px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.chat-message {
  max-width: 80%;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.chat-message.bot { background: var(--gold-grad-soft); border: 1px solid var(--glass-border); color: var(--text-dark); align-self: flex-start; }
.chat-message.user { background: var(--gold-grad); color: #fff; align-self: flex-end; }
.chat-input-area { display: flex; padding: 12px; border-top: 1px solid var(--glass-border); gap: 8px; }
.chat-input-area input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-poppins);
}
.chat-input-area input:focus { outline: none; border-color: var(--gold); }
.chat-input-area button {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #fff;
  cursor: pointer;
}

/* ===== ANIMATED BORDER ===== */
@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
  50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.4); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-section { padding-top: 120px; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 40px; height: 400px; }
  .why-stats-row { gap: 30px; }
  .navbar-custom .navbar-collapse {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 12px;
    border: 1px solid var(--glass-border);
  }
  .nav-actions { margin-top: 16px; justify-content: center; }
}

@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }
  .hero-title { min-height: 80px; }
  .hero-visual { height: 350px; }
  .dashboard-mockup { max-width: 300px; }
  .profit-big-title { font-size: 5rem; }
  .income-circle { width: 220px; height: 220px; }
  .income-number { font-size: 4rem; }
  .register-timeline::before { display: none; }
  .register-timeline { gap: 20px; }
  .why-stats-row { gap: 20px; }
  .why-number { font-size: 2rem; }
  .float-whatsapp, .float-chat { width: 48px; height: 48px; font-size: 1.3rem; }
  .toast-container-custom { right: 16px; left: 16px; }
  .toast-notification { min-width: auto; }
}

@media (max-width: 576px) {
  .hero-buttons .btn { width: 100%; }
  .hero-stats { gap: 20px; }
  .hero-stat .stat-number { font-size: 2rem; } 
  .profit-visual { height: 300px; }
  .profit-ring { width: 200px !important; height: 200px !important; }
  .ring-2 { width: 160px !important; height: 160px !important; }
  .ring-3 { width: 120px !important; height: 120px !important; }
  .calculator-panel { padding: 24px; }
}


.admin-md-section {
  background: linear-gradient(180deg, #fff9f0 0%, #ffffff 100%);
}

.admin-md-panel {
  display: grid;
  gap: 28px;
  padding: 48px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: calc(var(--radius) * 1.2);
  box-shadow: 0 32px 90px rgba(212, 175, 55, 0.12);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.admin-md-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
  min-width: 0;
}

.admin-person-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.admin-office-card {
  margin-top: 0;
  background: linear-gradient(180deg, rgba(255, 245, 220, 0.95), rgba(255, 255, 255, 0.95));
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.16);
  min-width: 0;
}

.admin-office-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.admin-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 175, 55, 0.12);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.admin-card-md {
  background: linear-gradient(180deg, rgba(255, 250, 240, 1), rgba(255, 245, 230, 1));
}

.admin-card-top {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.admin-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: var(--gold-grad-soft);
  color: var(--dark-gold);
  font-size: 1.6rem;
}

.admin-card-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark-gold);
  margin-bottom: 8px;
}

.admin-card h3 {
  font-size: 2rem;
  margin: 0;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--dark-gold);
  font-weight: 700;
  margin-top: 12px;
}

.admin-card-body {
  padding-top: 10px;
}

.admin-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.admin-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.12);
  color: var(--dark-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.admin-info-title {
  font-size: 0.95rem;
  color: var(--dark-gold);
  font-weight: 700;
  margin-bottom: 6px;
}

.admin-info-text {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.admin-md-body {
  padding-top: 4px;
}

.admin-tag-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.admin-tag-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admin-tag-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(212, 175, 55, 0.14);
}

.admin-tag-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.16);
  color: var(--dark-gold);
  font-size: 1.2rem;
}

.admin-tag-box h5 {
  margin: 0;
  font-size: 0.98rem;
}

@media (max-width: 992px) {
  .admin-md-top {
    grid-template-columns: 1fr;
  }

  .admin-office-card {
    margin-top: 0;
  }

  .admin-tag-row {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 640px) {
  .admin-tag-row {
    grid-template-columns: 1fr;
  }
}
