/* =========================================================================
   NetMods - Final Enhanced Color Theme with Fixed Layout
   ========================================================================= */

/* =========================
   0. CSS Variables & Reset - ENHANCED COLOR SCHEME
   ========================= */
:root {
  /* Enhanced Color Palette */
  --black-bg: #000000;           /* Deep black backgrounds */
  --dark-bg: #0a0f1c;           /* Primary dark blue */
  --navy-blue: #0f1a2c;         /* Cards, sections */
  --royal-blue: #1a4f9c;        /* Primary buttons, accents */
  --light-blue: #3b82f6;        /* Hover states, accents */
  --bright-blue: #007bff;       /* Active elements */
  --white: #ffffff;             /* Primary text */
  --gray-light: #94a3b8;        /* Secondary text */
  --gray-dark: #1e293b;         /* Borders, dark elements */
  --success-green: #10b981;     /* Checkmarks, positive */
  --error-red: #ef4444;         /* X marks, negative */
  --neon-cyan: #00ffff;         /* Attractive neon accent */
  
  /* REMOVED PINK COLOR from all variables */
  
  /* Derived Variables */
  --bg-dark: var(--black-bg);
  --bg-darker: #000000;
  --surface-dark: var(--navy-blue);
  --surface-dark-2: #1a1f2e;
  --surface-dark-3: #252a3a;
  --text-light: var(--white);
  --text-lighter: #f1f5f9;
  --text-muted: var(--gray-light);
  
  /* Accent Colors */
  --accent-400: var(--light-blue);
  --accent-500: var(--royal-blue);
  --accent-600: #2563eb;
  --accent-700: #1d4ed8;
  
  /* Neon Colors - REMOVED PINK */
  --neon-blue: var(--light-blue);
  --neon-blue-glow: rgba(59, 130, 246, 0.6);
  --neon-purple: var(--royal-blue);
  --neon-purple-glow: rgba(26, 79, 156, 0.6);
  --neon-green: var(--success-green);
  --neon-green-glow: rgba(16, 185, 129, 0.6);
  
  /* Attractive Gradients - REMOVED PINK */
  --gradient-hero: linear-gradient(135deg, #000000 0%, #0a0f1c 50%, #000000 100%);
  --gradient-black-blue: linear-gradient(135deg, #000000 0%, #0f1a2c 100%);
  --gradient-primary: linear-gradient(135deg, var(--royal-blue), var(--accent-700));
  --gradient-neon: linear-gradient(135deg, var(--light-blue), var(--royal-blue));
  --gradient-attractive: linear-gradient(45deg, var(--neon-cyan), var(--light-blue)); /* REMOVED PINK */
  
  /* Enhanced Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.8);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.9);
  --shadow-neon: 0 0 20px rgba(0, 255, 255, 0.5);
  
  /* Glows */
  --glow-sm: 0 0 20px rgba(59, 130, 246, 0.3);
  --glow-md: 0 0 30px rgba(59, 130, 246, 0.4);
  --glow-lg: 0 0 40px rgba(59, 130, 246, 0.5);
  --glow-neon: 0 0 30px rgba(0, 255, 255, 0.4);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 50%;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s ease;
  --transition-slow: 0.6s ease;
  --transition-bounce: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--black-bg);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Animated Background Effect - REMOVED PINK */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(26, 79, 156, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.9) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

/* =========================
   1. Header & Navigation
   ========================= */
header {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(10, 15, 28, 0.95));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  animation: slideDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.left-nav, .right-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--text-lighter);
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-attractive); /* UPDATED - no pink */
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.logo:hover::after {
  transform: scaleX(1);
}

.logo-img {
  height: 50px;
  width: auto;
  transition: all var(--transition-bounce);
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.logo:hover .logo-img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--light-blue), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* =========================
   2. Hero Section - FIXED HOVER
   ========================= */
.hero-section {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 160px 20px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), /* REMOVED PINK */
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  animation: heroBackground 15s ease-in-out infinite;
  z-index: 1;
}

@keyframes heroBackground {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.5;
    transform: scale(1.1) rotate(120deg);
  }
  66% {
    opacity: 0.4;
    transform: scale(1.05) rotate(240deg);
  }
}

