/* Upskayl Modern SaaS Theme */
:root {
  /* Brand Colors */
  --primary: #FF4C33;
  --primary-hover: #E63E2A;
  --primary-light: #FF6B52;
  
  /* Base Colors - Light Mode */
  --background: #FFFFFF;
  --surface: #F8F9FA;
  --foreground: #1A1A1A;
  --muted: #6B7280;
  --border: #E5E7EB;
  --success: #10B981;
  --warning: #F59E0B;
  
  /* Light Mode Text Colors */
  --text-primary: #1A1A1A;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --text-inverse: #FFFFFF;
  
  /* Light Mode Backgrounds */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F9FAFB;
  --bg-tertiary: #F3F4F6;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Dark Mode */
[data-theme="dark"] {
  /* Base Colors - Dark Mode */
  --background: #0A0B0D;
  --surface: #1A1B1E;
  --foreground: #FFFFFF;
  --muted: #A1A1AA;
  --border: #27272A;
  --success: #00D9FF;
  --warning: #FFB800;
  
  /* Dark Mode Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #D1D5DB;
  --text-muted: #9CA3AF;
  --text-inverse: #1A1A1A;
  
  /* Dark Mode Backgrounds */
  --bg-primary: #0A0B0D;
  --bg-secondary: #1A1B1E;
  --bg-tertiary: #27272A;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans) !important;
  color: var(--text-primary) !important;
  background-color: var(--bg-primary) !important;
  line-height: 1.6 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  transition: color 0.3s ease, background-color 0.3s ease !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: var(--text-primary) !important;
  transition: color 0.3s ease !important;
}

h1 { font-size: 3.5rem !important; }
h2 { font-size: 2.5rem !important; }
h3 { font-size: 2rem !important; }
h4 { font-size: 1.5rem !important; }
h5 { font-size: 1.25rem !important; }
h6 { font-size: 1rem !important; }

/* General Text Elements */
p, .lead, .text-muted, .small {
  color: var(--text-secondary) !important;
  transition: color 0.3s ease !important;
}

.text-primary { 
  color: var(--text-primary) !important; 
}

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

a:hover {
  color: var(--primary-hover) !important;
  text-decoration: underline !important;
}

p {
  color: var(--muted) !important;
  font-size: 1.1rem !important;
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 46, 0.9) 100%) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.navbar-brand {
  font-weight: 800 !important;
  font-size: 1.5rem !important;
  color: white !important;
  transition: all 0.3s ease !important;
}

.navbar-brand:hover {
  color: #FF4C33 !important;
  transform: scale(1.05) !important;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  padding: 0.75rem 1.25rem !important;
  border-radius: 12px !important;
  margin: 0 0.25rem !important;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, rgba(255, 76, 51, 0.2), rgba(0, 212, 255, 0.2));
  border-radius: 12px;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.navbar-nav .nav-link:hover {
  color: white !important;
  backdrop-filter: blur(10px) !important;
}

.navbar-nav .nav-link:hover::before {
  width: 100%;
  height: 100%;
}

.navbar-nav .nav-link.active {
  color: white !important;
  background: linear-gradient(135deg, rgba(255, 76, 51, 0.3), rgba(0, 212, 255, 0.3)) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 4px 12px rgba(255, 76, 51, 0.2) !important;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: white !important;
  font-weight: 600 !important;
  border-radius: var(--radius) !important;
  padding: 12px 24px !important;
  transition: all 0.2s ease !important;
  border: none !important;
  font-size: 1rem !important;
}

.btn-primary:hover {
  background-color: var(--primary-hover) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-lg) !important;
}

.btn-outline-primary {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  background: transparent !important;
  font-weight: 600 !important;
  border-radius: var(--radius) !important;
  padding: 12px 24px !important;
  transition: all 0.2s ease !important;
}

.btn-outline-primary:hover {
  background-color: var(--primary) !important;
  color: white !important;
  transform: translateY(-2px) !important;
}

.btn-lg {
  padding: 16px 32px !important;
  font-size: 1.1rem !important;
  border-radius: var(--radius-lg) !important;
}

/* Cards */
.card {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all 0.3s ease !important;
  background: var(--background) !important;
  overflow: hidden !important;
}

.card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-xl) !important;
}

.card-body {
  padding: var(--spacing-xl) !important;
}

/* Hero Sections */
/* Hero Section - Base Styles */
.hero-section {
  padding: 160px 0 !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  transition: all 0.3s ease !important;
}

/* Hero Section - Light Mode */
:root .hero-section,
[data-theme="light"] .hero-section {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F1F5F9 100%) !important;
  color: var(--text-primary) !important;
}

/* Hero Section - Dark Mode */
[data-theme="dark"] .hero-section {
  background: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 50%, #16213E 100%) !important;
  color: var(--text-primary) !important;
}

/* Light Mode Hero Effects */
:root .hero-section::before,
[data-theme="light"] .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 76, 51, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  animation: gradientShift 8s ease-in-out infinite;
  z-index: 1;
}

/* Dark Mode Hero Effects */
[data-theme="dark"] .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 76, 51, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
  animation: gradientShift 8s ease-in-out infinite;
  z-index: 1;
}

