/*
Theme Name: Loveredi Dating App Premium
Theme URI: https://loverediapp.com
Author: Loveredi Team
Author URI: https://loverediapp.com
Description: Premium high-conversion landing page with advanced interactive effects, Elementor compatibility, and extensive customization options. Features 3D animations, particle effects, custom backgrounds, and a powerful admin panel.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: loveredi
Tags: landing-page, dating, one-page, custom-colors, responsive-design, elementor, interactive, premium

Loveredi Dating App Premium WordPress Theme, Copyright 2025
*/

/* ============================================
   CSS VARIABLES - PREMIUM EDITION
   ============================================ */
:root {
  /* Primary Brand Colors */
  --primary-magenta: #A100A1;
  --primary-cream: #E8D9D0;
  
  /* Magenta Variations */
  --magenta-light: #C84CC8;
  --magenta-dark: #7A007A;
  --magenta-glow: rgba(161, 0, 161, 0.25);
  
  /* Cream Variations */
  --cream-light: #F5EDE7;
  --cream-dark: #D4C4B8;
  
  /* Functional Colors */
  --accent-gold: #D4AF37;
  --neutral-dark: #2D2424;
  --neutral-gray: #8B7E74;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #A100A1 0%, #7A007A 100%);
  --gradient-hero: linear-gradient(135deg, #2D2424 0%, #A100A1 50%, #7A007A 100%);
  --gradient-accent: linear-gradient(45deg, #D4AF37 0%, #C84CC8 100%);
  --gradient-animated: linear-gradient(90deg, #A100A1, #C84CC8, #D4AF37, #C84CC8, #A100A1);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --section-padding: 100px;
  --section-padding-mobile: 60px;
  
  /* Animation Speeds (customizable via admin) */
  --animation-speed-fast: 0.3s;
  --animation-speed-medium: 0.6s;
  --animation-speed-slow: 1s;
  
  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: 10px;
}

/* Dark Mode Variables */
body.dark-mode {
  --primary-cream: #2D2424;
  --cream-light: #1a1515;
  --cream-dark: #3a3030;
  --neutral-dark: #E8D9D0;
  --neutral-gray: #D4C4B8;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--cream-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* WordPress Admin Bar Support */
#wpadminbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Adjust page content when admin bar is present */
.admin-bar #page {
  margin-top: 32px;
}

.admin-bar .hero-section {
  margin-top: 0;
}

@media screen and (max-width: 782px) {
  .admin-bar #page {
    margin-top: 46px;
  }
  
  .admin-bar .hero-section {
    margin-top: 0;
  }
}

/* Ensure page wrapper doesn't cover admin bar */
#page {
  position: relative;
  z-index: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--cream-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-magenta);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--magenta-dark);
}

/* ============================================
   CUSTOM CURSOR (Optional - Falls back to default cursor)
   ============================================ */
body.custom-cursor-enabled {
  cursor: auto; /* Changed from 'none' - now shows default cursor as fallback */
}

.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-magenta);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  z-index: 9998; /* Changed from 10000 to stay below admin bar */
  mix-blend-mode: difference;
}

.custom-cursor.hover {
  width: 50px;
  height: 50px;
  border-color: var(--accent-gold);
}

.custom-cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--primary-magenta);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
  z-index: 9997; /* Changed from 9999 to stay below admin bar */
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--gradient-accent);
  z-index: 9999;
  transition: width 0.1s ease;
  box-shadow: 0 2px 10px var(--magenta-glow);
}

/* ============================================
   GLASS MORPHISM UTILITY
   ============================================ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

/* Animated Gradient Text */
.gradient-text {
  background: var(--gradient-animated);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 6s ease infinite;
}

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

/* Typing Animation Text */
.typing-text {
  overflow: hidden;
  border-right: 3px solid var(--primary-magenta);
  white-space: nowrap;
  animation: typing 3.5s steps(40) 1s both, blink 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

a {
  color: var(--primary-magenta);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--magenta-dark);
}

