/* ========================================
   GROWXLY - Premium SaaS Design
   Modern 3D Animated Red Theme
   ======================================== */

:root {
  /* Red Color Palette - Premium Gradient */
  --red-primary: #DC2626;
  --red-secondary: #EF4444;
  --red-dark: #991B1B;
  --red-light: #FCA5A5;
  --red-gradient: linear-gradient(135deg, #DC2626 0%, #EF4444 50%, #DC2626 100%);
  --red-gradient-hover: linear-gradient(135deg, #EF4444 0%, #DC2626 50%, #EF4444 100%);
  
  /* Neutral Colors */
  --bg-dark: #0A0A0F;
  --bg-card: #12121A;
  --bg-card-hover: #1A1A25;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0B0;
  --text-muted: #6B6B7B;
  
  /* Accent Colors */
  --gold: #FFD700;
  --purple: #8B5CF6;
  --cyan: #06B6D4;
  
  /* Shadows & Effects */
  --shadow-glow: 0 0 40px rgba(220, 38, 38, 0.3);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-3d: 0 20px 60px rgba(220, 38, 38, 0.25);
  --border-glow: 1px solid rgba(220, 38, 38, 0.3);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.text-center {
  text-align: center;
}

.section-padding {
  padding: var(--section-padding);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(10, 10, 15, 0.98);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  background: var(--red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red-gradient);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red-gradient);
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}

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

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

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--red-primary);
}

.btn-outline:hover {
  background: var(--red-gradient);
  border-color: transparent;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
    var(--bg-dark);
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-bg-animation::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: float 8s ease-in-out infinite, colorShift 10s ease-in-out infinite;
}

.hero-bg-animation::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse, colorShift 15s ease-in-out infinite;
}

/* Abstract Animated Background Shapes */
.hero-bg-animation .abstract-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: abstractMove 20s ease-in-out infinite;
}

.hero-bg-animation .shape-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), rgba(239, 68, 68, 0.2));
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.hero-bg-animation .shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(220, 38, 38, 0.15));
  top: 50%;
  right: 10%;
  animation-delay: -5s;
}

.hero-bg-animation .shape-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(239, 68, 68, 0.2));
  bottom: 10%;
  left: 15%;
  animation-delay: -10s;
}

@keyframes abstractMove {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(50px, -50px) scale(1.1) rotate(90deg);
  }
  50% {
    transform: translate(-30px, 30px) scale(0.9) rotate(180deg);
  }
  75% {
    transform: translate(40px, 20px) scale(1.05) rotate(270deg);
  }
}

@keyframes colorShift {
  0%, 100% {
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
  }
  33% {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, transparent 70%);
  }
  66% {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  }
}

/* Neon Animated Elements */
.neon-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(220, 38, 38, 0.3);
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.5), inset 0 0 30px rgba(220, 38, 38, 0.3);
  animation: neonPulse 4s ease-in-out infinite, neonRotate 20s linear infinite;
  opacity: 0.6;
}

.neon-ring.ring-1 {
  width: 400px;
  height: 400px;
  top: 15%;
  left: 30%;
  border-color: rgba(220, 38, 38, 0.4);
  animation-delay: 0s;
}

.neon-ring.ring-2 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  right: 25%;
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5), inset 0 0 30px rgba(139, 92, 246, 0.3);
  animation-delay: -2s;
}

.neon-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--red-primary);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--red-primary), 0 0 40px var(--red-primary);
  animation: neonFloat 8s ease-in-out infinite;
  opacity: 0.8;
}

.neon-particle.particle-1 {
  top: 25%;
  left: 15%;
  animation-delay: 0s;
  background: #DC2626;
}

.neon-particle.particle-2 {
  top: 60%;
  left: 80%;
  animation-delay: -3s;
  background: #8B5CF6;
  box-shadow: 0 0 20px #8B5CF6, 0 0 40px #8B5CF6;
}

.neon-particle.particle-3 {
  top: 80%;
  left: 40%;
  animation-delay: -5s;
  background: #06B6D4;
  box-shadow: 0 0 20px #06B6D4, 0 0 40px #06B6D4;
}

@keyframes neonPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
    border-width: 2px;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
    border-width: 3px;
  }
}