/* Floating Orbs */
.hero-section::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 76, 51, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.8; transform: scale(1.05) rotate(180deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

/* Hero Title - Base Styles (Fallback for all browsers) */
.hero-title {
  font-size: 5rem !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  margin-bottom: var(--spacing-xl) !important;
  position: relative !important;
  z-index: 10 !important;
  animation: titleGlow 3s ease-in-out infinite alternate !important;
}

/* Hero Title - Light Mode Fallback */
:root .hero-title,
[data-theme="light"] .hero-title,
html[data-theme="light"] .hero-title {
  color: var(--text-primary) !important;
  text-shadow: 0 2px 20px rgba(255, 76, 51, 0.2) !important;
}

/* Hero Title - Dark Mode Fallback */
[data-theme="dark"] .hero-title,
html[data-theme="dark"] .hero-title {
  color: var(--text-primary) !important;
  text-shadow: 0 0 40px rgba(255, 76, 51, 0.3) !important;
}

/* Note: Gradient text effects removed for better browser compatibility and reliability */
/* The hero title now uses solid colors that are theme-responsive and always visible */

@keyframes titleGlow {
  0% { filter: drop-shadow(0 0 20px rgba(255, 76, 51, 0.3)); }
  100% { filter: drop-shadow(0 0 40px rgba(255, 76, 51, 0.6)); }
}

/* Hero Subtitle - Base Styles */
.hero-subtitle {
  font-size: 1.4rem !important;
  margin-bottom: var(--spacing-2xl) !important;
  max-width: 700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  position: relative !important;
  z-index: 10 !important;
}

/* Hero Subtitle - Light Mode */
:root .hero-subtitle,
[data-theme="light"] .hero-subtitle,
html[data-theme="light"] .hero-subtitle {
  color: var(--text-secondary) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

/* Hero Subtitle - Dark Mode */
[data-theme="dark"] .hero-subtitle,
html[data-theme="dark"] .hero-subtitle {
  color: rgba(255, 255, 255, 0.8) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

/* Hero Content Container */
.hero-section .container {
  position: relative !important;
  z-index: 10 !important;
}

/* Hero Buttons Enhancement - Base Styles */
.hero-section .btn {
  position: relative !important;
  z-index: 10 !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.hero-section .btn:hover {
  transform: translateY(-3px) scale(1.05) !important;
}

/* Hero Buttons - Light Mode */
:root .hero-section .btn,
[data-theme="light"] .hero-section .btn,
html[data-theme="light"] .hero-section .btn {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

:root .hero-section .btn-primary,
[data-theme="light"] .hero-section .btn-primary,
html[data-theme="light"] .hero-section .btn-primary {
  background: linear-gradient(135deg, #FF4C33 0%, #FF6B52 100%) !important;
  color: white !important;
  font-weight: 600 !important;
  border: none !important;
}

:root .hero-section .btn-outline-primary,
[data-theme="light"] .hero-section .btn-outline-primary,
html[data-theme="light"] .hero-section .btn-outline-primary {
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
}

:root .hero-section .btn:hover,
[data-theme="light"] .hero-section .btn:hover,
html[data-theme="light"] .hero-section .btn:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Hero Buttons - Dark Mode */
[data-theme="dark"] .hero-section .btn,
html[data-theme="dark"] .hero-section .btn {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .hero-section .btn-primary,
html[data-theme="dark"] .hero-section .btn-primary {
  background: linear-gradient(135deg, #FF4C33 0%, #FF6B52 100%) !important;
  color: white !important;
  font-weight: 600 !important;
  border: none !important;
}

[data-theme="dark"] .hero-section .btn-outline-primary,
html[data-theme="dark"] .hero-section .btn-outline-primary {
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

[data-theme="dark"] .hero-section .btn:hover,
html[data-theme="dark"] .hero-section .btn:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Social Proof */
.social-proof {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
  padding: var(--spacing-2xl) 0 !important;
  backdrop-filter: blur(20px) !important;
  border: none !important;
  position: relative !important;
  margin-top: -100px !important;
  z-index: 100 !important;
}

.social-proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 76, 51, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

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

.social-proof .col-md-4 {
  position: relative !important;
  padding: var(--spacing-lg) !important;
}

.stat-number {
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  color: var(--primary) !important;
  display: block !important;
  position: relative !important;
  z-index: 10 !important;
  filter: drop-shadow(0 0 10px rgba(255, 76, 51, 0.3)) !important;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  position: relative !important;
  z-index: 10 !important;
  margin-top: var(--spacing-sm) !important;
}

/* Glassmorphism Card for Each Stat */
.social-proof .col-md-4::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 1;
  transition: all 0.3s ease;
}

.social-proof .col-md-4:hover::after {
  background: linear-gradient(135deg, rgba(255, 76, 51, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 76, 51, 0.2);
}

/* Feature Cards */
/* Feature Cards - Base Styles */
.feature-card {
  text-align: center !important;
  padding: var(--spacing-2xl) !important;
  height: 100% !important;
  position: relative !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Feature Cards - Light Mode */
:root .feature-card,
[data-theme="light"] .feature-card,
html[data-theme="light"] .feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
  color: var(--text-primary) !important;
}

/* Feature Cards - Dark Mode */
[data-theme="dark"] .feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
  color: var(--text-primary) !important;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF4C33, #00D4FF, #8B5CF6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Feature Cards Hover - Light Mode */
:root .feature-card:hover,
[data-theme="light"] .feature-card:hover,
html[data-theme="light"] .feature-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.95) 100%) !important;
  border: 1px solid rgba(255, 76, 51, 0.2) !important;
}

/* Feature Cards Hover - Dark Mode */
[data-theme="dark"] .feature-card:hover {
  transform: translateY(-12px) rotateY(5deg) !important;
  box-shadow: 0 20px 60px rgba(255, 76, 51, 0.15) !important;
  background: linear-gradient(135deg, rgba(255, 76, 51, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%) !important;
  border: 1px solid rgba(255, 76, 51, 0.3) !important;
}

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

.feature-icon {
  font-size: 4rem !important;
  margin-bottom: var(--spacing-lg) !important;
  display: block !important;
  position: relative !important;
  z-index: 10 !important;
  transition: all 0.3s ease !important;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotateY(10deg) !important;
  filter: drop-shadow(0 0 20px currentColor) !important;
}

/* Feature Card Text - Light Mode */
:root .feature-card h4,
[data-theme="light"] .feature-card h4,
html[data-theme="light"] .feature-card h4 {
  color: var(--text-primary) !important;
  margin-bottom: var(--spacing-md) !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  position: relative !important;
  z-index: 10 !important;
}

:root .feature-card p,
[data-theme="light"] .feature-card p,
html[data-theme="light"] .feature-card p {
  color: var(--text-secondary) !important;
  opacity: 1 !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  position: relative !important;
  z-index: 10 !important;
}

/* Feature Card Text - Dark Mode */
[data-theme="dark"] .feature-card h4 {
  color: var(--text-primary) !important;
  margin-bottom: var(--spacing-md) !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  position: relative !important;
  z-index: 10 !important;
}

[data-theme="dark"] .feature-card p {
  color: var(--text-secondary) !important;
  opacity: 0.9 !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  position: relative !important;
  z-index: 10 !important;
}

.feature-card .text-primary {
  color: var(--primary) !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
}

/* Pricing Cards */
.pricing-card {
  position: relative !important;
  text-align: center !important;
}

.pricing-card.popular {
  border: 2px solid var(--primary) !important;
  transform: scale(1.05) !important;
  position: relative !important;
}

.pricing-card.popular::before {
  content: 'Most Popular' !important;
  position: absolute !important;
  top: -1px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: var(--primary) !important;
  color: white !important;
  padding: 8px 24px !important;
  border-radius: 0 0 var(--radius) var(--radius) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
}

.price {
  font-size: 3rem !important;
  font-weight: 800 !important;
  color: var(--foreground) !important;
}

.price-period {
  color: var(--muted) !important;
  font-size: 1rem !important;
}

/* Testimonials */
.testimonial-card {
  background: var(--background) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  padding: var(--spacing-2xl) !important;
  text-align: center !important;
  position: relative !important;
}

.testimonial-quote {
  font-size: 1.2rem !important;
  font-style: italic !important;
  color: var(--foreground) !important;
  margin-bottom: var(--spacing-lg) !important;
}

.testimonial-author {
  font-weight: 600 !important;
  color: var(--foreground) !important;
}

.testimonial-company {
  color: var(--muted) !important;
  font-size: 0.9rem !important;
}

/* Forms */
.form-control {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 12px 16px !important;
  font-size: 1rem !important;
  transition: all 0.2s ease !important;
  background: var(--background) !important;
}

.form-control:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(255, 76, 51, 0.1) !important;
  outline: none !important;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0,0,0);
  }
  40%, 43% {
    transform: translate3d(0, -8px, 0);
  }
  70% {
    transform: translate3d(0, -4px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out !important;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out !important;
}

.animate-bounce-hover:hover {
  animation: bounce 0.6s ease !important;
}

/* Scroll Reveal Animation System */
.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Advanced Mobile Optimizations */
@media (max-width: 768px) {
  /* Disable custom cursor on mobile */
  .custom-cursor { display: none !important; }
  body { cursor: auto !important; }
  
  /* Mobile-optimized hero */
  .hero-section {
    padding: 100px 0 !important;
    min-height: 80vh !important;
  }
  
  .hero-title {
    font-size: 2.8rem !important;
    line-height: 1.1 !important;
  }
  
  .hero-subtitle {
    font-size: 1.1rem !important;
    margin-bottom: var(--spacing-xl) !important;
  }
  
  /* Mobile button optimizations */
  .btn-lg {
    padding: 14px 28px !important;
    font-size: 1rem !important;
    width: 100% !important;
    max-width: 280px !important;
    margin-bottom: var(--spacing-md) !important;
  }
  
  /* Touch-friendly navigation */
  .navbar-nav .nav-link {
    padding: 1rem 1.5rem !important;
    margin: 0.25rem 0 !important;
    text-align: center !important;
  }
  
  /* Mobile card optimizations */
  .feature-card {
    padding: var(--spacing-lg) !important;
    margin-bottom: var(--spacing-lg) !important;
  }
  
  .feature-card:hover {
    transform: translateY(-5px) !important;
  }
  
  /* Mobile stats */
  .stat-number {
    font-size: 2.5rem !important;
  }
  
  /* Reduced particles on mobile for performance */
  .hero-section .particle:nth-child(n+4) {
    display: none;
  }
  
  /* Typography adjustments */
  h1 { font-size: 2.8rem !important; }
  h2 { font-size: 2.2rem !important; }
  h3 { font-size: 1.8rem !important; }
  h4 { font-size: 1.4rem !important; }
  
  /* Pricing card mobile */
  .pricing-card.popular {
    transform: none !important;
    margin-bottom: var(--spacing-lg) !important;
  }
  
  /* Mobile social proof */
  .social-proof {
    margin-top: -50px !important;
    padding: var(--spacing-xl) 0 !important;
  }
}

/* Utility Classes */
.text-primary { color: var(--primary) !important; }
.text-muted { color: var(--muted) !important; }
.bg-surface { background-color: var(--surface) !important; }
.border-primary { border-color: var(--primary) !important; }
.shadow-custom { box-shadow: var(--shadow-lg) !important; }

/* Loading States */
.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%) !important;
  background-size: 200% 100% !important;
  animation: loading 1.5s infinite !important;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Theme Toggle */
.theme-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
  margin: 0 1rem;
}

.theme-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.theme-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.theme-slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.2);
  z-index: 3;
}

input:checked + .theme-slider {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

input:checked + .theme-slider:before {
  transform: translateX(28px);
}

.theme-icon {
  font-size: 14px;
  color: #666;
  z-index: 2;
  transition: all 0.3s ease;
  opacity: 0.8;
}

input:checked + .theme-slider .theme-icon {
  color: white;
  opacity: 1;
}

.theme-slider .theme-icon:first-child {
  opacity: 1;
}

input:checked + .theme-slider .theme-icon:first-child {
  opacity: 0.5;
}

input:checked + .theme-slider .theme-icon:last-child {
  opacity: 1;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #FF4C33;
  background: linear-gradient(135deg, #FF4C33, #FF6B52);
  border: none;
  border-radius: 50%;
  color: white !important;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 76, 51, 0.3);
  pointer-events: auto;
  will-change: transform, opacity, box-shadow;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 76, 51, 0.4);
  background: linear-gradient(135deg, #E63E2A, #FF4C33);
  transition-delay: 0.05s;
}

.back-to-top:active {
  transform: translateY(-1px) scale(1.02);
  transition-duration: 0.1s;
}

/* Particle System for Hero Background */
.hero-section .particle {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 76, 51, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.hero-section .particle:nth-child(1) {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hero-section .particle:nth-child(2) {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 20%;
  animation-delay: 2s;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.8) 0%, transparent 70%);
}

.hero-section .particle:nth-child(3) {
  width: 8px;
  height: 8px;
  top: 40%;
  right: 15%;
  animation-delay: 4s;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.8) 0%, transparent 70%);
}

.hero-section .particle:nth-child(4) {
  width: 5px;
  height: 5px;
  top: 80%;
  left: 70%;
  animation-delay: 1s;
}

.hero-section .particle:nth-child(5) {
  width: 7px;
  height: 7px;
  top: 25%;
  right: 30%;
  animation-delay: 3s;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.6) 0%, transparent 70%);
}

