/* ============================================
   TOM.AIWEB — ULTRA PREMIUM DESIGN SYSTEM
   Futuristic AI Startup × Fintech × Digital Marketing
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Neon palette */
  --neon-purple: #a855f7;
  --neon-blue: #3b82f6;
  --neon-cyan: #06d6a0;
  --neon-pink: #ec4899;
  --neon-orange: #f97316;
  --electric-violet: #7c3aed;
  --deep-indigo: #4f46e5;

  /* Backgrounds */
  --bg-void: #030014;
  --bg-deep: #07051a;
  --bg-surface: #0c0a20;
  --bg-card: rgba(12, 10, 35, 0.7);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-highlight: rgba(255, 255, 255, 0.08);

  /* Text */
  --text-primary: #f5f3ff;
  --text-secondary: rgba(245, 243, 255, 0.65);
  --text-muted: rgba(245, 243, 255, 0.35);

  /* Gradients */
  --grad-main: linear-gradient(135deg, #7c3aed, #a855f7, #ec4899);
  --grad-neon: linear-gradient(135deg, #06d6a0, #3b82f6, #a855f7);
  --grad-fire: linear-gradient(135deg, #f97316, #ef4444, #ec4899);
  --grad-aurora: linear-gradient(135deg, #06d6a0, #3b82f6, #7c3aed, #ec4899);
  --grad-border: conic-gradient(from 0deg, #7c3aed, #3b82f6, #06d6a0, #ec4899, #7c3aed);

  /* Layout */
  --max-width: 1200px;
  --section-py: 140px;
  --radius: 24px;
  --radius-sm: 16px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: rgba(168, 85, 247, 0.3);
  color: white;
}

/* ============================================
   ANIMATED MESH BACKGROUND (global)
   ============================================ */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(6, 214, 160, 0.05), transparent),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(236, 72, 153, 0.05), transparent);
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  background: rgba(168, 85, 247, 0.06);
  color: var(--neon-purple);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-purple);
  box-shadow: 0 0 10px var(--neon-purple);
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.section-title .highlight {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.75;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   ANIMATED BORDER (reusable)
   — spinning conic gradient border on hover
   ============================================ */
.glow-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 1;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: var(--grad-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: spin-border 4s linear infinite;
}

.glow-card:hover::before {
  opacity: 1;
}

.glow-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

@keyframes spin-border {
  to { --border-angle: 360deg; }
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(3, 0, 20, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(168, 85, 247, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-text {
  background: linear-gradient(135deg, #fff 30%, var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--grad-main);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.4s var(--ease-out);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 40px rgba(168, 85, 247, 0.5);
}

.nav-cta:hover::before {
  opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Animated grid with perspective */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 70%);
  animation: grid-pulse 6s ease-in-out infinite;
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* Hero glow orbs — much more vibrant */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent 60%);
  top: -200px;
  left: -200px;
  filter: blur(60px);
  animation: orb-float-1 12s ease-in-out infinite;
}

.hero-glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 214, 160, 0.15), transparent 60%);
  bottom: -150px;
  right: -150px;
  filter: blur(60px);
  animation: orb-float-2 14s ease-in-out infinite;
}

.hero-glow-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15), transparent 60%);
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  animation: orb-pulse 8s ease-in-out infinite;
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.15); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}

@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -60px) scale(1.2); }
}

@keyframes orb-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 950px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--neon-purple);
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
  animation: hero-fade-in 1s var(--ease-out);
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--neon-cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px var(--neon-cyan); transform: scale(1); }
  50% { box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px rgba(6, 214, 160, 0.3); transform: scale(1.2); }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.04em;
  animation: hero-rise 1s var(--ease-out) 0.15s both;
}

.hero-title .highlight {
  position: relative;
  background: var(--grad-aurora);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 5s ease-in-out infinite;
}

@keyframes shimmer-text {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.75;
  animation: hero-rise 1s var(--ease-out) 0.3s both;
}

/* Revenue highlight */
.hero-revenue {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 48px;
  animation: hero-rise 1s var(--ease-out) 0.4s both;
  position: relative;
}

.hero-revenue::before {
  content: '';
  position: absolute;
  inset: -20px -40px;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.08), transparent 70%);
  border-radius: 20px;
  pointer-events: none;
}

.hero-revenue .amount {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  background: var(--grad-fire);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  animation: shimmer-text 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(249, 115, 22, 0.2));
}

.hero-revenue .period {
  font-size: 1.4rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hero-revenue .label {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
  letter-spacing: 1px;
}

/* CTA buttons */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  animation: hero-rise 1s var(--ease-out) 0.5s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 44px;
  background: var(--grad-main);
  background-size: 200% 100%;
  color: white;
  text-decoration: none;
  border-radius: 60px;
  font-weight: 800;
  font-size: 1.1rem;
  transition: all 0.4s var(--ease-out);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 20px rgba(168, 85, 247, 0.3),
    0 0 60px rgba(168, 85, 247, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.2);
  animation: btn-glow 3s ease-in-out infinite;
}

@keyframes btn-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(168, 85, 247, 0.3), 0 0 60px rgba(168, 85, 247, 0.1); }
  50% { box-shadow: 0 0 30px rgba(168, 85, 247, 0.5), 0 0 80px rgba(168, 85, 247, 0.2), 0 0 120px rgba(168, 85, 247, 0.05); }
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -100%;
  width: 60%;
  height: calc(100% + 4px);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.7s ease;
}

