:root {
  --green-neon: #3dffbb;
  --green-glow: #2dd4a0;
  --green-dark: #03241a;
  --black: #010602;
  --text-light: #f6fff9;
  --text-muted: rgba(246, 255, 249, 0.7);
  --border: rgba(61, 255, 187, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: #010602;
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ===== ANIMATED BACKGROUND ===== */
.grid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(61, 255, 187, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 255, 187, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.glow-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--green-neon), transparent);
  top: -200px;
  right: -200px;
  animation-duration: 25s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--green-glow), transparent);
  bottom: -250px;
  left: -250px;
  animation-duration: 30s;
  animation-delay: -10s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--green-neon), transparent);
  top: 50%;
  left: 50%;
  animation-duration: 35s;
  animation-delay: -20s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(100px, -100px) scale(1.1);
  }
  66% {
    transform: translate(-100px, 100px) scale(0.9);
  }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4%;
  background: rgba(1, 6, 2, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(61, 255, 187, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(61, 255, 187, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  z-index: 10;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(61, 255, 187, 0.4);
}

.logo strong {
  color: var(--green-neon);
  font-weight: 800;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

nav a {
  padding: 0.7rem 1.2rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: all 0.3s ease;
  position: relative;
}

nav a:not(.btn-outline):not(.btn-primary):hover {
  color: var(--green-neon);
  background: rgba(61, 255, 187, 0.08);
}

nav .btn-outline {
  border: 2px solid rgba(61, 255, 187, 0.3);
}

nav .btn-outline:hover {
  border-color: var(--green-neon);
  background: rgba(61, 255, 187, 0.1);
  color: var(--green-neon);
}

nav .btn-primary {
  background: linear-gradient(135deg, var(--green-neon), var(--green-glow));
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(61, 255, 187, 0.3);
}

nav .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(61, 255, 187, 0.5);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green-neon);
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
main {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 4% 4rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 90vh;
}

.badge-container {
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, rgba(61, 255, 187, 0.15), rgba(61, 255, 187, 0.05));
  border: 1px solid var(--green-neon);
  border-radius: 999px;
  color: var(--green-neon);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 20px rgba(61, 255, 187, 0.2);
}

.badge.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(61, 255, 187, 0.2);
  }
  50% {
    box-shadow: 0 4px 30px rgba(61, 255, 187, 0.4);
  }
}

.badge-icon {
  font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.highlight {
  background: linear-gradient(135deg, var(--green-neon), var(--green-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.glow-text {
  color: var(--green-neon);
  text-shadow: 0 0 30px rgba(61, 255, 187, 0.5);
  display: inline-block;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(61, 255, 187, 0.5);
  }
  50% {
    text-shadow: 0 0 40px rgba(61, 255, 187, 0.8);
  }
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, var(--green-neon), var(--green-glow));
  color: var(--black);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(61, 255, 187, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

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

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(61, 255, 187, 0.6);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1.2rem 2.5rem;
  background: transparent;
  color: var(--green-neon);
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid var(--green-neon);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(61, 255, 187, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(61, 255, 187, 0.3);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeInUp 0.8s ease 0.8s backwards;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.proof-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.proof-item strong {
  color: var(--green-neon);
}

.proof-avatar-group {
  display: flex;
}

.proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-neon), var(--green-glow));
  border: 2px solid var(--black);
  margin-left: -12px;
}

.proof-avatar:first-child {
  margin-left: 0;
}

.proof-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-neon);
  color: var(--black);
  border-radius: 50%;
  font-weight: 700;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(61, 255, 187, 0.2);
}

/* ===== DASHBOARD PREVIEW ===== */
.hero-visual {
  animation: fadeIn 1s ease 0.4s backwards;
  perspective: 1000px;
}

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

.dashboard-preview {
  background: rgba(2, 6, 3, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(61, 255, 187, 0.3);
  border-radius: 20px;
  padding: 0;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(61, 255, 187, 0.2);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  animation: float3D 6s ease-in-out infinite;
}

@keyframes float3D {
  0%, 100% {
    transform: translateY(0) rotateX(0) rotateY(0);
  }
  50% {
    transform: translateY(-20px) rotateX(2deg) rotateY(-2deg);
  }
}

.dashboard-preview:hover {
  transform: scale(1.02) translateZ(20px);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(61, 255, 187, 0.1);
}

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

.preview-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-neon);
  opacity: 0.3;
}

.preview-dots span:first-child {
  opacity: 1;
}

.preview-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.preview-content {
  padding: 2rem;
}

.preview-stat {
  margin-bottom: 2rem;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-neon), var(--green-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-bar {
  margin-top: 1rem;
  height: 8px;
  background: rgba(61, 255, 187, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, var(--green-neon), var(--green-glow));
  border-radius: 999px;
  animation: fillBar 2s ease forwards;
}

@keyframes fillBar {
  from {
    width: 0;
  }
  to {
    width: 75%;
  }
}

.preview-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.mini-card {
  padding: 1rem;
  background: linear-gradient(135deg, rgba(61, 255, 187, 0.08), rgba(61, 255, 187, 0.03));
  border: 1px solid rgba(61, 255, 187, 0.2);
  border-radius: 12px;
}

.mini-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.mini-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-neon);
}