/* Enhanced Animations */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Clean Button Hover Effects - Text Visibility Preserved */
.btn-primary {
  position: relative !important;
  overflow: hidden !important;
}

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

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

.btn-primary > * {
  position: relative;
  z-index: 1 !important;
}

/* Simplified Button Effect - No Text Disappearance */
@media (min-width: 768px) {
  .btn-primary:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 10px 30px rgba(255, 76, 51, 0.3) !important;
    transition: all 0.2s ease !important;
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(255, 76, 51, 0.5); }
  50% { box-shadow: 0 0 20px rgba(255, 76, 51, 0.8), 0 0 30px rgba(255, 76, 51, 0.4); }
}

/* Scroll-triggered animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Enhanced hover effects */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.hover-glow:hover {
  animation: glow 2s ease-in-out infinite;
}

.hover-pulse:hover {
  animation: pulse 1s ease-in-out infinite;
}

/* Loading button states */
.btn-loading {
  position: relative;
  pointer-events: none;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Dark mode transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Custom Cursor Effects */
body {
  cursor: none !important;
}

.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 76, 51, 0.8);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.2s ease, border-color 0.2s ease;
  transform: translate(-50%, -50%);
}

.custom-cursor::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #FF4C33;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-cursor.hover {
  transform: translate(-50%, -50%) scale(1.5);
  border-color: rgba(0, 212, 255, 0.8);
  background: rgba(255, 76, 51, 0.1);
}

