:root {
  /* Dark Mode (Default) */
  --bg-primary: #050508;
  --bg-primary-rgb: 5, 5, 8;
  --bg-secondary: #0a0a0f;
  --bg-secondary-rgb: 10, 10, 15;
  --text-primary: #f8f8f8;
  --text-primary-rgb: 248, 248, 248;
  --text-muted: #888899;
  --text-muted-rgb: 136, 136, 153;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 215, 0, 0.1);
  --glass-shadow: rgba(0, 0, 0, 0.3);
  --nav-bg: rgba(5, 5, 8, 0.85);
  --selection-bg: var(--gold);
  --selection-text: #000;
  
  /* Brand Colors */
  --gold: #FFD700;
  --gold-rgb: 255, 215, 0;
  --orange: #FF4D00;
  --purple: #7000FF;
  --black: #050508;
  --white: #f8f8f8;
  --gray-dark: #121215;
}

body.light-mode {
  --bg-primary: #ffffff;
  --bg-primary-rgb: 255, 255, 255;
  --bg-secondary: #f0f0f5;
  --bg-secondary-rgb: 240, 240, 245;
  --text-primary: #050508;
  --text-primary-rgb: 5, 5, 8;
  --text-muted: #444455;
  --text-muted-rgb: 68, 68, 85;
  --glass-bg: rgba(0, 0, 0, 0.03);
  --glass-border: rgba(255, 215, 0, 0.25);
  --glass-shadow: rgba(0, 0, 0, 0.08);
  --nav-bg: rgba(255, 255, 255, 0.9);
  --selection-bg: #000000;
  --selection-text: #ffffff;
}

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

html {
  scroll-behavior: initial;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

/* CUSTOM CURSOR */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s, border-color 0.3s;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--text-primary) !important;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-logo-img {
  height: 44px;
  width: auto;
  margin-right: 12px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 10px 24px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.3s, transform 0.2s;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 212, 94, 0.2);
  display: inline-block;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.reveal {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
}

footer {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  padding: 60px 40px;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-secondary);
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 16px;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--glass-bg);
}

/* THEME TOGGLE */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 20px;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--glass-shadow);
}

.theme-toggle i {
  font-size: 16px;
}

.light-mode .fa-sun { display: none; }
.fa-moon { display: none; }
.light-mode .fa-moon { display: block; }
body:not(.light-mode) .fa-sun { display: block; }

/* ACCESSIBILITY: Only hide cursor on devices with fine pointer (mouse) */
@media (pointer: fine) {
  body { cursor: none; }
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 200;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all .3s;
  display: block;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg-primary);
  backdrop-filter: blur(20px);
  z-index: 150;
  padding: 100px 40px 40px;
  transition: right .4s cubic-bezier(.4, 0, .2, 1);
  border-left: 1px solid rgba(255, 212, 94, .1);
}

.mobile-menu.active { right: 0; }

.mobile-menu a {
  display: block;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 212, 94, .08);
  transition: color .3s, padding-left .3s;
}

.mobile-menu a:hover {
  color: var(--gold);
  padding-left: 12px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: all .3s;
  animation: waPulse 2s infinite;
}

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

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, .4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, .7); }
}

/* BACK TO TOP */
.back-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: rgba(255, 212, 94, .1);
  border: 1px solid rgba(255, 212, 94, .2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  text-decoration: none;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}

.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--gold); color: var(--black); }

.footer-social a {
  border-radius: 12px;
}

@media (max-width: 1024px) {
  nav { padding: 15px 30px; }
  .section { padding: 60px 30px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .theme-toggle { margin-left: auto; margin-right: 20px; }
}

@media (max-width: 640px) {
  .footer-social { flex-wrap: wrap; justify-content: center; }
}

/* ============ EXIT POPUP ============ */
.exit-popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8);
  z-index: 10000; display: none; align-items: center; justify-content: center;
  animation: fadeIn 0.3s ease;
}
.exit-popup-overlay.active { display: flex; }
.exit-popup {
  background: var(--bg-primary); border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 50px 40px; max-width: 460px; width: 90%;
  text-align: center; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.exit-popup .close-popup {
  position: absolute; top: 15px; right: 20px; background: none; border: none;
  color: var(--text-muted); font-size: 24px; cursor: pointer;
}
.exit-popup h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 2px;
  margin-bottom: 10px;
}
.exit-popup p { color: var(--text-muted); font-size: 14px; margin-bottom: 25px; line-height: 1.6; }
.exit-popup .popup-cta {
  display: inline-block; padding: 14px 36px; border-radius: 50px; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--orange)); color: #000;
  text-decoration: none; font-size: 14px; letter-spacing: 1px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.exit-popup .popup-cta:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(255,212,94,0.3); }