.hero-header {
  position: relative;
  z-index: 2;
  animation: heroContentEntrance 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes heroContentEntrance {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--white), var(--light-blue), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.hero-subheading {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-3xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-options {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-box {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  width: 380px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(59, 130, 246, 0.2);
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.hero-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left var(--transition-slow);
}

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

/* FIXED: Removed gradient border hover effect */
.hero-box::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: transparent; /* Changed from gradient-attractive to transparent */
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.hero-box:hover::after {
  opacity: 0; /* Keep it transparent on hover */
}

/* FIXED: Management and Promotion boxes keep same background on hover */
.hero-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 50px rgba(59, 130, 246, 0.4);
  background: rgba(0, 0, 0, 0.7); /* Same as original, not darker */
  border-color: var(--light-blue);
}

.hero-box h2 {
  font-size: 1.5rem;
  color: var(--light-blue);
  margin-bottom: var(--space-md);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.hero-box p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero-box p span {
  color: var(--neon-cyan);
  font-weight: 700;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* Hero Buttons */
.hero-btn {
  padding: 16px 40px;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--royal-blue), var(--light-blue));
  cursor: pointer;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-md), 0 4px 20px rgba(26, 79, 156, 0.4);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-btn::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 var(--transition-slow);
}

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

.hero-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-lg), 0 8px 30px rgba(26, 79, 156, 0.6);
  background: linear-gradient(135deg, var(--light-blue), var(--royal-blue));
}

/* =========================
   3. Viral Reach Section
   ========================= */
.viral-reach-section {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--black-bg);
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.viral-reach-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-attractive); /* UPDATED - no pink */
  opacity: 0.5;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--white), var(--light-blue), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  text-align: center; /* ADDED: Center all section titles */
}

.section-title span {
  background: var(--gradient-attractive); /* UPDATED - no pink */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
  text-align: center; /* ADDED: Center description */
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-2xl);
  color: var(--text-lighter);
  text-align: center; /* ADDED: Center subtitle */
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.benefit {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-bounce);
  backdrop-filter: blur(10px);
}

.benefit:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--glow-neon);
  border-color: var(--light-blue);
}

.benefit h4 span {
  background: linear-gradient(135deg, var(--light-blue), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center; /* ADDED: Center benefit headings */
  display: block;
}

.benefit p {
  color: var(--gray-light);
  line-height: 1.6;
  text-align: center; /* ADDED: Center benefit text */
}

.summary {
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  font-size: 1.1rem;
  color: var(--text-light);
  padding: var(--space-xl);
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--light-blue);
  text-align: center; /* ADDED: Center summary text */
}

.summary .highlight {
  color: var(--neon-cyan);
  font-weight: 700;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* =========================
   4. Get Millions Section - UPDATED BUTTON CENTERING
   ========================= */
.get-millions-section {
  background: var(--gradient-black-blue);
  padding: var(--space-3xl) var(--space-lg);
  color: var(--white);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.get-millions-section .container {
  position: relative;
  z-index: 2;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin: var(--space-2xl) 0;
}

.step {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  backdrop-filter: blur(10px);
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-attractive); /* UPDATED - no pink */
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.step:hover::before {
  transform: scaleX(1);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(59, 130, 246, 0.3);
  border-color: var(--light-blue);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--royal-blue), var(--accent-700));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md), var(--glow-sm);
  transition: all var(--transition-bounce);
}

.step:hover .step-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: var(--shadow-lg), var(--glow-md);
}

.step-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.step-content h3 {
  color: var(--light-blue);
  margin-bottom: var(--space-md);
  font-size: 1.3rem;
  text-align: center; /* ADDED: Center step headings */
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  text-align: center; /* ADDED: Center step text */
}

.summary-text {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: var(--space-2xl) 0;
  font-weight: 600;
  padding: var(--space-xl);
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* FIXED: Center the BOOK A DEMO CALL button */
.get-millions-section .hero-btn {
  display: block;
  margin: 0 auto;
  width: fit-content;
  min-width: 200px;
}

/* =========================
   5. Real People Section
   ========================= */
.real-people-section {
  background: var(--black-bg);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.real-people-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-attractive); /* UPDATED - no pink */
  opacity: 0.5;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.card {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-bounce);
  text-align: center;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--glow-neon);
  border-color: var(--light-blue);
}