/* Interactive Hover Zones */
.hover-zone {
  position: relative;
  transition: all 0.3s ease;
}

.hover-zone::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(255, 76, 51, 0.1) 0%, transparent 70%);
  opacity: 0;
  border-radius: inherit;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hover-zone:hover::before {
  opacity: 1;
}

/* Loading Ripple Effect */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-primary:active::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 0.6s linear;
}

/* Neon Glow Text Effect */
.neon-text {
  color: #fff;
  text-shadow: 
    0 0 5px currentColor,
    0 0 10px currentColor,
    0 0 15px currentColor,
    0 0 20px #FF4C33,
    0 0 35px #FF4C33,
    0 0 40px #FF4C33;
  animation: neonFlicker 2s ease-in-out infinite alternate;
}

@keyframes neonFlicker {
  0%, 100% { text-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor, 0 0 20px #FF4C33, 0 0 35px #FF4C33, 0 0 40px #FF4C33; }
  50% { text-shadow: 0 0 2px currentColor, 0 0 5px currentColor, 0 0 8px currentColor, 0 0 12px #FF4C33, 0 0 18px #FF4C33, 0 0 25px #FF4C33; }
}

/* Dark mode specific adjustments */
[data-theme="dark"] .navbar {
  background: rgba(10, 11, 13, 0.95) !important;
  backdrop-filter: blur(20px) !important;
}

[data-theme="dark"] .hero-section {
  background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
}

[data-theme="dark"] .social-proof {
  background: var(--surface) !important;
}

[data-theme="dark"] .card {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}

[data-theme="dark"] .btn-outline-primary {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

[data-theme="dark"] .btn-outline-primary:hover {
  background: var(--primary) !important;
  color: white !important;
}

/* Responsive back-to-top */
@media (max-width: 768px) {
  .back-to-top {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }
  
  .theme-toggle {
    width: 50px;
    height: 28px;
  }
  
  .theme-slider:before {
    height: 20px;
    width: 20px;
  }
  
  input:checked + .theme-slider:before {
    transform: translateX(22px);
  }
}

/* Key Features Section Enhancement - Base Styles */
.key-features-section {
  padding: 120px 0 !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

/* Key Features Section - Light Mode */
:root .key-features-section,
[data-theme="light"] .key-features-section,
html[data-theme="light"] .key-features-section {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F1F5F9 100%) !important;
}

/* Key Features Section - Dark Mode */
[data-theme="dark"] .key-features-section,
html[data-theme="dark"] .key-features-section {
  background: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 50%, #16213E 100%) !important;
}

/* Key Features Section Effects - Light Mode */
:root .key-features-section::before,
[data-theme="light"] .key-features-section::before,
html[data-theme="light"] .key-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 80%, rgba(255, 76, 51, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  animation: gradientShift 10s ease-in-out infinite;
  z-index: 1;
}

/* Key Features Section Effects - Dark Mode */
[data-theme="dark"] .key-features-section::before,
html[data-theme="dark"] .key-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 80%, rgba(255, 76, 51, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(0, 212, 255, 0.2) 0%, transparent 50%);
  animation: gradientShift 10s ease-in-out infinite;
  z-index: 1;
}

.key-features-section .container {
  position: relative !important;
  z-index: 10 !important;
}

.key-features-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
  backdrop-filter: blur(20px) !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
  padding: var(--spacing-2xl) !important;
  height: 100% !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-align: center !important;
}

.key-features-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF4C33, #00D4FF, #8B5CF6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.key-features-card:hover {
  transform: translateY(-12px) rotateY(5deg) !important;
  box-shadow: 0 20px 60px rgba(255, 76, 51, 0.15) !important;
  background: linear-gradient(135deg, rgba(255, 76, 51, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%) !important;
  border: 1px solid rgba(255, 76, 51, 0.3) !important;
}

.key-features-card:hover::before {
  opacity: 1;
}

.key-features-card h4 {
  color: white !important;
  margin-bottom: var(--spacing-md) !important;
  font-weight: 700 !important;
  font-size: 1.8rem !important;
  position: relative !important;
  z-index: 10 !important;
}

.key-features-card p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
  position: relative !important;
  z-index: 10 !important;
}

