/* Global Variables */
:root {
  --primary-color: #FF004F; /* TikTok Red/Pink */
  --secondary-color: #6C63FF; /* Electric Blue */
  --accent-color: #FF6B35; /* Energetic Orange */
  --neutral-light: #FFFFFF;
  --neutral-gray: #F5F7FA;
  /* --text-dark: #ffffff; */
  --text-dark: #333333;
  --text-darker: #000000;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 25px rgba(255, 0, 79, 0.15);
  --transition: all 0.3s ease;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-success: linear-gradient(135deg, var(--accent-color), #FF8C42);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--neutral-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #0d5bbc;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 0, 79, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 79, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

.btn-accent {
  background: var(--gradient-success);
  color: var(--text-darker);
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
  border-radius: 10px;
}

/* Glow and Pulse Button Animations */
.glow-btn {
  background: linear-gradient(90deg,#00ffcc,#00bfff);
  color: #000;
  border: none;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0,255,204,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.glow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0,255,204,0.6);
}

.pulse-btn {
  border: 2px solid #00ffcc;
  color: #00ffcc;
  position: relative;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,255,204,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0,255,204,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,204,0); }
}

/* Coin Spark Animation */
.coin-spark {
  position: absolute;
  animation: floatUp 1s ease-in-out forwards;
  top: -10px;
  right: 20px;
}

@keyframes floatUp {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-40px); }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  margin-bottom: 5px;
  z-index: 1000;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
}

/* Mobile Menu */
.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: var(--shadow-md);
  padding: 20px 0;
  text-align: center;
}

.nav-links.active li {
  margin: 15px 0;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  min-width: 200px;
  z-index: 1000;
  display: none;
  overflow: hidden;
}

.dropdown-menu.active {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background-color: var(--neutral-gray);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #FF004F 0%, #6C63FF 100%);
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-in-out;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-top: 14px;
  margin-bottom: 30px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-in-out;
}