.card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-lg);
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
  transition: all var(--transition-bounce);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
}

.card h3 {
  color: var(--light-blue);
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
  text-align: center; /* Already centered */
}

.card p {
  color: var(--gray-light);
  line-height: 1.6;
  text-align: center; /* Already centered */
}

/* =========================
   6. Services Section - FIXED PRODUCT PROMOTION BOX
   ========================= */
.services-section {
  background: var(--gradient-black-blue);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-attractive); /* UPDATED - no pink */
  opacity: 0.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

/* FIXED: All service cards now have same size including Product Promotion */
.service-card {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-bounce);
  text-align: center;
  cursor: pointer;
  height: 320px; /* Fixed height for all cards */
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(10px);
}

/* Ensure all images have same container size */
.service-card img {
  width: 100%;
  height: 180px; /* Fixed image height */
  object-fit: cover;
  transition: all var(--transition-slow);
}

/* Ensure all text containers have same height */
.service-card h3 {
  padding: var(--space-lg);
  color: var(--text-lighter);
  font-size: 1.1rem;
  margin-top: auto;
  margin-bottom: auto;
  min-height: 80px; /* Fixed text container height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; /* ADDED: Center service card headings */
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--glow-neon);
  border-color: var(--light-blue);
}

.service-card:hover img {
  transform: scale(1.1);
}

/* UPDATED: Remove pink from gradient */
.service-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-attractive); /* UPDATED - no pink */
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover::after {
  opacity: 0.3;
}

/* =========================
   7. Pricing Section - UPDATED STANDARD PLAN ANIMATION
   ========================= */
.pricing-section {
  background: var(--black-bg);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-attractive); /* UPDATED - no pink */
  opacity: 0.5;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.pricing-card {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-bounce);
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(59, 130, 246, 0.3);
  border-color: var(--light-blue);
}

.pricing-card.popular {
  border: 2px solid var(--light-blue);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(59, 130, 246, 0.5);
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.8);
}

/* UPDATED: Standard plan animation from bottom 30% */

@keyframes popularPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0);
  }
}

.pricing-card.popular:hover {
  transform: scale(1.08) translateY(-8px);
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--text-lighter);
  background: linear-gradient(135deg, var(--white), var(--light-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center; /* Already centered */
}

.features {
  list-style: none;
  padding: 0;
  margin: var(--space-xl) 0;
  text-align: left;
}

.features li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success-green);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Choose Plan Button */
.btn-choose {
  background: linear-gradient(135deg, var(--royal-blue), var(--light-blue));
  color: var(--text-lighter);
  border: none;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-md), var(--glow-sm);
  width: 100%;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center; /* Already centered */
}

.btn-choose::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 var(--transition-slow);
}

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

.btn-choose:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--glow-md), 0 0 20px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, var(--light-blue), var(--royal-blue));
}

/* =========================
   8. FAQ Section
   ========================= */
.fast-answers-section {
  background: var(--gradient-black-blue);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fast-answers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-attractive); /* UPDATED - no pink */
  opacity: 0.5;
}

.faq {
  max-width: 800px;
  margin: var(--space-2xl) auto 0;
}

.faq-item {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  border-color: var(--light-blue);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: var(--text-light);
  padding: var(--space-lg);
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-normal);
  font-weight: 600;
}

.faq-question:hover {
  background: rgba(59, 130, 246, 0.1);
}

.arrow {
  transition: transform var(--transition-normal);
  color: var(--light-blue);
  font-size: 1.2rem;
}

.faq-item.active .arrow {
  transform: rotate(90deg);
}

.faq-item.active .faq-question {
  background: rgba(59, 130, 246, 0.2);
  color: var(--light-blue);
}

.faq-answer {
  padding: 0 var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-slow);
}

.faq-item.active .faq-answer {
  padding: var(--space-lg);
  max-height: 500px;
}

.faq-answer p {
  color: var(--gray-light);
  line-height: 1.6;
  text-align: left; /* FAQ answers remain left-aligned for readability */
}