.key-features-card .feature-icon {
  font-size: 4rem !important;
  margin-bottom: var(--spacing-lg) !important;
  display: block !important;
  position: relative !important;
  z-index: 10 !important;
  transition: all 0.3s ease !important;
}

.key-features-card:hover .feature-icon {
  transform: scale(1.2) rotateY(10deg) !important;
  filter: drop-shadow(0 0 20px currentColor) !important;
}

/* CTA Section Enhancement */
/* CTA Section - Base Styles */
.cta-section {
  padding: 120px 0 !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

/* CTA Section - Light Mode */
:root .cta-section,
[data-theme="light"] .cta-section {
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 50%, #E2E8F0 100%) !important;
}

/* CTA Section - Dark Mode */
[data-theme="dark"] .cta-section {
  background: linear-gradient(135deg, #0A0B0D 0%, #1A1B1E 50%, #0F0F23 100%) !important;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 76, 51, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
  animation: gradientShift 8s ease-in-out infinite reverse;
  z-index: 1;
}

.cta-section .container {
  position: relative !important;
  z-index: 10 !important;
}

/* CTA Section Text - Light Mode */
:root .cta-section h2,
[data-theme="light"] .cta-section h2 {
  color: var(--text-primary) !important;
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  margin-bottom: var(--spacing-lg) !important;
  position: relative !important;
  z-index: 10 !important;
  transition: all 0.3s ease !important;
}

:root .cta-section .lead,
[data-theme="light"] .cta-section .lead {
  color: var(--text-secondary) !important;
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  position: relative !important;
  z-index: 10 !important;
}

/* CTA Section Text - Dark Mode */
[data-theme="dark"] .cta-section h2 {
  color: white !important;
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  margin-bottom: var(--spacing-lg) !important;
  text-shadow: 0 0 40px rgba(255, 76, 51, 0.3) !important;
  position: relative !important;
  z-index: 10 !important;
}

[data-theme="dark"] .cta-section .lead {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  position: relative !important;
  z-index: 10 !important;
}

.cta-section .small {
  color: rgba(255, 255, 255, 0.6) !important;
  position: relative !important;
  z-index: 10 !important;
}

/* Footer Enhancement */
/* Footer Section - Base Styles */
.footer-section {
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

/* Footer Section - Light Mode */
:root .footer-section,
[data-theme="light"] .footer-section {
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Footer Section - Dark Mode */
[data-theme="dark"] .footer-section {
  background: linear-gradient(135deg, #0A0B0D 0%, #1A1B1E 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 80%, rgba(255, 76, 51, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.footer-section .container {
  position: relative !important;
  z-index: 10 !important;
}

/* Footer Text - Light Mode */
:root .footer-section .text-white,
[data-theme="light"] .footer-section .text-white {
  color: var(--text-primary) !important;
  font-weight: 600 !important;
}

:root .footer-section .text-muted,
[data-theme="light"] .footer-section .text-muted {
  color: var(--text-secondary) !important;
  transition: color 0.3s ease !important;
}

:root .footer-section .text-muted:hover,
[data-theme="light"] .footer-section .text-muted:hover {
  color: var(--primary) !important;
}

/* Footer Text - Dark Mode */
[data-theme="dark"] .footer-section .text-white {
  color: white !important;
  font-weight: 600 !important;
}

[data-theme="dark"] .footer-section .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color 0.3s ease !important;
}

[data-theme="dark"] .footer-section .text-muted:hover {
  color: var(--primary) !important;
}

.footer-section hr {
  border-color: rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
  z-index: 10 !important;
}

/* Platform Preview Enhancement */
.platform-preview-section {
  background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%) !important;
  position: relative !important;
  overflow: hidden !important;
}

[data-theme="dark"] .platform-preview-section {
  background: linear-gradient(135deg, #1A1B1E 0%, #0F0F23 100%) !important;
}

.platform-preview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 75%, rgba(255, 76, 51, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.platform-preview-section .container {
  position: relative !important;
  z-index: 10 !important;
}

/* Contact Page Styling - Base Styles */
.contact-section {
  position: relative !important;
  overflow: hidden !important;
  min-height: auto !important;
  transition: all 0.3s ease !important;
}

/* Contact Section - Light Mode */
:root .contact-section,
[data-theme="light"] .contact-section,
html[data-theme="light"] .contact-section {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F1F5F9 100%) !important;
}

/* Contact Section - Dark Mode */
[data-theme="dark"] .contact-section,
html[data-theme="dark"] .contact-section {
  background: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 50%, #16213E 100%) !important;
}

/* Contact Section Effects - Light Mode */
:root .contact-section::before,
[data-theme="light"] .contact-section::before,
html[data-theme="light"] .contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 76, 51, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.02) 0%, transparent 50%);
  z-index: 1;
}

/* Contact Section Effects - Dark Mode */
[data-theme="dark"] .contact-section::before,
html[data-theme="dark"] .contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 76, 51, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.contact-section .container {
  position: relative !important;
  z-index: 10 !important;
}

/* Contact Cards - Base Styles */
.contact-card {
  border-radius: 24px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Contact Cards - Light Mode */
:root .contact-card,
[data-theme="light"] .contact-card,
html[data-theme="light"] .contact-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
}

/* Contact Cards - Dark Mode */
[data-theme="dark"] .contact-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

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

.contact-card h5,
.contact-card h4 {
  color: var(--foreground) !important;
  margin-bottom: var(--spacing-md) !important;
  font-weight: 700 !important;
  position: relative !important;
  z-index: 10 !important;
}

.contact-card p {
  color: var(--foreground) !important;
  opacity: 0.9 !important;
  position: relative !important;
  z-index: 10 !important;
}

/* Pricing Page Styling */
/* Pricing Cards - Base Styles */
.pricing-card {
  border-radius: 24px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Pricing Cards - Light Mode */
:root .pricing-card,
[data-theme="light"] .pricing-card,
html[data-theme="light"] .pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
}

/* Pricing Cards - Dark Mode */
[data-theme="dark"] .pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

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

.pricing-card h4 {
  color: var(--foreground) !important;
  margin-bottom: var(--spacing-sm) !important;
  font-weight: 700 !important;
  position: relative !important;
  z-index: 10 !important;
}

.pricing-card p {
  color: var(--foreground) !important;
  opacity: 0.9 !important;
  position: relative !important;
  z-index: 10 !important;
}

/* Improve list item visibility in glassmorphism cards */
.feature-card ul li,
.contact-card ul li,
.pricing-card ul li {
  color: var(--foreground) !important;
  opacity: 0.95 !important;
  margin-bottom: 0.75rem !important;
  position: relative !important;
  z-index: 10 !important;
}

.feature-card .text-success,
.contact-card .text-success,
.pricing-card .text-success {
  color: #10B981 !important;
  opacity: 1 !important;
}

/* Improve checkmark and icon visibility */
.feature-card [data-lucide="check"],
.contact-card [data-lucide="check"],
.pricing-card [data-lucide="check"] {
  color: #10B981 !important;
  opacity: 1 !important;
  width: 20px !important;
  height: 20px !important;
}

/* Improve small text readability */
.feature-card .text-muted,
.contact-card .text-muted,
.pricing-card .text-muted {
  color: var(--foreground) !important;
  opacity: 0.7 !important;
}

/* Cal.com Inline Calendar Styling */
#my-cal-inline-speak-to-us {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
  backdrop-filter: blur(15px) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
  overflow: hidden !important;
  position: relative !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#my-cal-inline-speak-to-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF4C33, #00D4FF, #8B5CF6);
  z-index: 1;
}