/* ============================================
   BUTTONS & CTAs - MAGNETIC EFFECT
   ============================================ */
.btn {
  display: inline-block;
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 10px 30px var(--magenta-glow);
  animation: pulseGlow 2s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(161, 0, 161, 0.4);
}

.btn-secondary {
  background: var(--primary-cream);
  color: var(--primary-magenta);
  border: 2px solid var(--primary-magenta);
}

.btn-secondary:hover {
  background: var(--primary-magenta);
  color: white;
}

/* Magnetic Button Effect */
.btn-magnetic {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 10px 30px var(--magenta-glow);
  }
  50% {
    box-shadow: 0 10px 40px rgba(161, 0, 161, 0.5);
  }
}

/* ============================================
   PARTICLES BACKGROUND
   ============================================ */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* ============================================
   SECTION CONTAINER
   ============================================ */
.section {
  padding: var(--section-padding) 20px;
  position: relative;
  transition: background 0.3s ease;
}

/* Section Background Options */
.section.bg-gradient {
  background: var(--gradient-primary);
  color: white;
}

.section.bg-solid {
  background: var(--primary-cream);
}

.section.bg-image {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section.bg-video {
  position: relative;
  overflow: hidden;
}

.section.bg-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.3;
}

.section.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ============================================
   HERO SECTION - ENHANCED
   ============================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--gradient-hero);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  animation: gradientShift 15s ease infinite;
  z-index: 0;
}