/* =========================
   9. Footer
   ========================= */
footer {
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-xl) 0;
  text-align: center;
  color: var(--gray-light);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-attractive); /* UPDATED - no pink */
  opacity: 0.5;
}

/* =========================
   10. Utility Classes
   ========================= */
.hidden {
  display: none !important;
}

.small-text {
  font-size: 0.875rem;
}

.user-name {
  color: var(--text-light);
  font-weight: 500;
}

/* =========================
   11. Responsive Design
   ========================= */
@media (max-width: 768px) {
  .hero-options {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-box {
    width: 100%;
    max-width: 400px;
  }
  
  .nav-bar {
    flex-direction: column;
    height: auto;
    padding: var(--space-md) 0;
    gap: var(--space-md);
  }
  
  .cards,
  .services-grid,
  .pricing-cards,
  .benefits,
  .steps {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  /* Fixed service card sizing on mobile */
  .service-card {
    height: 300px;
  }
  
  .service-card img {
    height: 160px;
  }
  
  .service-card h3 {
    min-height: 70px;
    font-size: 1rem;
    padding: var(--space-md);
  }
  
  /* Updated popular tag position for mobile */
  .pricing-card.popular::before {
    bottom: 25%; /* Adjusted for mobile */
    right: 15px;
    padding: 5px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 140px 20px 80px;
  }
  
  .hero-header h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  /* Fixed service card sizing on small mobile */
  .service-card {
    height: 280px;
  }
  
  .service-card img {
    height: 150px;
  }
  
  .service-card h3 {
    min-height: 60px;
    font-size: 0.95rem;
    padding: var(--space-sm) var(--space-md);
  }
  
  /* Updated popular tag position for small mobile */
  .pricing-card.popular::before {
    bottom: 20%; /* Adjusted for small mobile */
    right: 10px;
    padding: 4px 12px;
    font-size: 0.7rem;
  }
}

/* =========================
   12. Scrollbar Styling
   ========================= */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--black-bg);
  border-left: 1px solid rgba(59, 130, 246, 0.2);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--royal-blue), var(--light-blue));
  border-radius: 5px;
  border: 2px solid var(--black-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--light-blue), var(--royal-blue));
}

/* =========================
   13. Selection Styling
   ========================= */
::selection {
  background: rgba(59, 130, 246, 0.5);
  color: var(--white);
  text-shadow: none;
}

::-moz-selection {
  background: rgba(59, 130, 246, 0.5);
  color: var(--white);
  text-shadow: none;
}

/* =========================
   14. Enhanced Button Animations
   ========================= */
.hero-btn, .btn-primary, .btn-choose {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light-blue), var(--royal-blue), var(--accent-600));
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  border: none;
  color: var(--text-lighter);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    var(--shadow-md),
    0 0 20px rgba(59, 130, 246, 0.4);
  transition: all var(--transition-bounce);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-btn::before, .btn-primary::before, .btn-choose::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 var(--transition-slow);
}

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

.hero-btn:hover, .btn-primary:hover, .btn-choose:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    var(--shadow-lg),
    0 0 30px rgba(59, 130, 246, 0.6),
    0 0 60px rgba(59, 130, 246, 0.3);
  animation-duration: 1.5s;
}

/* =========================
   15. Attractive Pulse Animation
   ========================= */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

/* =========================
   16. Floating Animation
   ========================= */
.floating {
  animation: floating 3s ease-in-out infinite;
}

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

/* =========================
   17. Shine Effect
   ========================= */
.shine {
  position: relative;
  overflow: hidden;
}

.shine::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}

/* =========================
   18. Section Decorations
   ========================= */
.section-decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--light-blue) 0%, transparent 70%);
  opacity: 0.1;
  filter: blur(20px);
  z-index: 1;
}

/* =========================
   19. CTA Button Special Effect - UPDATED NO PINK
   ========================= */
.cta-button {
  background: linear-gradient(45deg, var(--royal-blue), var(--light-blue), var(--neon-cyan));
  background-size: 300% 300%;
  animation: gradientFlow 4s ease infinite;
  border: none;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}