.preview-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 100px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--green-neon), var(--green-glow));
  border-radius: 6px 6px 0 0;
  animation: growBar 1s ease forwards;
  transform-origin: bottom;
}

@keyframes growBar {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

/* ===== STATS SECTION ===== */
.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem 4%;
  max-width: 1400px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(61, 255, 187, 0.08), rgba(61, 255, 187, 0.02));
  border: 1px solid rgba(61, 255, 187, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
}

.stat-card[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(61, 255, 187, 0.3);
  border-color: var(--green-neon);
}

.stat-number {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--green-neon), var(--green-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.stat-symbol {
  font-size: 3rem;
  color: var(--green-neon);
  display: inline-block;
  margin-left: 0.2rem;
}

.stat-description {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  padding: 6rem 4%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(61, 255, 187, 0.1);
  border: 1px solid rgba(61, 255, 187, 0.3);
  border-radius: 999px;
  color: var(--green-neon);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(61, 255, 187, 0.05), rgba(1, 6, 2, 0.8));
  border: 1px solid rgba(61, 255, 187, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
}

.benefit-card[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--green-neon);
  box-shadow: 0 20px 60px rgba(61, 255, 187, 0.2);
  background: linear-gradient(135deg, rgba(61, 255, 187, 0.1), rgba(1, 6, 2, 0.9));
}

.benefit-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(61, 255, 187, 0.2), rgba(61, 255, 187, 0.1));
  border: 1px solid var(--green-neon);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  color: var(--green-neon);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotateY(360deg);
  box-shadow: 0 10px 30px rgba(61, 255, 187, 0.4);
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.benefit-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== COMMISSION SECTION ===== */
.commission-section {
  padding: 6rem 4%;
  background: linear-gradient(135deg, rgba(61, 255, 187, 0.05), transparent);
}

.commission-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.commission-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-neon);
  color: var(--black);
  border-radius: 50%;
  font-weight: 700;
}

.feature-item strong {
  display: block;
  color: var(--text-light);
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.commission-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.commission-card {
  padding: 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(61, 255, 187, 0.1), rgba(1, 6, 2, 0.8));
  border: 2px solid var(--green-neon);
  box-shadow: 0 20px 60px rgba(61, 255, 187, 0.2);
  transition: all 0.4s ease;
}

.commission-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(61, 255, 187, 0.4);
}

.commission-card.secondary {
  border-color: rgba(61, 255, 187, 0.5);
}

.commission-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--green-neon);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.commission-percentage {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--green-neon), var(--green-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.commission-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.commission-example {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border-left: 3px solid var(--green-neon);
}

.commission-example span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.commission-example strong {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-section {
  padding: 6rem 4%;
  max-width: 1400px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.step-card {
  position: relative;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(61, 255, 187, 0.05), rgba(1, 6, 2, 0.8));
  border: 1px solid rgba(61, 255, 187, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
}

.step-card[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: var(--green-neon);
  box-shadow: 0 20px 60px rgba(61, 255, 187, 0.3);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 2.5rem;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-neon), var(--green-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
}

.step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(61, 255, 187, 0.2), rgba(61, 255, 187, 0.1));
  border: 2px solid var(--green-neon);
  border-radius: 20px;
  margin-bottom: 2rem;
  color: var(--green-neon);
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(61, 255, 187, 0.4);
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 6rem 4%;
  background: linear-gradient(135deg, rgba(61, 255, 187, 0.1), rgba(3, 36, 26, 0.3));
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem;
  background: linear-gradient(135deg, rgba(2, 6, 3, 0.9), rgba(1, 6, 2, 0.7));
  border: 2px solid var(--green-neon);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(61, 255, 187, 0.3);
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, var(--green-neon), var(--green-glow));
  color: var(--black);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(61, 255, 187, 0.4);
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(61, 255, 187, 0.6);
}

.btn-cta-secondary {
  padding: 1.2rem 2.5rem;
  background: transparent;
  color: var(--green-neon);
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid var(--green-neon);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta-secondary:hover {
  background: rgba(61, 255, 187, 0.1);
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(61, 255, 187, 0.2);
}

.cta-stat-item {
  text-align: center;
}

.cta-stat-item strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-neon);
  margin-bottom: 0.5rem;
}

.cta-stat-item span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 4rem 4% 2rem;
  border-top: 1px solid rgba(61, 255, 187, 0.15);
  background: rgba(1, 6, 2, 0.8);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-column h4 {
  color: var(--green-neon);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--green-neon);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(61, 255, 187, 0.1);
  text-align: center;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }

  .commission-container {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(1, 6, 2, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(61, 255, 187, 0.2);
  }

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

  .mobile-menu-toggle {
    display: flex;
  }

  .stats-section {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-proof {
    flex-direction: column;
    gap: 1rem;
  }

  .proof-divider {
    width: 100%;
    height: 1px;
  }

  .cta-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    gap: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 4% 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 3.5rem;
  }

  .stat-symbol {
    font-size: 2rem;
  }

  .commission-percentage {
    font-size: 3.5rem;
  }

  .cta-container {
    padding: 2.5rem 1.5rem;
  }
}