.no-bots-text {
  color: #00ffcc;
  font-weight: 600;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Trust Strip */
.hero-trust-strip {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-top: 20px;
  animation: fadeIn 1.3s ease-in-out;
}

.hero-trust-strip span {
  background: rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.hero-trust-strip .small-link {
  color: #00ffcc;
  text-decoration: underline;
  font-weight: 600;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Live Counter */
.live-counter { display: flex; align-items: center; }

.live-counter-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #111;
  padding: 16px 28px;
  border-radius: 40px;
  margin-bottom: 22px;
  border: 2px solid rgba(255, 0, 79, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.live-counter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}


.counter-icon {
  font-size: 22px;
  animation: pulse 1.8s infinite;
  filter: drop-shadow(0 0 8px #FF004F);
}

.counter-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #111;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 6px 10px;
  border-radius: 16px;
  background: rgba(255, 0, 79, 0.1);
  color: #FF004F;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6B35;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.7);
}

#live-counter-number {
  font-weight: 900;
  font-size: 1.4em;
  background: linear-gradient(45deg, #FF004F, #6C63FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  transition: transform 0.25s ease;
  display: inline-block;
}

.counter-suffix {
  font-size: 14px;
  color: rgba(17, 17, 17, 0.7);
  font-weight: 600;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 16px;
  background: rgba(108, 99, 255, 0.12);
  color: #2c2c2c;
  margin-left: 10px;
}

.verified-badge i { color: #6C63FF; }

.live-counter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.live-counter-btn:focus { outline: none; box-shadow: 0 0 0 4px rgba(255, 0, 79, 0.2); }

.counter-change {
  animation: bump 0.25s ease;
}

.counter-surge {
  animation: surge 0.5s ease;
}

@keyframes bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@keyframes surge {
  0% { transform: scale(1); color: inherit; }
  25% { transform: scale(1.1); color: #FF004F; }
  50% { transform: scale(1.15); color: #FF004F; }
  75% { transform: scale(1.05); color: #FF004F; }
  100% { transform: scale(1); color: inherit; }
}

/* Live Counter Explanation */
.live-counter-explanation {
  margin-bottom: 20px;
  text-align: center;
}

.explanation-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 400px;
  margin: 0 auto;
}

.explanation-text i {
  color: #00ffcc;
  font-size: 16px;
}

/* Bonus Badge */
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #00FF88, #00CC6A);
  color: #000;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

.bonus-icon {
  font-size: 16px;
}

@keyframes glow {
  from { box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3); }
  to { box-shadow: 0 6px 25px rgba(0, 255, 136, 0.5); }
}

/* Animated Mockup */
.animated-mockup {
  animation: float 3s ease-in-out infinite;
}

.animated-heart {
  color: #FF004F;
  animation: heartbeat 1.5s ease-in-out infinite;
}

.animated-count {
  transition: all 0.5s ease;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Social Proof Bar */
.social-proof {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* TikTok Authentic Mockup */
.tiktok-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tiktok-device {
  width: 320px;
  height: 560px;
  border-radius: 32px;
  background: #0d0d0d;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 0 0 2px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.tiktok-app-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0));
  z-index: 2;
}

.tiktok-app-bar i { color: #fff; opacity: 0.9; }
.app-title { font-weight: 700; letter-spacing: 0.3px; }
.app-left, .app-right { display: inline-flex; align-items: center; gap: 10px; }

.tiktok-video {
  width: 100%;
  height: 100%;
  position: relative;
}

.tiktok-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.tiktok-gradient-top,
.tiktok-gradient-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
}
.tiktok-gradient-top { top: 0; background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0)); }
.tiktok-gradient-bottom { bottom: 0; background: linear-gradient(0deg, rgba(0,0,0,0.45), rgba(0,0,0,0)); }

.video-overlay-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  color: #fff;
}

.tiktok-ui {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.tiktok-metadata { display: flex; align-items: flex-end; gap: 12px; max-width: 70%; }
.tiktok-metadata .avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(254,44,85,0.6); }
.tiktok-metadata .avatar img { width: 100%; height: 100%; object-fit: cover; }
.tiktok-metadata .user-info { color: #fff; }
.username { font-weight: 800; }
.verified-icon i { color: #25F4EE; margin-left: 6px; }
.caption { margin-top: 6px; font-weight: 600; color: rgba(255,255,255,0.9); }
.hashtag { color: #25F4EE; font-weight: 800; margin-left: 4px; }
.sound { margin-top: 4px; color: rgba(255,255,255,0.8); font-size: 13px; }
.sound i { color: #FE2C55; margin-right: 6px; }

.growth-ticker {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #25F4EE;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.95;
}
.growth-ticker i { color: #FE2C55; }

.tikgrower-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(254,44,85,0.5);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.tikgrower-badge i { color: #25F4EE; }

.tiktok-actions {
  display: flex; flex-direction: column; align-items: center; gap: 18px; padding-right: 6px;
}
.tiktok-actions .action { display: flex; flex-direction: column; align-items: center; gap: 8px; color: #fff; }
.tiktok-actions .action i { font-size: 26px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); }
.tiktok-actions .action:nth-child(1) i { color: #FE2C55; }
.tiktok-actions .action:nth-child(2) i { color: #25F4EE; }
.tiktok-actions .action:nth-child(3) i { color: #FF004F; }
.tiktok-actions .count { font-size: 16px; font-weight: 800; color: rgba(255,255,255,0.95); text-shadow: 0 1px 8px rgba(0,0,0,0.35); }

@media (max-width: 992px) {
  .tiktok-device { width: 280px; height: 500px; }
}

.social-proof-text {
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-proof-text i {
  color: var(--primary-color);
  font-size: 18px;
}

#social-proof-count {
  color: #FF004F;
  font-weight: 800;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image {
  width: 40%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background-color: var(--neutral-gray);
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--text-darker);
}

/* Video Tutorial Styles */
.video-tutorial {
  margin-bottom: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
  margin: 0 auto;
}

.video-description {
  font-size: 16px;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive Video Styles */
@media (max-width: 768px) {
  .video-container iframe {
    height: 250px;
  }
  
  .video-description {
    font-size: 14px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .video-container iframe {
    height: 200px;
  }
  
  .video-description {
    font-size: 13px;
    padding: 0 15px;
  }
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.step {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  text-align: center;
  flex: 1;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-10px);
}

.step-icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.step-description {
  color: var(--text-dark);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--neutral-light);
}

.testimonials-container {
  text-align: center;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  margin: 50px 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 500%; /* 5 testimonials */
}

.testimonial-card {
  flex: 0 0 20%; /* Each card takes 20% of track width */
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  margin: 0 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-profile {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  text-align: left;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--primary-color);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  flex: 1;
}

.profile-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}

.verified-label {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 500;
}

.verified-label i {
  margin-right: 5px;
  color: var(--accent-color);
}

.testimonial-stars {
  color: var(--accent-color);
  margin-bottom: 15px;
  text-align: left;
}

.testimonial-text {
  font-style: italic;
  text-align: left;
  line-height: 1.6;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.carousel-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 0, 79, 0.3);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: scale(1.2);
}

.trust-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--neutral-gray), #f8f9fa);
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid var(--accent-color);
  color: var(--text-dark);
}

.trust-badge i {
  color: var(--accent-color);
  margin-right: 8px;
}

/* Features Section */
.features {
  padding: 30px 0;
  background-color: var(--neutral-gray);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 20px;
  padding: 12px;
  background-color: rgba(26, 115, 232, 0.1);
  border-radius: 50%;
}

.feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Referral Banner */
.referral-banner {
  background-color: var(--accent-color);
  padding: 40px 0;
}

.referral-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.referral-text {
  font-size: 20px;
  font-weight: 600;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  text-align: center;
  background-color: var(--neutral-light);
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-darker) 0%, #1a1a1a 100%);
  color: var(--neutral-light);
  /* padding: 60px 0 0;
  margin-top: 80px; */
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--neutral-light);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.footer-brand-text {
  font-size: 16px;
  color: var(--neutral-light);
  margin-bottom: 20px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: 15px;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.trust-badge svg {
  flex-shrink: 0;
}

.trust-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
    /* margin-top: 60px; */
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    gap: 20px;
  }
  
  .footer-links a {
    font-size: 14px;
  }
  
  .trust-badge {
    justify-content: center;
  }
}

/* Animation Styles */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for multiple elements */
.steps .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.steps .animate-on-scroll:nth-child(2) { transition-delay: 0.3s; }
.steps .animate-on-scroll:nth-child(3) { transition-delay: 0.5s; }

.testimonial-cards .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.testimonial-cards .animate-on-scroll:nth-child(2) { transition-delay: 0.3s; }
.testimonial-cards .animate-on-scroll:nth-child(3) { transition-delay: 0.5s; }

.feature-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.feature-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.feature-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.feature-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 40px;
  }
  
  .hero-image {
    width: 45%;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 40px;
  }
  
  .hero-image {
    width: 80%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .referral-container {
    flex-direction: column;
    text-align: center;
  }
  
  .referral-text {
    margin-bottom: 20px;
  }
}

/* Gamified Progress Path */
.progress-path {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 60px 0;
  position: relative;
}

.step-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  max-width: 250px;
}

.step-number {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 800;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #FF004F, #6C63FF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(255, 0, 79, 0.3);
  transition: all 0.3s ease;
}

.step-icon i {
  font-size: 32px;
  color: white;
}

.step-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 0, 79, 0.4);
}

.pulse-animation {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(255, 0, 79, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 0, 79, 0.5);
  }
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-darker);
}

.step-description {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
}

.step-connector {
  position: absolute;
  top: 50%;
  right: -60px;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #FF004F, #6C63FF);
  transform: translateY(-50%);
  border-radius: 2px;
}

.step-container:last-child .step-connector {
  display: none;
}

/* Mini CTA */
.mini-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 0, 79, 0.1), rgba(108, 99, 255, 0.1));
  border-radius: 15px;
  border: 1px solid rgba(255, 0, 79, 0.2);
}