/* Cal.com iframe responsive styling */
#my-cal-inline-speak-to-us iframe {
  border-radius: 16px !important;
  border: none !important;
  background: transparent !important;
}

/* Enhanced Cal.com Brand Integration */
#my-cal-inline-speak-to-us .cal-brand-color,
#my-cal-inline-speak-to-us [data-testid="selected-date"],
#my-cal-inline-speak-to-us [data-testid="time-slot"]:hover,
#my-cal-inline-speak-to-us button[data-testid="time-slot"]:hover {
  background-color: #FF4C33 !important;
  background: linear-gradient(135deg, #FF4C33, #FF6B52) !important;
}

/* Cal.com buttons and interactive elements */
#my-cal-inline-speak-to-us button[type="submit"],
#my-cal-inline-speak-to-us .cal-primary-btn,
#my-cal-inline-speak-to-us [data-testid="book-event-form"] button {
  background: linear-gradient(135deg, #FF4C33, #FF6B52) !important;
  border: 1px solid #FF4C33 !important;
  box-shadow: 0 4px 12px rgba(255, 76, 51, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#my-cal-inline-speak-to-us button[type="submit"]:hover,
#my-cal-inline-speak-to-us .cal-primary-btn:hover {
  background: linear-gradient(135deg, #E63E2A, #FF4C33) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(255, 76, 51, 0.4) !important;
}

/* Selected date styling */
#my-cal-inline-speak-to-us .cal-selected-date,
#my-cal-inline-speak-to-us [aria-selected="true"] {
  background: #FF4C33 !important;
  color: white !important;
  border-radius: 8px !important;
}

/* Time slot buttons */
#my-cal-inline-speak-to-us .cal-time-slot,
#my-cal-inline-speak-to-us [data-testid="time-slot"] {
  border: 1px solid rgba(255, 76, 51, 0.2) !important;
  background: rgba(255, 76, 51, 0.05) !important;
  transition: all 0.3s ease !important;
  border-radius: 8px !important;
}

#my-cal-inline-speak-to-us .cal-time-slot:hover,
#my-cal-inline-speak-to-us [data-testid="time-slot"]:hover {
  background: #FF4C33 !important;
  color: white !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(255, 76, 51, 0.3) !important;
}