@keyframes gradientShift {
  0%, 100% {
    background: linear-gradient(135deg, #2D2424 0%, #A100A1 50%, #7A007A 100%);
  }
  33% {
    background: linear-gradient(135deg, #1a1515 0%, #8a008a 50%, #5a005a 100%);
  }
  66% {
    background: linear-gradient(135deg, #3a3030 0%, #C84CC8 50%, #A100A1 100%);
  }
}

/* Animated gradient mesh */
.hero-section::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(161, 0, 161, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: 0;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Floating Hearts Animation */
.floating-hearts {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.floating-hearts .heart {
  position: absolute;
  font-size: 2rem;
  opacity: 0;
  animation: floatHeart 10s infinite ease-in;
}

.floating-hearts .heart:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  font-size: 1.5rem;
}

.floating-hearts .heart:nth-child(2) {
  left: 25%;
  animation-delay: 2s;
  font-size: 2.2rem;
}

.floating-hearts .heart:nth-child(3) {
  left: 40%;
  animation-delay: 4s;
  font-size: 1.8rem;
}

.floating-hearts .heart:nth-child(4) {
  left: 55%;
  animation-delay: 6s;
  font-size: 2.5rem;
}

.floating-hearts .heart:nth-child(5) {
  left: 70%;
  animation-delay: 1s;
  font-size: 1.6rem;
}

.floating-hearts .heart:nth-child(6) {
  left: 85%;
  animation-delay: 3s;
  font-size: 2rem;
}

.floating-hearts .heart:nth-child(7) {
  left: 15%;
  animation-delay: 5s;
  font-size: 1.7rem;
}

.floating-hearts .heart:nth-child(8) {
  left: 90%;
  animation-delay: 7s;
  font-size: 2.3rem;
}

@keyframes floatHeart {
  0% {
    bottom: -10%;
    opacity: 0;
    transform: translateX(0) rotate(0deg);
  }
  10% {
    opacity: 0.7;
  }
  50% {
    transform: translateX(50px) rotate(180deg);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    bottom: 110%;
    opacity: 0;
    transform: translateX(-50px) rotate(360deg);
  }
}


.hero-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 30px;
  animation: logoFloat 3s ease-in-out infinite, clinksOnLoad 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-logo:hover {
  transform: scale(1.1) rotate(5deg);
}

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

@keyframes clinksOnLoad {
  0% { transform: scale(0.5) rotate(-10deg); opacity: 0; }
  60% { transform: scale(1.1) rotate(5deg); }
  80% { transform: scale(0.95) rotate(-2deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.hero-headline {
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 1s both;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  opacity: 1;
}

.hero-subheadline {
  font-size: 1.4rem;
  margin-bottom: 40px;
  font-family: var(--font-primary);
  font-weight: 300;
  opacity: 1;
  color: #ffffff;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.hero-cta {
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 1.4s both;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease-out 1.6s both;
}

.trust-badge {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 1;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.25);
}

.trust-badge::before {
  content: "";
  font-weight: bold;
  color: transparent;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 10px;
  background: white;
  border-radius: 3px;
  animation: scroll-down 2s infinite;
}

.scroll-indicator::after {
  content: "";
  font-size: 0;
  color: transparent;
}

@keyframes scroll-down {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-15px); }
  60% { transform: translateX(-50%) translateY(-10px); }
}

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

/* ============================================
   HERO TRANSPARENT WAITLIST FORM
   ============================================ */
.hero-waitlist-form {
  max-width: 500px;
  margin: 0 auto 40px;
  padding: 40px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease-out 1.4s both;
}

.hero-waitlist-form h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: white;
  font-weight: 700;
  font-family: var(--font-accent);
}

.hero-waitlist-form > p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.hero-waitlist-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.hero-waitlist-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: white;
  font-size: 0.95rem;
}

.hero-waitlist-form .form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.hero-waitlist-form .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.hero-waitlist-form .form-group input:focus {
  outline: none;
  border-color: #D4AF37;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.hero-waitlist-form .form-submit {
  width: 100%;
  padding: 16px;
  background: #E8D9D0;
  color: #2D2424;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 217, 208, 0.4);
  font-family: var(--font-primary);
  text-transform: none;
  letter-spacing: 0;
}

.hero-waitlist-form .form-submit:hover {
  background: #F0E5DC;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 217, 208, 0.5);
}

.hero-waitlist-form .form-submit:active {
  transform: translateY(0);
}

.hero-waitlist-form .form-privacy {
  margin-top: 15px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 0;
}

.hero-waitlist-form .form-success-message {
  display: none;
  padding: 20px;
  background: rgba(76, 175, 80, 0.2);
  border: 2px solid rgba(76, 175, 80, 0.5);
  border-radius: 10px;
  color: white;
  text-align: center;
  margin-top: 20px;
}

/* ============================================
   3D TILT EFFECT FOR CARDS
   ============================================ */
.card-3d {
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

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

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
  background: var(--primary-cream);
  text-align: center;
  padding: var(--section-padding) 20px;
  position: relative;
}

.mission-statement {
  font-size: 2.2rem;
  font-family: var(--font-accent);
  color: var(--neutral-dark);
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.5;
}

.mission-statement .heart-emoji {
  font-size: 2.5rem;
  display: inline-block;
  animation: heartPulse 2s ease-in-out infinite;
  color: var(--primary-magenta);
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.mission-elaboration {
  font-size: 1.2rem;
  color: var(--neutral-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   PROBLEM/SOLUTION SECTION
   ============================================ */
.problem-solution-section {
  background: white;
  padding: var(--section-padding) 20px;
}

.problem-solution-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.problem-box, .solution-box {
  padding: 50px 40px;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  position: relative;
}

.problem-box::before, .solution-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 3px;
  background: linear-gradient(45deg, transparent, rgba(161, 0, 161, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.problem-box:hover::before, .solution-box:hover::before {
  opacity: 1;
}

.problem-box {
  background: linear-gradient(135deg, #ffe0e0 0%, #ffcccb 100%);
  border-left: 5px solid #ff6b6b;
}

.solution-box {
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--primary-cream) 100%);
  border-left: 5px solid var(--primary-magenta);
}

.problem-box:hover, .solution-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.problem-box h2, .solution-box h2 {
  margin-bottom: 30px;
  color: var(--neutral-dark);
}

.problem-list, .solution-list {
  list-style: none;
}

.problem-list li, .solution-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1rem;
  animation: slideInLeft 0.6s ease both;
}

.problem-list li:nth-child(1) { animation-delay: 0.1s; }
.problem-list li:nth-child(2) { animation-delay: 0.2s; }
.problem-list li:nth-child(3) { animation-delay: 0.3s; }
.problem-list li:nth-child(4) { animation-delay: 0.4s; }
.problem-list li:nth-child(5) { animation-delay: 0.5s; }
.problem-list li:nth-child(6) { animation-delay: 0.6s; }

.solution-list li:nth-child(1) { animation-delay: 0.1s; }
.solution-list li:nth-child(2) { animation-delay: 0.2s; }
.solution-list li:nth-child(3) { animation-delay: 0.3s; }
.solution-list li:nth-child(4) { animation-delay: 0.4s; }
.solution-list li:nth-child(5) { animation-delay: 0.5s; }
.solution-list li:nth-child(6) { animation-delay: 0.6s; }

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

.problem-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: bold;
  font-size: 1.3rem;
}

.solution-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-magenta);
  font-weight: bold;
  font-size: 1.3rem;
}

/* ============================================
   FEATURES SECTION - GLASS CARDS
   ============================================ */
.features-section {
  background: var(--cream-light);
  padding: var(--section-padding) 20px;
  text-align: center;
  position: relative;
}

.features-section h2 {
  margin-bottom: 60px;
  color: var(--neutral-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid var(--primary-magenta);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(161, 0, 161, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.feature-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 60px rgba(161, 0, 161, 0.2);
}

/* Glass effect variant */
.feature-card.glass-effect {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
  color: var(--primary-magenta);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--neutral-gray);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ============================================
   LIVE STATS COUNTER
   ============================================ */
.live-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  min-width: 200px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-magenta);
  font-family: var(--font-accent);
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: var(--neutral-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SOCIAL PROOF NOTIFICATIONS
   ============================================ */
.social-proof-notification {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 9998;
  transform: translateX(-400px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 350px;
}

.social-proof-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.social-proof-notification .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.social-proof-notification .content {
  flex: 1;
}

.social-proof-notification .name {
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 5px;
}

.social-proof-notification .action {
  font-size: 0.9rem;
  color: var(--neutral-gray);
}

.social-proof-notification .time {
  font-size: 0.8rem;
  color: var(--neutral-gray);
  margin-top: 5px;
}

/* ============================================
   DARK MODE TOGGLE
   ============================================ */
.dark-mode-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9997;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dark-mode-toggle:hover {
  transform: scale(1.05);
}

.dark-mode-toggle .icon {
  font-size: 1.2rem;
  transition: transform 0.5s ease;
}

.dark-mode-toggle.active .icon {
  transform: rotate(180deg);
}

/* ============================================
   COUNTDOWN TIMER
   ============================================ */
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
  min-width: 100px;
}

.countdown-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-magenta);
  font-family: var(--font-accent);
  display: block;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.countdown-label {
  font-size: 0.9rem;
  color: var(--neutral-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   CONFETTI CANVAS
   ============================================ */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10000;
}

/* ============================================
   PHILOSOPHY, TRUST, FAQ, CTA SECTIONS
   (Keeping previous styles with enhancements)
   ============================================ */
.philosophy-section {
  background: white;
  padding: var(--section-padding) 20px;
}

.philosophy-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-section h2 {
  color: var(--primary-magenta);
  margin-bottom: 40px;
}

.philosophy-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--neutral-dark);
  text-align: left;
  margin-bottom: 25px;
}

.philosophy-highlight {
  background: var(--primary-cream);
  padding: 30px 40px;
  border-radius: 15px;
  border-left: 5px solid var(--primary-magenta);
  margin: 40px 0;
  font-style: italic;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.philosophy-highlight:hover {
  transform: translateX(10px);
  box-shadow: -10px 0 30px rgba(161, 0, 161, 0.1);
}

.trust-section {
  background: var(--neutral-dark);
  color: var(--cream-light);
  padding: var(--section-padding) 20px;
  text-align: center;
}

.trust-section h2 {
  color: white;
  margin-bottom: 40px;
}

.trust-content {
  max-width: 800px;
  margin: 0 auto;
}

.trust-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--cream-light);
  margin-bottom: 25px;
}

.trust-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.trust-principle {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.trust-principle:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.trust-principle h4 {
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.faq-section {
  background: var(--cream-light);
  padding: var(--section-padding) 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 60px;
  color: var(--neutral-dark);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(161, 0, 161, 0.1);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--neutral-dark);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-magenta);
  background: rgba(161, 0, 161, 0.05);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-magenta);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 30px;
  color: var(--neutral-gray);
  font-size: 1.05rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.final-cta-section {
  background: var(--gradient-primary);
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::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 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
  background-size: cover;
  opacity: 0.3;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.final-cta-section p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Email form styles... (keeping previous) */
.email-form {
  max-width: 550px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.email-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.email-form h3 {
  color: var(--neutral-dark);
  margin-bottom: 10px;
  text-align: center;
}

.email-form p {
  color: var(--neutral-gray);
  text-align: center;
  margin-bottom: 30px;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--neutral-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-magenta);
  box-shadow: 0 0 0 3px var(--magenta-glow);
  transform: translateY(-2px);
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--magenta-glow);
}

.form-privacy {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--neutral-gray);
  text-align: center;
}