.mini-cta-text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-darker);
}

/* Responsive Progress Path */
@media (max-width: 768px) {
  .progress-path {
    flex-direction: column;
    gap: 30px;
  }
  
  .step-connector {
    display: none;
  }
  
  .step-container {
    max-width: 300px;
  }
}



/* Live Activity Feed */
.live-activity-feed {
  background: linear-gradient(135deg, rgba(255, 0, 79, 0.05), rgba(108, 99, 255, 0.05));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.live-activity-feed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FF004F" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%236C63FF" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

.activity-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.activity-item {
  background: white;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 79, 0.1);
  transition: all 0.3s ease;
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.activity-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.activity-item:nth-child(1) { animation-delay: 0.1s; }
.activity-item:nth-child(2) { animation-delay: 0.2s; }
.activity-item:nth-child(3) { animation-delay: 0.3s; }
.activity-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.activity-avatar {
  flex-shrink: 0;
}

.activity-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 0, 79, 0.2);
}

.activity-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.activity-text {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.4;
}

.activity-text strong {
  color: var(--text-darker);
  font-weight: 600;
}

.highlight {
  color: #FF004F;
  font-weight: 700;
  background: linear-gradient(45deg, #FF004F, #6C63FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.activity-time {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
}

/* Responsive Activity Feed */
@media (max-width: 768px) {
  .activity-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .activity-item {
    padding: 15px;
  }
  
  .activity-text {
    font-size: 13px;
  }
}

/* Trust Indicators */
.trust-indicators {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(108, 99, 255, 0.05));
  padding: 80px 0;
  border-top: 1px solid rgba(255, 107, 53, 0.1);
  position: relative;
}