/* Calendar container responsive design */
@media (max-width: 768px) {
  #my-cal-inline-speak-to-us {
    min-height: 500px !important;
    border-radius: 16px !important;
  }
  
  .contact-section .col-lg-10 {
    padding: 0 15px !important;
  }
}

@media (max-width: 576px) {
  #my-cal-inline-speak-to-us {
    min-height: 450px !important;
    border-radius: 12px !important;
  }
  
  #my-cal-inline-speak-to-us::before {
    height: 2px;
  }
}

/* FAQ Section Styling - Base Styles */
.faq-section {
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

/* FAQ Section - Light Mode */
:root .faq-section,
[data-theme="light"] .faq-section,
html[data-theme="light"] .faq-section {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F1F5F9 100%) !important;
}

/* FAQ Section - Dark Mode */
[data-theme="dark"] .faq-section,
html[data-theme="dark"] .faq-section {
  background: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 50%, #16213E 100%) !important;
}

/* FAQ Section Effects - Light Mode */
:root .faq-section::before,
[data-theme="light"] .faq-section::before,
html[data-theme="light"] .faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 70% 20%, rgba(255, 76, 51, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
  z-index: 1;
}

/* FAQ Section Effects - Dark Mode */
[data-theme="dark"] .faq-section::before,
html[data-theme="dark"] .faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 70% 20%, rgba(255, 76, 51, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.faq-section .container {
  position: relative !important;
  z-index: 10 !important;
}

.faq-section h2 {
  color: var(--foreground) !important;
  margin-bottom: var(--spacing-lg) !important;
  font-weight: 800 !important;
}

.faq-section .lead {
  color: var(--muted) !important;
}

/* Accordion Cards - Base Styles */
.accordion-card {
  border-radius: 16px !important;
  margin-bottom: var(--spacing-md) !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Accordion Cards - Light Mode */
:root .accordion-card,
[data-theme="light"] .accordion-card,
html[data-theme="light"] .accordion-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
}

:root .accordion-card:hover,
[data-theme="light"] .accordion-card:hover,
html[data-theme="light"] .accordion-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12) !important;
}

/* Accordion Cards - Dark Mode */
[data-theme="dark"] .accordion-card,
html[data-theme="dark"] .accordion-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%) !important;
  backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

[data-theme="dark"] .accordion-card:hover,
html[data-theme="dark"] .accordion-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.accordion-card .accordion-button {
  background: transparent !important;
  border: none !important;
  color: var(--foreground) !important;
  font-weight: 600 !important;
  padding: var(--spacing-lg) !important;
  box-shadow: none !important;
}

.accordion-card .accordion-button:not(.collapsed) {
  color: var(--primary) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.accordion-card .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(1) !important;
}

/* Accordion Body - Light Mode */
:root .accordion-card .accordion-body,
[data-theme="light"] .accordion-card .accordion-body,
html[data-theme="light"] .accordion-card .accordion-body {
  background: transparent !important;
  color: var(--muted) !important;
  padding: 0 var(--spacing-lg) var(--spacing-lg) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Accordion Body - Dark Mode */
[data-theme="dark"] .accordion-card .accordion-body,
html[data-theme="dark"] .accordion-card .accordion-body {
  background: transparent !important;
  color: var(--muted) !important;
  padding: 0 var(--spacing-lg) var(--spacing-lg) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

[data-theme="dark"] .accordion-card .accordion-button::after {
  filter: brightness(1) !important;
}

/* Professional Logo Styling */
.navbar-logo,
.footer-logo {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  max-width: 100% !important;
  height: auto !important;
}

.navbar-logo {
  height: 40px !important;
  filter: brightness(1) !important;
}

.navbar-logo:hover {
  transform: scale(1.05) !important;
  filter: brightness(1.1) !important;
}

.footer-logo {
  height: 32px !important;
  filter: brightness(1) opacity(0.9) !important;
}

.footer-logo:hover {
  filter: brightness(1.1) opacity(1) !important;
}

/* Logo Theme Compatibility */
[data-theme="dark"] .navbar-logo,
[data-theme="dark"] .footer-logo {
  filter: brightness(1) !important;
}

[data-theme="light"] .navbar-logo,
[data-theme="light"] .footer-logo {
  filter: brightness(0.9) !important;
}

/* Responsive Logo Sizing */
@media (max-width: 768px) {
  .navbar-logo {
    height: 35px !important;
  }
  
  .footer-logo {
    height: 28px !important;
  }
}

@media (max-width: 480px) {
  .navbar-logo {
    height: 30px !important;
  }
  
  .footer-logo {
    height: 24px !important;
  }
}

/* Service Cards - Light Mode Override */
:root .service-card,
[data-theme="light"] .service-card,
html[data-theme="light"] .service-card,
:root .card.service-card,
[data-theme="light"] .card.service-card,
html[data-theme="light"] .card.service-card,
:root .card[class*="service"],
[data-theme="light"] .card[class*="service"],
html[data-theme="light"] .card[class*="service"] {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
  color: var(--text-primary) !important;
}

/* Service Cards - Dark Mode Override */
[data-theme="dark"] .service-card,
html[data-theme="dark"] .service-card,
[data-theme="dark"] .card.service-card,
html[data-theme="dark"] .card.service-card,
[data-theme="dark"] .card[class*="service"],
html[data-theme="dark"] .card[class*="service"] {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(55, 65, 81, 0.9) 100%) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  color: var(--text-primary) !important;
}

/* Step Cards - Light Mode Override */
:root .step-card,
[data-theme="light"] .step-card,
html[data-theme="light"] .step-card,
:root .card.step-card,
[data-theme="light"] .card.step-card,
html[data-theme="light"] .card.step-card,
:root .card[class*="step"],
[data-theme="light"] .card[class*="step"],
html[data-theme="light"] .card[class*="step"] {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
  color: var(--text-primary) !important;
}

/* Step Cards - Dark Mode Override */
[data-theme="dark"] .step-card,
html[data-theme="dark"] .step-card,
[data-theme="dark"] .card.step-card,
html[data-theme="dark"] .card.step-card,
[data-theme="dark"] .card[class*="step"],
html[data-theme="dark"] .card[class*="step"] {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(55, 65, 81, 0.9) 100%) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  color: var(--text-primary) !important;
}