.exit-popup .popup-skip {
  display: block; margin-top: 15px; background: none; border: none;
  color: var(--text-muted); font-size: 12px; cursor: pointer; letter-spacing: 1px;
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  padding: 12px 20px; display: none; align-items: center; justify-content: center; gap: 12px;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.4);
}
.sticky-cta a {
  color: #000; font-weight: 800; font-size: 14px; text-decoration: none;
  letter-spacing: 1px; font-family: 'Outfit', sans-serif;
}
.sticky-cta i { font-size: 18px; color: #000; }
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  .whatsapp-btn { bottom: 70px; }
  .back-top { bottom: 130px; }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============ SERVICES HORIZONTAL SCROLL SHOWCASE ============ */
.svc-showcase {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.svc-showcase-inner {
  padding: 120px 60px 80px;
}
.svc-showcase-header {
  text-align: center;
  margin-bottom: 60px;
}
.svc-scroll-track {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  width: max-content;
  will-change: transform;
}
.svc-scroll-card {
  width: 340px;
  min-height: 420px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
  flex-shrink: 0;
}
.svc-scroll-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 60px rgba(255, 212, 94, 0.1);
}
.svc-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--gold);
  opacity: 0.08;
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}
.svc-card-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 20px;
  transition: transform 0.4s;
}
.svc-scroll-card:hover .svc-card-icon {
  transform: scale(1.15) rotate(-5deg);
}
.svc-card-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 212, 94, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}
.svc-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.svc-card-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}
.svc-card-stat {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  border-top: 1px solid var(--glass-border);
  padding-top: 15px;
  margin-bottom: 10px;
}
.svc-card-stat span {
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
  margin-right: 8px;
}
.svc-card-arrow {
  font-size: 20px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s;
  position: absolute;
  bottom: 25px;
  right: 25px;
}
.svc-scroll-card:hover .svc-card-arrow {
  opacity: 1;
  transform: translateX(0);
}
/* Glow effect behind active card */
.svc-scroll-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,212,94,0.15), transparent, rgba(123,47,255,0.1));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.svc-scroll-card:hover::before {
  opacity: 1;
}

/* Progress indicator */
.svc-scroll-progress {
  width: 100%;
  height: 2px;
  background: var(--glass-border);
  margin-top: 40px;
  border-radius: 2px;
  overflow: hidden;
}
.svc-scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  width: 0%;
  border-radius: 2px;
  transition: width 0.1s;
}

@media (max-width: 768px) {
  .svc-showcase-inner { padding: 80px 20px 60px; }
  .svc-scroll-card { width: 280px; min-height: 380px; padding: 30px 24px; }
  .svc-card-title { font-size: 24px; }
  .svc-card-num { font-size: 56px; }
}

/* ============ PREMIUM HERO ============ */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 60px 60px;
}
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,212,94,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,212,94,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 500px; height: 500px;
  background: rgba(123,47,255,0.12);
  top: -150px; left: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: rgba(255,212,94,0.08);
  bottom: -100px; right: -50px;
  animation: orbFloat2 10s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: rgba(255,92,26,0.08);
  top: 40%; right: 20%;
  animation: orbFloat3 12s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -60px) scale(1.15); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(0.9); }
  66% { transform: translate(-20px, 20px) scale(1.05); }
}

.hero-premium-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,212,94,0.06);
  border: 1px solid rgba(255,212,94,0.15);
  border-radius: 50px;
  padding: 8px 20px 8px 14px;
  margin-bottom: 30px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  animation: badgeFade 1s ease-out 0.3s both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #25D366;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(37,211,102,0); }
}
@keyframes badgeFade {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-mega-title {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
  letter-spacing: 4px;
  margin-bottom: 25px;
}
.hero-line {
  display: block;
}
.hero-line-1 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-muted);
  opacity: 0;
  animation: lineReveal 0.8s ease-out 0.5s forwards;
}
.hero-line-2 {
  font-size: clamp(52px, 9vw, 110px);
  min-height: clamp(60px, 10vw, 120px);
  color: var(--text-primary);
  opacity: 0;
  animation: lineReveal 0.8s ease-out 0.8s forwards;
}
.hero-line-3 {
  font-size: clamp(36px, 5vw, 58px);
  color: var(--text-primary);
  opacity: 0;
  animation: lineReveal 0.8s ease-out 1.1s forwards;
}
@keyframes lineReveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.gold-gradient {
  background: linear-gradient(135deg, var(--gold), var(--orange), #FF5C1A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-typed-wrapper {
  display: inline-block;
  position: relative;
}
.hero-typed {
  color: var(--gold);
}
.typed-cursor {
  color: var(--gold);
  animation: cursorBlink 0.8s step-end infinite;
  font-weight: 300;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-premium-sub {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 35px;
  opacity: 0;
  animation: lineReveal 0.8s ease-out 1.4s forwards;
}

.hero-premium-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  opacity: 0;
  animation: lineReveal 0.8s ease-out 1.6s forwards;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  border-radius: 60px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.hero-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.hero-btn-primary:hover::before {
  transform: translateX(100%);
}
.hero-btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px rgba(255,212,94,0.25);
}
.hero-btn-primary i {
  transition: transform 0.3s;
}
.hero-btn-primary:hover i {
  transform: translateX(4px);
}
.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--glass-border);
  border-radius: 60px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.hero-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-play-icon {
  font-size: 10px;
}

/* Hero stats */
.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  animation: lineReveal 0.8s ease-out 1.9s forwards;
}
.hero-stat-item {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--gold);
  letter-spacing: 1px;
}
.hero-stat-plus {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--gold);
}
.hero-stat-label {
  width: 100%;
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* Scroll indicator */
.hero-scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: lineReveal 0.8s ease-out 2.2s forwards;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}
.hero-scroll-down span {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .hero-premium { padding: 130px 20px 80px; }
  .hero-stats-row { gap: 15px; flex-wrap: wrap; }
  .hero-stat-divider { display: none; }
  .hero-stat-val { font-size: 28px; }
  .hero-premium-actions { flex-direction: column; }
  .hero-btn-primary, .hero-btn-outline { width: 100%; justify-content: center; }
}