.trust-indicators::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
  border: 2px solid rgba(255, 107, 53, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.6s ease;
}

.trust-item:hover::before {
  left: 100%;
}

.trust-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.4);
}

.trust-item i {
  font-size: 28px;
  color: var(--accent-color);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.trust-item span {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-darker);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, #FF004F, #6C63FF);
  padding: 100px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkle" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="25" r="0.5" fill="white" opacity="0.15"/><circle cx="25" cy="40" r="1.5" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkle)"/></svg>') repeat;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulse 2s infinite;
}

.urgency-icon {
  font-size: 18px;
  animation: bounce 1s infinite;
}

.urgency-text {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

.final-cta-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.final-cta-subtitle {
  font-size: 20px;
  margin-bottom: 50px;
  opacity: 0.9;
  line-height: 1.5;
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-color);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.final-cta-buttons {
  margin-top: 40px;
}

.btn-xl {
  font-size: 20px;
  padding: 20px 50px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  background: white;
  color: var(--primary-color);
  border: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 30px;
}

.btn-xl:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
  text-decoration: none;
}

.pulse-btn {
  animation: pulse 2s infinite;
}

.btn-text {
  display: block;
  font-weight: 800;
  font-size: 20px;
}

.btn-subtext {
  display: block;
  font-size: 14px;
  opacity: 0.7;
  margin-top: 5px;
}

.cta-guarantee {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

.cta-guarantee i {
  color: var(--accent-color);
  margin-right: 8px;
}

/* Responsive Final CTA */
@media (max-width: 768px) {
  .final-cta-title {
    font-size: 32px;
  }
  
  .final-cta-subtitle {
    font-size: 18px;
  }
  
  .cta-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .btn-xl {
    font-size: 18px;
    padding: 18px 40px;
  }
  
  .btn-text {
    font-size: 18px;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 20px 0;
  background: linear-gradient(135deg, rgba(255, 0, 79, 0.05), rgba(108, 99, 255, 0.05));
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,0,79,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-pattern)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.testimonials-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--text-darker);
  background: linear-gradient(135deg, #FF004F, #6C63FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.8s ease-out;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF004F, #6C63FF);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  border: 3px solid #FF004F;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-darker);
  margin: 0 0 5px 0;
}

.testimonial-stats {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-stats .stat {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.testimonial-stats .verified {
  color: #1DA1F2;
  font-size: 16px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 60px;
  color: rgba(255, 0, 79, 0.2);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: serif;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
}

.testimonial-rating i {
  color: #FFD700;
  font-size: 18px;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
  
  .testimonials-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }
  
  .testimonial-info h4 {
    font-size: 16px;
  }
  
  .testimonial-text {
    font-size: 15px;
  }
  
  /* New testimonial elements */
  .testimonial-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
  }
  
  .metric {
    background: rgba(0, 255, 204, 0.1);
    color: #00ffcc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 204, 0.3);
  }
  
  .rating-score {
    margin-left: 8px;
    color: #ffd700;
    font-weight: 600;
    font-size: 14px;
  }
  
  .testimonial-proof {
    margin-top: 15px;
  }
  
  .proof-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ffcc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 20px;
    background: rgba(0, 255, 204, 0.05);
    transition: all 0.3s ease;
  }
  
  .proof-link:hover {
    background: rgba(0, 255, 204, 0.1);
    border-color: rgba(0, 255, 204, 0.5);
    transform: translateY(-2px);
  }
  
  .proof-link i {
    font-size: 12px;
  }
  
  .join-date {
    font-size: 12px;
    color: #888;
    margin-left: 8px;
  }
}