.form-success-message {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
  border: 1px solid #c3e6cb;
  animation: successPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.form-success-message.show {
  display: block;
}

/* Footer styles... (keeping previous with enhancements) */
.site-footer {
  background: var(--neutral-dark);
  color: var(--cream-light);
  padding: 60px 20px 30px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 20px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-tagline {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--primary-magenta);
  transform: translateY(-5px) rotate(360deg);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-links a {
  color: var(--cream-light);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-magenta);
  transform: translateY(-2px);
}

.footer-copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .hero-headline {
    font-size: 2.5rem;
  }
  
  .hero-subheadline {
    font-size: 1.2rem;
  }
  
  .hero-logo {
    max-width: 220px;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 15px;
  }
  
  .problem-solution-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-statement {
    font-size: 1.8rem;
  }
  
  .email-form {
    padding: 30px 20px;
  }
  
  .final-cta-section h2 {
    font-size: 2.2rem;
  }
  
  .final-cta-section p {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 15px 35px;
    font-size: 1rem;
  }
  
  .live-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .countdown-timer {
    gap: 15px;
  }
  
  .countdown-value {
    font-size: 2rem;
    padding: 15px;
  }
  
  .social-proof-notification {
    left: 15px;
    right: 15px;
    bottom: 15px;
    max-width: calc(100% - 30px);
  }
  
  .dark-mode-toggle {
    top: 10px;
    right: 10px;
    padding: 10px 15px;
  }
  
  .custom-cursor,
  .custom-cursor-trail {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }
  
  .hero-logo {
    max-width: 180px;
  }
  
  .mission-statement {
    font-size: 1.5rem;
  }
  
  .problem-box, .solution-box {
    padding: 30px 25px;
  }
  
  .trust-principles {
    grid-template-columns: 1fr;
  }
  
  .live-stats {
    flex-direction: column;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus-visible {
  outline: 3px solid var(--primary-magenta);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 3px;
}

/* ============================================
   PERFORMANCE OPTIMIZATION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .custom-cursor,
  .custom-cursor-trail {
    display: none;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .hero-section,
  .scroll-indicator,
  .email-form,
  .site-footer,
  .dark-mode-toggle,
  .social-proof-notification,
  .scroll-progress-bar,
  .custom-cursor,
  #confetti-canvas,
  #particles-js {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* ============================================
   ELEMENTOR COMPATIBILITY
   ============================================ */
.elementor-section {
  position: relative;
}

.elementor-widget-wrap {
  position: relative;
  z-index: 1;
}

/* Ensure Elementor editor works properly */
.elementor-editor-active {
  overflow: visible !important;
}

.elementor-editor-active .custom-cursor {
  display: none;
}