/* ==========================================================================
   SGRUL.COM • SIEMPRE GANAS - RUEDAS LIBRE
   Ultra-Compact Brutal Luxury Quantitative Terminal Style
   ========================================================================== */

:root {
  --bg-base: #020306;
  --bg-surface: #07090f;
  --bg-card: rgba(10, 14, 23, 0.92);
  --bg-card-hover: rgba(18, 24, 38, 0.96);
  --bg-glass: rgba(16, 22, 35, 0.7);

  --gold-primary: #d4af37;
  --gold-light: #fbeea8;
  --gold-bright: #ffd700;
  --gold-dark: #997d1e;
  --gold-gradient: linear-gradient(135deg, #fff2a3 0%, #ffd700 30%, #d4af37 70%, #8f6e14 100%);
  --gold-glow: 0 0 20px rgba(255, 215, 0, 0.35);
  --gold-glow-lg: 0 0 45px rgba(255, 215, 0, 0.55);

  --cyan-neon: #00f3ff;
  --cyan-glow: 0 0 16px rgba(0, 243, 255, 0.4);
  --emerald-neon: #00ff88;
  --emerald-glow: 0 0 16px rgba(0, 255, 136, 0.4);
  --rose-neon: #ff2a5f;

  --text-white: #ffffff;
  --text-cream: #fbf8f0;
  --text-muted: #8493a8;
  --text-dim: #475467;

  --border-gold: rgba(212, 175, 55, 0.35);
  --border-gold-bright: rgba(255, 215, 0, 0.75);
  --border-subtle: rgba(255, 255, 255, 0.09);

  --font-display: 'Orbitron', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-size: 15px;
}

body {
  background-color: var(--bg-base);
  color: var(--text-cream);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 100% 30%, rgba(0, 243, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 0% 70%, rgba(212, 175, 55, 0.07) 0%, transparent 50%),
    linear-gradient(rgba(255, 215, 0, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold-bright));
  border-radius: 3px;
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* Typography Helpers */
.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }

.text-gold {
  color: var(--gold-bright);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}
.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.text-cyan { color: var(--cyan-neon); text-shadow: 0 0 10px rgba(0, 243, 255, 0.35); }
.text-emerald { color: var(--emerald-neon); text-shadow: 0 0 10px rgba(0, 255, 136, 0.35); }
.text-muted { color: var(--text-muted); }

/* Containers & Compact Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 45px 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .section { padding: 32px 0; }
  .container { padding: 0 14px; }
}

/* Glass Panels */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--border-gold-bright);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8), var(--gold-glow);
}

/* Brutal Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: #030407;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  border: 1px solid #fff3b0;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.45), 0 4px 12px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 20%,
    rgba(255, 255, 255, 0.4) 45%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.4) 55%,
    transparent 80%
  );
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.7s ease-in-out;
}

.btn-gold:hover::after {
  transform: rotate(30deg) translateX(100%);
}

.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.7);
  color: #000;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(16, 22, 35, 0.75);
  color: var(--text-cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(28, 38, 60, 0.9);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

/* Badges */
.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.45);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--emerald-neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald-neon);
  animation: pulseAnim 1.8s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

/* ==========================================================================
   Compact Navigation Header (NO SOFTWARE ACCESS BUTTONS)
   ========================================================================== */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 100;
  background: rgba(2, 3, 6, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  transition: var(--transition-fast);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, #1b2333 0%, #090d16 100%);
  border: 1px solid var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gold-glow);
}

.brand-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-bright);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--text-white);
  line-height: 1;
}

.brand-sub {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-bright);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-bright);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}

@media (max-width: 576px) {
  .brand-title { font-size: 1.1rem; }
  .brand-sub { font-size: 0.52rem; }
  .btn-gold { padding: 8px 14px; font-size: 0.72rem; }
}

/* ==========================================================================
   Compact Ticker Tape
   ========================================================================== */
.ticker-tape {
  margin-top: 64px;
  background: rgba(6, 8, 14, 0.96);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
  z-index: 10;
}

.tape-track {
  display: inline-flex;
  gap: 32px;
  animation: scrollTape 45s linear infinite;
}

.tape-track:hover { animation-play-state: paused; }

.tape-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
}

.tape-symbol { color: var(--text-white); font-weight: 700; }
.tape-price { color: var(--gold-bright); }
.tape-up { color: var(--emerald-neon); }
.tape-down { color: var(--rose-neon); }

@keyframes scrollTape {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Hero Section & Video Cinematic
   ========================================================================== */
.hero-section {
  padding: 28px 0 45px 0;
  text-align: center;
  position: relative;
}

.hero-badge-wrap {
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 22px auto;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

/* Cinematic Video Container */
.video-cinematic-wrapper {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  padding: 4px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(16, 22, 35, 0.9), rgba(0, 243, 255, 0.5));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 215, 0, 0.25);
  transition: transform 0.4s ease;
}

.video-cinematic-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 75px rgba(0, 0, 0, 0.95), 0 0 60px rgba(255, 215, 0, 0.4);
}

.video-cinematic-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: calc(var(--radius-md) - 2px);
  overflow: hidden;
}