/* Trusted by Creators Worldwide Section */
.engagement-real-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.engagement-real-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 0, 79, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(108, 99, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.engagement-real-section .section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
  font-weight: 400;
}

.real-engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

.real-point {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 45px 35px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.real-point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 0, 79, 0.05) 0%, 
    rgba(108, 99, 255, 0.03) 50%, 
    rgba(255, 107, 53, 0.02) 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.real-point:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 0, 79, 0.3);
  box-shadow: 0 20px 60px rgba(255, 0, 79, 0.15),
              0 8px 25px rgba(108, 99, 255, 0.1);
}

.real-point:hover::before {
  opacity: 1;
}

.real-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #FF004F 0%, #6C63FF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(255, 0, 79, 0.3);
  transition: all 0.4s ease;
}

.real-point:hover .real-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(255, 0, 79, 0.4);
}

.real-icon i {
  font-size: 2.2rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.real-point h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.real-point p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.real-point:hover .social-proof {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 0, 79, 0.2);
}

.proof-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FF004F, #6C63FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.proof-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Separator Lines */
.real-engagement-grid::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 204, 0.3) 50%, transparent 100%);
  transform: translateY(-50%);
  z-index: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .engagement-real-section {
    padding: 60px 0;
  }
  
  .real-engagement-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .real-point {
    padding: 30px 20px;
  }
  
  .real-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
}

/* Trust Logos Styling */
.trust-logos-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  padding: 10px 0;
  opacity: 0.8;
}