.btn-primary:hover::before {
  left: 150%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 12px 40px rgba(168, 85, 247, 0.5),
    0 0 80px rgba(168, 85, 247, 0.2);
  background-position: 100% 0;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 44px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s var(--ease-out);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 60px;
  padding: 1px;
  background: var(--grad-main);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-secondary:hover::before {
  opacity: 0.5;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 3px;
  font-weight: 600;
  animation: hero-fade-in 1s var(--ease-out) 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neon-purple), transparent);
  animation: scroll-move 2.5s ease-in-out infinite;
}

@keyframes scroll-move {
  0% { opacity: 0; transform: translateY(-10px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  position: relative;
  padding: var(--section-py) 0;
  z-index: 1;
}

/* Separator line */
.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-purple), var(--neon-cyan), var(--neon-purple), transparent);
  opacity: 0.4;
}

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

.stat-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Animated top border on hover */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-aurora);
  background-size: 300% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
  animation: shimmer-text 4s ease-in-out infinite;
}

/* Inner glow on hover */
.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.15);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.1), 0 0 40px rgba(124, 58, 237, 0.05);
}

.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover::after { opacity: 1; }

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 214, 160, 0.06));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  position: relative;
  z-index: 1;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  position: relative;
  padding: var(--section-py) 0;
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  position: relative;
}

/* Connector beam */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--grad-aurora);
  opacity: 0.15;
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 44px 24px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: all 0.5s var(--ease-out);
  backdrop-filter: blur(10px);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 24px 60px rgba(124, 58, 237, 0.12);
}

.step-number {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--bg-void);
  color: var(--text-primary);
  position: relative;
  transition: all 0.5s var(--ease-spring);
}

.step-number::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--grad-main);
  z-index: -1;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: var(--grad-main);
  z-index: -2;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.5s ease;
}

.step-card:hover .step-number {
  transform: scale(1.15);
}

.step-card:hover .step-number::after {
  opacity: 0.4;
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   OPPORTUNITY
   ============================================ */
.opportunity {
  position: relative;
  padding: var(--section-py) 0;
  z-index: 1;
  overflow: hidden;
}

.opportunity::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06), transparent 60%);
  pointer-events: none;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.opportunity-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all 0.5s var(--ease-out);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.opportunity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.04), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.opportunity-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(124, 58, 237, 0.08);
}

.opportunity-card:hover::before { opacity: 1; }

.opportunity-card .card-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(236, 72, 153, 0.06));
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.opportunity-card .card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.opportunity-card .card-text {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================
   TRAINING CONTENT
   ============================================ */
.training {
  position: relative;
  padding: var(--section-py) 0;
  z-index: 1;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.training-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Animated bottom gradient bar */
.training-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-aurora);
  background-size: 300% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
  animation: shimmer-text 4s ease-in-out infinite;
}

/* Glow behind emoji on hover */
.training-card::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.training-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(124, 58, 237, 0.08);
}

.training-card:hover::after { transform: scaleX(1); }
.training-card:hover::before { opacity: 1; }

.training-card .card-emoji {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.2));
}

.training-card .card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.training-card .card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.training-card .card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 5px 16px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 50px;
  font-size: 0.76rem;
  color: var(--neon-purple);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  position: relative;
  padding: var(--section-py) 0;
  z-index: 1;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlay on hover */
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 214, 160, 0.03), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 214, 160, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(6, 214, 160, 0.05);
}

.testimonial-card:hover::before { opacity: 1; }

.testimonial-stars {
  color: #f59e0b;
  letter-spacing: 3px;
  font-size: 1rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.3));
}

.testimonial-revenue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(6, 214, 160, 0.08);
  border: 1px solid rgba(6, 214, 160, 0.15);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 20px;
  width: fit-content;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 16px rgba(6, 214, 160, 0.08);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.2);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}

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

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  padding: 160px 0;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}

/* Background glow */
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.1) 0%, rgba(236, 72, 153, 0.04) 40%, transparent 70%);
  pointer-events: none;
}

/* Animated ring */
.final-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(124, 58, 237, 0.06);
  border-radius: 50%;
  animation: ring-pulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ring-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0; }
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta .section-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  margin-bottom: 20px;
}

.final-cta .section-subtitle {
  margin: 0 auto 40px;
  font-size: 1.15rem;
}

.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-feature:hover {
  border-color: rgba(6, 214, 160, 0.2);
  background: rgba(6, 214, 160, 0.04);
}

.cta-feature .check {
  color: var(--neon-cyan);
  font-size: 1rem;
  filter: drop-shadow(0 0 4px var(--neon-cyan));
}

.final-cta .btn-primary {
  font-size: 1.2rem;
  padding: 22px 56px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  position: relative;
  z-index: 1;
}

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

/* ============================================
   CURSOR GLOW
   ============================================ */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.04), transparent 60%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s ease;
  mix-blend-mode: screen;
}

body:hover .cursor-glow { opacity: 1; }

@media (max-width: 768px) {
  .cursor-glow { display: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .training-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 100px; }

  .stats-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid::before { display: none; }
  .opportunity-grid { grid-template-columns: 1fr; }
  .training-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-revenue .amount { font-size: 3.5rem; }
  .cta-features { flex-direction: column; align-items: center; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2.2rem; }

  .btn-primary, .btn-secondary {
    padding: 16px 32px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }

  .stat-card, .training-card, .testimonial-card, .step-card, .opportunity-card {
    padding: 24px 18px;
  }
}