@keyframes neonRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes neonFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: translate(30px, -30px) scale(1.2);
    opacity: 1;
  }
  50% {
    transform: translate(-20px, 20px) scale(0.8);
    opacity: 0.6;
  }
  75% {
    transform: translate(20px, 30px) scale(1.1);
    opacity: 0.9;
  }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(10deg); }
  66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(220, 38, 38, 0.1);
  border: var(--border-glow);
  border-radius: 50px;
  font-size: 14px;
  color: var(--red-light);
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease;
}

.hero-badge span {
  width: 8px;
  height: 8px;
  background: var(--red-primary);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
  letter-spacing: -2px;
}

.hero h1 .highlight {
  background: var(--red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: flex;
  gap: 50px;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 42px;
  font-weight: 800;
  background: var(--red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   AD PLACEMENT SECTION
   ======================================== */

.ad-section {
  padding: 60px 0;
  background: var(--bg-card);
  border-top: 1px solid rgba(220, 38, 38, 0.1);
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.ad-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.ad-placeholder {
  width: 300px;
  height: 250px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
  border: 2px dashed rgba(220, 38, 38, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.3s ease;
}

.ad-placeholder:hover {
  border-color: var(--red-primary);
  box-shadow: var(--shadow-glow);
}

/* ========================================
   STATS PANEL
   ======================================== */

.stats-panel {
  padding: 80px 0;
  background: var(--bg-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: var(--border-glow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-3d);
}

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

.stat-card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.stat-card-number {
  font-size: 48px;
  font-weight: 800;
  background: var(--red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 10px;
}

.stat-card-label {
  color: var(--text-secondary);
  font-size: 16px;
}

/* ========================================
   TRUST / ABOUT SECTION
   ======================================== */

.trust-section {
  padding: var(--section-padding);
  background: var(--bg-card);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50px;
  font-size: 13px;
  color: var(--red-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

.trust-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-text p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.trust-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.trust-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--bg-dark);
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.trust-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--red-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.trust-feature-text {
  font-weight: 600;
  color: var(--text-primary);
}

.trust-visual {
  position: relative;
}

.trust-card-3d {
  background: var(--red-gradient);
  padding: 50px;
  border-radius: 30px;
  box-shadow: var(--shadow-3d);
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.trust-card-3d:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.trust-card-content {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 20px;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-section {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

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

.step-card {
  position: relative;
  padding: 40px;
  background: var(--bg-card);
  border-radius: 24px;
  border: var(--border-glow);
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-3d);
  border-color: var(--red-primary);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--red-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.step-icon {
  font-size: 64px;
  margin: 30px 0 20px;
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ========================================
   TASK SECTION
   ======================================== */

.task-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

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

.task-card {
  background: var(--bg-dark);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
}

.task-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--red-primary);
  box-shadow: var(--shadow-glow);
}

.task-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: all 0.3s ease;
}

.task-card:hover .task-icon {
  background: var(--red-gradient);
  transform: rotate(10deg);
}

.task-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.task-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ========================================
   EARNING SECTION
   ======================================== */

.earning-section {
  padding: var(--section-padding);
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.earning-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.earning-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.earning-text p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.earning-features {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.earning-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
}

.earning-feature:hover {
  border-color: var(--red-primary);
  transform: translateX(10px);
}

.earning-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--red-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.earning-visual {
  position: relative;
}

.earning-card-stack {
  position: relative;
  height: 400px;
}

.earning-card {
  position: absolute;
  background: var(--bg-card);
  border: var(--border-glow);
  border-radius: 24px;
  padding: 30px;
  width: 100%;
  transition: all 0.5s ease;
}

.earning-card-1 {
  top: 0;
  z-index: 3;
  box-shadow: var(--shadow-card);
}

.earning-card-2 {
  top: 20px;
  z-index: 2;
  transform: scale(0.95);
  opacity: 0.7;
}

.earning-card-3 {
  top: 40px;
  z-index: 1;
  transform: scale(0.9);
  opacity: 0.5;
}

/* ========================================
   GROWTH SECTION
   ======================================== */

.growth-section {
  padding: var(--section-padding);
  background: var(--bg-card);
}

.growth-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.growth-visual {
  order: 1;
}

.growth-text {
  order: 2;
}

.growth-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.growth-stat {
  background: var(--bg-dark);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.1);
  text-align: center;
}

.growth-stat-number {
  font-size: 36px;
  font-weight: 800;
  background: var(--red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.growth-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.growth-image {
  background: var(--red-gradient);
  border-radius: 30px;
  padding: 40px;
  box-shadow: var(--shadow-3d);
}

.growth-mockup {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 30px;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-section {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

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

.why-card {
  background: var(--bg-card);
  padding: 35px;
  border-radius: 20px;
  border: var(--border-glow);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d);
  border-color: var(--red-primary);
}

.why-icon {
  width: 50px;
  height: 50px;
  background: var(--red-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.why-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.why-text p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
  padding: var(--section-padding);
  background: var(--red-gradient);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-section .section-header h2 {
  color: var(--text-primary);
}

.stats-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

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

.counter-item {
  text-align: center;
}

.counter-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  margin-bottom: 10px;
}

.counter-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   CRYPTO PAYMENT TICKER
   ======================================== */

.crypto-ticker-section {
  padding: 60px 0 80px;
  background: var(--bg-card);
  border-top: 1px solid rgba(220, 38, 38, 0.1);
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.crypto-ticker {
  overflow: hidden;
  white-space: nowrap;
}

.crypto-track {
  display: inline-flex;
  animation: scroll 30s linear infinite;
}

.crypto-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.crypto-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;
  margin: 0 15px;
  background: var(--bg-dark);
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
}

.crypto-item:hover {
  border-color: var(--red-primary);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
  transform: translateY(-5px);
}

.crypto-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.crypto-icon.usdt { background: linear-gradient(135deg, #26A17B, #128C62); color: white; }
.crypto-icon.bnb { background: linear-gradient(135deg, #F3BA2F, #D4A017); color: black; }
.crypto-icon.btc { background: linear-gradient(135deg, #F7931A, #E87B0E); color: white; }
.crypto-icon.eth { background: linear-gradient(135deg, #627EEA, #4A65D6); color: white; }
.crypto-icon.trx { background: linear-gradient(135deg, #FF0000, #CC0000); color: white; }
.crypto-icon.ton { background: linear-gradient(135deg, #0088CC, #006699); color: white; }

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.cta-section {
  padding: var(--section-padding);
  background: var(--bg-dark);
  position: relative;
}

.cta-box {
  background: var(--red-gradient);
  border-radius: 40px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-3d);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

.cta-box h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.cta-box p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--text-primary);
  color: var(--red-primary);
}

.btn-white:hover {
  background: var(--bg-dark);
  color: var(--text-primary);
}

.btn-outline-white {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-primary);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--bg-card);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(220, 38, 38, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--bg-dark);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--red-gradient);
  border-color: transparent;
  transform: translateY(-5px);
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--text-primary);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 15px;
}

.footer-column ul li a {
  color: var(--text-secondary);
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--red-light);
  padding-left: 10px;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(220, 38, 38, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-bottom-links a:hover {
  color: var(--red-light);
}

/* ========================================
   TELEGRAM FLOATING BUTTON
   ======================================== */

.telegram-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  animation: float 3s ease-in-out infinite;
}

.telegram-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #0088CC;
  color: var(--text-primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 10px 40px rgba(0, 136, 204, 0.4);
  transition: all 0.3s ease;
}

.telegram-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 136, 204, 0.5);
}

.telegram-btn svg {
  width: 24px;
  height: 24px;
}

.telegram-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.telegram-float:hover .telegram-tooltip {
  opacity: 1;
  right: 80px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .hero h1 { font-size: 48px; }
  .stats-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-content, .earning-content, .growth-content { grid-template-columns: 1fr; }
  .task-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-counters { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-buttons { flex-direction: column; }
  .hero-stats-row { flex-direction: column; gap: 30px; }
  .ad-row { flex-direction: column; }
  .stats-grid, .steps-grid, .task-grid, .why-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 32px; }
  .cta-box { padding: 50px 30px; }
  .cta-box h2 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-counters { grid-template-columns: 1fr 1fr; }
  .telegram-btn span { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-stat-number { font-size: 32px; }
  .stat-card-number { font-size: 36px; }
  .counter-number { font-size: 40px; }
  .trust-features { grid-template-columns: 1fr; }
  .growth-stats { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