.trust-logos-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 20px 0;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-logo-item:hover {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.trust-logo-item svg {
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.trust-logo-item:hover svg {
  transform: scale(1.1);
}

.trust-logos-hero .trust-logo-item {
  font-size: 12px;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
}

.trust-logos-hero .trust-logo-item span {
  font-weight: 500;
}

.trust-logos-footer .trust-logo-item {
  font-size: 14px;
  font-weight: 500;
}

/* Responsive Trust Logos */
@media (max-width: 768px) {
  .trust-logos-hero {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
  }
  
  .trust-logos-footer {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .trust-logo-item {
    font-size: 13px;
    gap: 6px;
  }
  
  .trust-logos-hero .trust-logo-item {
    font-size: 11px;
    gap: 5px;
  }
  
  .trust-logos-footer .trust-logo-item {
    font-size: 13px;
  }
  
  .privacy-microcopy {
    font-size: 13px;
    margin-top: 15px;
  }
  
  .privacy-modal-content {
    margin: 10px;
    padding: 25px;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .privacy-modal h3 {
    font-size: 20px;
  }
  
  .privacy-modal p {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .trust-logos-hero,
  .trust-logos-footer {
    /* flex-direction: column;
    gap: 10px; */
  }
  
  .trust-logo-item {
    font-size: 12px;
    justify-content: center;
  }
  
  .trust-logo-item span {
    display: none;
  }
  
  .privacy-microcopy {
    font-size: 12px;
    text-align: center;
  }
  
  .privacy-modal-content {
    margin: 5px;
    padding: 20px;
  }
}

/* Privacy Microcopy Styling */
.privacy-microcopy {
  margin-top: 15px;
  text-align: center;
}

.privacy-microcopy p {
  font-size: 14px;
  color: #b0bcc7;
  margin: 0;
  line-height: 1.4;
}

.privacy-microcopy a {
  color: #00ffcc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.privacy-microcopy a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.privacy-microcopy-bottom {
  margin-top: 15px;
  text-align: center;
}

.privacy-microcopy-bottom p {
  font-size: 13px;
  color: #8a9ba8;
  margin: 0;
  line-height: 1.4;
}

.privacy-microcopy-bottom a {
  color: #00ffcc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.privacy-microcopy-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Privacy Modal Styling */
.privacy-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.privacy-modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  margin: 5% auto;
  padding: 0;
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.privacy-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(0, 255, 204, 0.2);
  background: linear-gradient(90deg, rgba(0, 255, 204, 0.1) 0%, transparent 100%);
}

.privacy-modal-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(45deg, #00ffcc, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-modal-close {
  color: #b0bcc7;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.privacy-modal-close:hover {
  color: #00ffcc;
}

.privacy-modal-body {
  padding: 30px;
}

.privacy-point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(0, 255, 204, 0.05);
  border-radius: 10px;
  border-left: 3px solid #00ffcc;
  transition: all 0.3s ease;
}

.privacy-point:hover {
  background: rgba(0, 255, 204, 0.1);
  transform: translateX(5px);
}

.privacy-point:last-child {
  margin-bottom: 0;
}

.privacy-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.2), rgba(0, 255, 204, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 255, 204, 0.3);
}

.privacy-text h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.privacy-text p {
  margin: 0;
  font-size: 15px;
  color: #b0bcc7;
  line-height: 1.5;
}

.privacy-modal-footer {
  padding: 25px 30px;
  border-top: 1px solid rgba(0, 255, 204, 0.2);
  display: flex;
  gap: 15px;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
}

.privacy-modal-footer .btn {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Responsive Privacy Modal */
@media (max-width: 768px) {
  .privacy-modal-content {
    margin: 10% auto;
    width: 95%;
    max-height: 85vh;
  }
  
  .privacy-modal-header {
    padding: 20px;
  }
  
  .privacy-modal-header h3 {
    font-size: 20px;
  }
  
  .privacy-modal-body {
    padding: 20px;
  }
  
  .privacy-point {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 15px;
  }
  
  .privacy-modal-footer {
    padding: 20px;
    flex-direction: column;
  }
  
  .privacy-modal-footer .btn {
    max-width: none;
  }
  
  .privacy-microcopy p {
    font-size: 13px;
  }
  
  .privacy-microcopy-bottom p {
    font-size: 12px;
  }
  
  .real-icon i {
    font-size: 24px;
  }
  
  .real-point h3 {
    font-size: 20px;
  }
  
  .real-point p {
    font-size: 15px;
  }
}

/* Accessibility and Keyboard Navigation Improvements */
.trust-logo-item:focus,
.trust-logo-item:focus-visible {
  outline: 2px solid #00ffcc;
  outline-offset: 2px;
  background-color: rgba(0, 255, 204, 0.1);
  border-radius: 8px;
}

.trust-logo-item:focus:not(:focus-visible) {
  outline: none;
}

.privacy-modal-close:focus,
.privacy-modal-close:focus-visible {
  outline: 2px solid #00ffcc;
  outline-offset: 2px;
  background-color: rgba(0, 255, 204, 0.1);
}

.privacy-modal-close:focus:not(:focus-visible) {
  outline: none;
}

/* Enhanced button styling for accessibility */
.privacy-modal-close {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.privacy-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ff4444;
}

/* Keyboard navigation for trust logos */
.trust-logo-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.trust-logo-item:hover,
.trust-logo-item:focus {
  transform: translateY(-2px);
  background-color: rgba(0, 255, 204, 0.1);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .trust-logo-item {
    border: 1px solid #00ffcc;
  }
  
  .privacy-modal-content {
    border: 2px solid #00ffcc;
  }
  
  .privacy-microcopy {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .trust-logo-item,
  .privacy-modal,
  .privacy-modal-content {
    transition: none;
    animation: none;
  }
  
  .trust-logo-item:hover,
  .trust-logo-item:focus {
    transform: none;
  }
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Contact page theming to match home page (CSS-only overrides) */
/* Use higher specificity and !important to override inline <style> on contact.ejs */
body .contact-hero {
  background: linear-gradient(135deg, #FF004F 0%, #6C63FF 100%) !important;
  color: #ffffff !important;
}

/* Wrapper spacing remains, but we can give the page a subtle themed backdrop if desired */
body .contact-wrapper {
  /* inherit grid layout; no change to structure */
}

/* Cards: match site card style with slight theme accents */
body .contact-card {
  background: #ffffff !important;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(255, 0, 79, 0.08), 0 2px 10px rgba(108, 99, 255, 0.06) !important;
  border: 1px solid rgba(255, 0, 79, 0.12) !important;
}

/* Headings and paragraph colors for readability */
body .contact-card h2 {
  color: var(--text-darker);
}
body .contact-card p {
  color: var(--text-dark) !important;
}

/* Links inside contact card: use home theme, not blue */
body .contact-card a {
  color: var(--primary-color) !important;
  text-decoration: none;
}
body .contact-card a:hover {
  color: #ff2a73 !important; /* slightly brighter than primary */
  text-decoration: underline;
}

/* Inputs and textarea: themed borders and focus */
body .contact-form input,
body .contact-form textarea {
  border: 1px solid rgba(255, 0, 79, 0.18) !important;
  box-shadow: 0 0 0 0 rgba(255, 0, 79, 0) !important;
}
body .contact-form input:focus,
body .contact-form textarea:focus {
  outline: none !important;
  border-color: #FF004F !important;
  box-shadow: 0 0 0 3px rgba(255, 0, 79, 0.15) !important;
}

/* Primary button already uses gradient; ensure hover glow matches home */
body .contact-form .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 79, 0.4);
}

/* Alerts on contact page: align with site accent rather than default blues */
body .alert.alert-success {
  background: rgba(0, 255, 136, 0.08) !important;
  color: #0f5132 !important;
  border: 1px solid rgba(0, 255, 136, 0.25) !important;
}
body .alert.alert-danger {
  background: rgba(234, 67, 53, 0.08) !important;
  color: #842029 !important;
  border: 1px solid rgba(234, 67, 53, 0.25) !important;
}

/* Legal pages theming (Privacy and Terms) to match home theme, remove blue accents */
/* Override inline styles in privacy.ejs and terms.ejs */
body .legal-hero {
  background: linear-gradient(135deg, #FF004F 0%, #6C63FF 100%) !important;
  color: #ffffff !important;
}

/* Container text and links styling */
body .legal-container a {
  color: var(--primary-color) !important;
  text-decoration: none;
}
body .legal-container a:hover {
  color: #ff2a73 !important;
  text-decoration: underline;
}

/* Section typography colors aligned with site theme */
body .legal-section h2 {
  color: var(--text-darker);
}
body .legal-section p,
body .legal-section li {
  color: var(--text-dark) !important;
}

/* Optional: subtle card-like feel for sections without changing layout */
/* Uncomment if you want boxed sections
body .legal-section {
  background: #ffffff;
  border: 1px solid rgba(255,0,79,0.12);
  border-radius: 12px;
  padding: 16px 18px;
}
*/

/* WhatsApp Sticky Icon */
.whatsapp-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px; /* Moved to right side */
  z-index: 1000;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  animation: whatsapp-bounce 3s infinite ease-in-out;
  overflow: hidden;
}

.whatsapp-sticky::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

.whatsapp-sticky::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: whatsapp-ripple 2s infinite 0.5s;
}

.whatsapp-sticky:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  animation: whatsapp-wiggle 0.5s ease-in-out;
}

.whatsapp-sticky i {
  color: white;
  font-size: 28px;
  animation: whatsapp-icon-glow 2s infinite alternate;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
}

.whatsapp-sticky:hover i {
  color: white;
  animation: whatsapp-icon-spin 0.6s ease-in-out;
}

/* Enhanced Animations */
@keyframes whatsapp-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(-8px) scale(1.05);
  }
  60% {
    transform: translateY(-4px) scale(1.02);
  }
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes whatsapp-ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

@keyframes whatsapp-wiggle {
  0%, 100% { transform: translateY(-5px) scale(1.1) rotate(0deg); }
  25% { transform: translateY(-5px) scale(1.1) rotate(-3deg); }
  75% { transform: translateY(-5px) scale(1.1) rotate(3deg); }
}

@keyframes whatsapp-icon-glow {
  0% {
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
  }
  100% {
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.6));
  }
}

@keyframes whatsapp-icon-spin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Floating notification badge */
.whatsapp-sticky .notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #ff4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  font-weight: bold;
  animation: whatsapp-badge-pulse 1.5s infinite;
  border: 2px solid white;
}

@keyframes whatsapp-badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Responsive adjustments for WhatsApp icon */
@media (max-width: 768px) {
  .whatsapp-sticky {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px; /* Moved to right side for mobile too */
  }
  
  .whatsapp-sticky i {
    font-size: 24px;
  }
  
  .whatsapp-sticky .notification-badge {
    width: 16px;
    height: 16px;
    font-size: 8px;
    top: -3px;
    right: -3px;
  }
}