.video-cinematic-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 3, 6, 0.85);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 215, 0, 0.5);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-bright);
  z-index: 2;
}

.video-overlay-meta {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(2, 3, 6, 0.85);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 243, 255, 0.4);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cyan-neon);
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .video-overlay-badge, .video-overlay-meta { display: none; }
}

/* Stats Bar */
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.stat-card {
  padding: 16px 12px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 992px) {
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .stats-bar-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   3D Gold Mine Screenshot Showcase
   ========================================================================== */
.screenshot-showcase {
  position: relative;
  border-radius: var(--radius-md);
  padding: 5px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.8) 0%, rgba(16, 22, 35, 0.9) 50%, rgba(0, 243, 255, 0.5) 100%);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9), 0 0 45px rgba(255, 215, 0, 0.25);
  margin-top: 24px;
  overflow: hidden;
}

.screenshot-image-wrap {
  position: relative;
  border-radius: calc(var(--radius-md) - 2px);
  overflow: hidden;
}

.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.screenshot-showcase:hover .screenshot-img {
  transform: scale(1.015);
}

.screenshot-hud-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.screenshot-tag {
  background: rgba(2, 3, 6, 0.9);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold-bright);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-bright);
}

/* ==========================================================================
   Section Headers (Ultra Compact)
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 28px auto;
}

.section-tagline {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
}

.section-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .section-heading { font-size: 1.65rem; }
  .section-description { font-size: 0.88rem; }
}

/* ==========================================================================
   20 Proprietary Matrices Grid (Compact & Dense)
   ========================================================================== */
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.matrix-card {
  padding: 16px;
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.matrix-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-bright);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.25);
  background: var(--bg-card-hover);
}

.matrix-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.matrix-pair {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 900;
  color: #fff;
}

.matrix-badge-id {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 6px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 4px;
  color: var(--gold-bright);
}

.matrix-codename {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--cyan-neon);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.matrix-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 10px;
}

.matrix-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

@media (max-width: 1200px) {
  .matrix-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 880px) {
  .matrix-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .matrix-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Catastrophe Risk & Black-Swan Box
   ========================================================================== */
.risk-explanation-box {
  padding: 30px;
  background: radial-gradient(circle at 10% 20%, rgba(255, 42, 95, 0.08) 0%, rgba(10, 14, 23, 0.98) 70%);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8);
}

.risk-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 22px;
}

.risk-col {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(7, 9, 15, 0.85);
}

.risk-col.danger-col {
  border: 1px solid rgba(255, 42, 95, 0.4);
  box-shadow: 0 0 20px rgba(255, 42, 95, 0.1);
}

.risk-col.safe-col {
  border: 1px solid rgba(0, 255, 136, 0.45);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.12);
}

.risk-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.risk-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.risk-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .risk-comparison-grid { grid-template-columns: 1fr; }
  .risk-explanation-box { padding: 18px; }
}

/* ==========================================================================
   Pricing Packages & ROI Calculator
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  align-items: stretch;
}

.pricing-card {
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.pricing-card.featured {
  border: 2px solid var(--gold-bright);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.85), var(--gold-glow);
  transform: translateY(-4px);
}

.pricing-card.featured::before {
  content: 'MAS SOLICITADO';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #030407;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.pricing-tier-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 4px;
}

.pricing-capital-range {
  font-size: 0.78rem;
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text-white);
}

.pricing-period {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.pricing-commission-badge {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255, 215, 0, 0.14);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 18px;
  text-align: center;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-cream);
}

.pricing-feature-item svg {
  color: var(--emerald-neon);
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

/* Calculator Slider */
.calc-box {
  padding: 26px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 860px;
  margin: 0 auto;
}

.calc-slider-wrap {
  margin: 20px 0;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.custom-range {
  -webkit-appearance: none;
  width: 100%;
  height: 7px;
  border-radius: 4px;
  background: #141c2c;
  outline: none;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
  border: 2px solid #fff;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.calc-res-value {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--gold-bright);
}

.calc-res-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .calc-results-grid { grid-template-columns: 1fr; }
  .calc-box { padding: 18px; }
}

/* ==========================================================================
   VIP Modal (Z-Index 99999)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 580px;
  background: #090d16;
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.95), var(--gold-glow);
  padding: 28px;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close-btn:hover {
  color: var(--gold-bright);
}

.modal-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  position: relative;
}

.step-bubble {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #141c2c;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--text-muted);
  z-index: 2;
  transition: var(--transition-fast);
}

.step-bubble.active {
  background: var(--gold-bright);
  color: #000;
  border-color: #fff;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.step-bubble.completed {
  background: var(--emerald-neon);
  color: #000;
  border-color: #fff;
}

.form-step-pane { display: none; }
.form-step-pane.active { display: block; }

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  background: rgba(18, 24, 38, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.35);
  background: rgba(25, 34, 52, 0.95);
}

.form-help-text {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.modal-nav-btns {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.vip-success-screen {
  text-align: center;
  padding: 10px 0;
}

.vip-card-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: #030407;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
  margin: 16px 0;
}

/* Footer (Clean & Pure Presentation) */
.footer-wrap {
  padding: 35px 0 20px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background: #010204;
  margin-top: 50px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.76rem;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