/* Generic Card Override for Light Mode */
:root .card,
[data-theme="light"] .card,
html[data-theme="light"] .card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
  color: var(--text-primary) !important;
}

/* Dark Mode Visual Enhancements */

/* Animated Background Patterns for Dark Mode */
[data-theme="dark"] .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 198, 255, 0.06) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .hero-section > .container {
  position: relative;
  z-index: 1;
}

@keyframes heroGlow {
  0% { opacity: 0.4; }
  100% { opacity: 0.8; }
}


/* Section Separators */
[data-theme="dark"] .platform-preview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Enhanced Service Cards for Dark Mode */
[data-theme="dark"] .feature-card {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.4) 0%, rgba(55, 65, 81, 0.3) 100%) !important;
  backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s ease;
}

[data-theme="dark"] .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Apply Standard Glassmorphism to Value-Process Section */
[data-theme="dark"] .value-process-section {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Optimized Spacing Hierarchy */
.py-2 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-3 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-4 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }

/* Reduce excessive margins between sections */
section + section { margin-top: -1.5rem; }

/* Specific section spacing fixes */
.contact-section + .contact-section { margin-top: -2rem; }
.testimonial-section { padding-top: 1rem !important; padding-bottom: 1rem !important; }

/* Service Cards Text Organization */
.feature-card {
  text-align: center !important;
  margin-bottom: 1.5rem !important;
}

.feature-card .d-flex {
  justify-content: center !important;
  text-align: center !important;
}

.feature-card .ms-3 {
  margin-left: 0 !important;
  margin-top: 1rem !important;
}

.feature-card h5 {
  text-align: center !important;
  margin-bottom: 1rem !important;
}

.feature-card ul {
  text-align: left !important;
  max-width: 400px;
  margin: 0 auto !important;
  padding-left: 1rem !important;
}

.feature-card li {
  margin-bottom: 0.5rem !important;
  line-height: 1.5 !important;
}

/* Process Steps Text Organization */
.value-process-section .col-lg-3 h5 {
  margin-bottom: 0.5rem !important;
}

.value-process-section .col-lg-3 p {
  line-height: 1.4 !important;
  margin-bottom: 0 !important;
}

/* Testimonial Section Compact */
.testimonial-section .blockquote {
  margin-bottom: 1rem !important;
}

.testimonial-section .lead {
  margin-bottom: 1rem !important;
}

/* Customers Page Specific Spacing */
.py-1 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }

/* Enhanced section transitions for customers page */
.contact-section + .contact-section { margin-top: -2.5rem !important; }

/* Critical fix for stats to success stories gap */
section[style*="padding-bottom: 0"] + section[style*="margin-top: -3rem"] {
  margin-top: -4rem !important;
}

/* Reduce card body padding */
.pricing-card .card-body { padding: 1rem !important; }

/* Mobile Responsive Spacing Adjustments */
@media (max-width: 768px) {
  .py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
  .py-2 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
  .py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  
  section + section { margin-top: -1rem; }
  .contact-section + .contact-section { margin-top: -2rem; }
}

/* Generic Card Override for Dark Mode */
[data-theme="dark"] .card,
html[data-theme="dark"] .card {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(55, 65, 81, 0.9) 100%) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  color: var(--text-primary) !important;
}

/* Card Text Content - Light Mode */
:root .card h1,
:root .card h2,
:root .card h3,
:root .card h4,
:root .card h5,
:root .card h6,
[data-theme="light"] .card h1,
[data-theme="light"] .card h2,
[data-theme="light"] .card h3,
[data-theme="light"] .card h4,
[data-theme="light"] .card h5,
[data-theme="light"] .card h6,
html[data-theme="light"] .card h1,
html[data-theme="light"] .card h2,
html[data-theme="light"] .card h3,
html[data-theme="light"] .card h4,
html[data-theme="light"] .card h5,
html[data-theme="light"] .card h6 {
  color: var(--text-primary) !important;
}

:root .card p,
:root .card .card-text,
[data-theme="light"] .card p,
[data-theme="light"] .card .card-text,
html[data-theme="light"] .card p,
html[data-theme="light"] .card .card-text {
  color: var(--text-secondary) !important;
}

/* Card Text Content - Dark Mode */
[data-theme="dark"] .card h1,
[data-theme="dark"] .card h2,
[data-theme="dark"] .card h3,
[data-theme="dark"] .card h4,
[data-theme="dark"] .card h5,
[data-theme="dark"] .card h6,
html[data-theme="dark"] .card h1,
html[data-theme="dark"] .card h2,
html[data-theme="dark"] .card h3,
html[data-theme="dark"] .card h4,
html[data-theme="dark"] .card h5,
html[data-theme="dark"] .card h6 {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .card p,
[data-theme="dark"] .card .card-text,
html[data-theme="dark"] .card p,
html[data-theme="dark"] .card .card-text {
  color: var(--text-secondary) !important;
}

/* Accessibility */
@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;
  }
  
  .back-to-top {
    transition: opacity 0.3s ease;
  }
}