/* ========================================
   Cloubotix - Premium SaaS Website
   Design System & Styles
   ======================================== */

/* ========================================
   CSS Variables - Design Tokens
   ======================================== */
:root {
  /* Colors - Primary Palette - Vibrant Blue */
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #60a5fa;
  --color-secondary: #3b82f6;
  --color-accent: #93c5fd;
  
  /* Colors - Vibrant Accent Colors */
  --color-orange: #ff6b6b;
  --color-yellow: #ffd93d;
  --color-green: #6bcf7f;
  --color-blue: #4d96ff;
  --color-purple: #60a5fa;
  --color-pink: #ff85c0;
  --color-teal: #2dd4bf;
  --color-indigo: #3b82f6;
  
  /* Colors - Neutrals */
  --color-white: #ffffff;
  --color-gray-50: #fafafa;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #eeeeee;
  --color-gray-300: #e0e0e0;
  --color-gray-400: #bdbdbd;
  --color-gray-500: #9e9e9e;
  --color-gray-600: #757575;
  --color-gray-700: #616161;
  --color-gray-800: #424242;
  --color-gray-900: #212121;
  --color-black: #000000;
  
  /* Colors - Semantic */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  /* Font Sizes */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */
  --text-5xl: 3rem;       /* 48px */
  --text-6xl: 3.75rem;    /* 60px */
  --text-7xl: 4.5rem;     /* 72px */
  
  /* Spacing */
  --space-1: 0.25rem;     /* 4px */
  --space-2: 0.5rem;      /* 8px */
  --space-3: 0.75rem;     /* 12px */
  --space-4: 1rem;        /* 16px */
  --space-5: 1.25rem;     /* 20px */
  --space-6: 1.5rem;      /* 24px */
  --space-8: 2rem;        /* 32px */
  --space-10: 2.5rem;     /* 40px */
  --space-12: 3rem;       /* 48px */
  --space-16: 4rem;       /* 64px */
  --space-20: 5rem;       /* 80px */
  --space-24: 6rem;       /* 96px */
  --space-32: 8rem;       /* 128px */
  
  /* Border Radius */
  --radius-sm: 0.375rem;   /* 6px */
  --radius-md: 0.5rem;     /* 8px */
  --radius-lg: 0.75rem;    /* 12px */
  --radius-xl: 1rem;       /* 16px */
  --radius-2xl: 1.5rem;    /* 24px */
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--color-gray-800);
  background-color: var(--color-white);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  overflow-x: hidden;
}

/* Prevent flickering and improve performance */
*,
*::before,
*::after {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Respect user's motion preferences */
@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;
  }
}

/* ========================================
   Mobile viewport containment (all small devices)
   ======================================== */
@media (max-width: 640px) {
  html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }
  body {
    overflow-x: hidden;
    min-width: 0;
  }
  .container,
  .hero .container,
  section .container {
    box-sizing: border-box;
    min-width: 0;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-base);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   Utility Classes
   ======================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   3D Colorful Blocks & Effects
   ======================================== */
.color-block {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-base);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 1px 8px rgba(0, 0, 0, 0.05);
}

.color-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.color-block:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.08);
}

/* 3D Effect Shadows */
.shadow-3d {
  box-shadow: 
    0 13px 27px -5px rgba(50, 50, 93, 0.25),
    0 8px 16px -8px rgba(0, 0, 0, 0.3),
    0 -6px 16px -6px rgba(0, 0, 0, 0.025);
}

.shadow-3d:hover {
  box-shadow: 
    0 20px 40px -5px rgba(50, 50, 93, 0.35),
    0 12px 25px -8px rgba(0, 0, 0, 0.4),
    0 -8px 20px -6px rgba(0, 0, 0, 0.03);
}

/* Floating Animation for 3D blocks */
@keyframes float3d {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }
  25% {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
  }
  50% {
    transform: translateY(-5px) rotateX(-2deg) rotateY(-2deg);
  }
  75% {
    transform: translateY(-15px) rotateX(2deg) rotateY(-2deg);
  }
}

.float-3d {
  animation: float3d 6s ease-in-out infinite;
}

/* Glass morphism effect */
.glass-effect {
  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);
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  box-shadow: 
    0 4px 14px 0 rgba(37, 99, 235, 0.39),
    0 2px 8px 0 rgba(37, 99, 235, 0.2);
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary:hover {
  box-shadow: 
    0 6px 20px 0 rgba(37, 99, 235, 0.5),
    0 3px 12px 0 rgba(37, 99, 235, 0.3);
  transform: translateY(-3px) scale(1.05);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-gray-700);
  border-color: var(--color-gray-300);
}

.btn-secondary:hover {
  background-color: var(--color-gray-50);
  border-color: var(--color-gray-400);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

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

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

/* ========================================
   Navigation - Premium Enhanced
   ======================================== */

/* Navbar Decorative Elements */
.navbar-decoration {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-decoration-left {
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  animation: float-nav-left 8s ease-in-out infinite;
}

.navbar-decoration-right {
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  animation: float-nav-right 8s ease-in-out infinite;
  animation-delay: 4s;
}

.navbar:hover .navbar-decoration {
  opacity: 1;
}

.nav-decoration-svg {
  width: 100%;
  height: 100%;
}

@keyframes float-nav-left {
  0%, 100% {
    transform: translateY(-50%) rotate(0deg);
  }
  50% {
    transform: translateY(-60%) rotate(5deg);
  }
}

@keyframes float-nav-right {
  0%, 100% {
    transform: translateY(-50%) rotate(0deg);
  }
  50% {
    transform: translateY(-40%) rotate(-5deg);
  }
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, 
    var(--color-primary) 0%, 
    var(--color-secondary) 50%,
    var(--color-primary) 100%);
  background-size: 200% auto;
  box-shadow: 
    0 2px 10px rgba(37, 99, 235, 0.5),
    0 0 20px rgba(37, 99, 235, 0.3);
  transition: width 0.1s ease-out;
  animation: shimmer-progress 3s linear infinite;
  z-index: 10;
}

@keyframes shimmer-progress {
  to {
    background-position: 200% center;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: linear-gradient(180deg, rgba(238, 242, 255, 0.95) 0%, rgba(224, 231, 255, 0.9) 100%);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.14);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 2px 20px rgba(37, 99, 235, 0.08),
    0 1px 4px rgba(30, 58, 138, 0.06);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(37, 99, 235, 0.03) 0%, 
    rgba(59, 130, 246, 0.02) 50%, 
    rgba(37, 99, 235, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.navbar:hover::before {
  opacity: 1;
}

.navbar.scrolled {
  background: linear-gradient(180deg, rgba(235, 239, 255, 0.98) 0%, rgba(224, 231, 255, 0.96) 100%);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  box-shadow: 
    0 4px 30px rgba(37, 99, 235, 0.12),
    0 2px 10px rgba(30, 58, 138, 0.06),
    0 0 0 1px rgba(37, 99, 235, 0.1);
  border-bottom-color: rgba(37, 99, 235, 0.16);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  position: relative;
  z-index: 1;
}

/* Decorative Elements */
.nav-wrapper::before,
.nav-wrapper::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.nav-wrapper::before {
  top: -100px;
  left: -50px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.nav-wrapper::after {
  top: -100px;
  right: -50px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

.navbar:hover .nav-wrapper::before,
.navbar:hover .nav-wrapper::after {
  opacity: 0.25;
}

/* Enhanced Logo */
.logo-enhanced {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.logo-enhanced::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.08) 0%, 
    rgba(59, 130, 246, 0.08) 100%);
  border-radius: var(--radius-xl);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.logo-enhanced:hover::before {
  opacity: 1;
}

.logo-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.logo-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 50%;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease;
  z-index: -1;
}

.logo-enhanced:hover .logo-icon::after {
  opacity: 0.5;
}

.logo-icon img {
  display: block;
  filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.3));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-enhanced:hover .logo-icon img {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 16px rgba(37, 99, 235, 0.4));
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1e3a8a;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.logo-enhanced:hover .logo-text {
  color: #1d4ed8;
}

.logo-tagline {
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  background: linear-gradient(90deg, 
    var(--color-primary) 0%, 
    var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.7;
  transition: opacity 0.4s ease;
  display: none; /* Hidden on desktop */
}

@media (max-width: 640px) {
  .logo-tagline {
    display: block;
  }
}

/* Nav Links - Enhanced */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-link {
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-700);
  position: relative;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.08) 0%, 
    rgba(59, 130, 246, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-lg);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    var(--color-primary) 0%, 
    var(--color-secondary) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.nav-link:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover::after {
  width: 80%;
}

/* Active state indicator */
.nav-link.active {
  color: var(--color-primary);
}

.nav-link.active::after {
  width: 80%;
}

/* Nav CTA Buttons - Enhanced */
.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.btn-nav-secondary {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-700);
  background: rgba(37, 99, 235, 0.05);
  border: 2px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-xl);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-nav-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.1) 0%, 
    rgba(59, 130, 246, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-nav-secondary:hover::before {
  opacity: 1;
}

.btn-nav-secondary:hover {
  color: var(--color-primary);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.btn-nav-primary {
  position: relative;
  padding: 12px 28px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
  background: white;
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 
    0 4px 14px rgba(37, 99, 235, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.05),
    inset 0 -1px 0 rgba(37, 99, 235, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  transform: translateZ(0);
}

.btn-nav-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-nav-primary:hover::before {
  opacity: 1;
}

.btn-nav-primary:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-2px) translateZ(0);
  box-shadow: 
    0 8px 24px rgba(37, 99, 235, 0.4),
    0 4px 12px rgba(37, 99, 235, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-nav-primary:active {
  transform: translateY(0) translateZ(0);
  box-shadow: 
    0 2px 8px rgba(37, 99, 235, 0.25),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Nav Badge */
.nav-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: white;
  font-size: 9px;
  font-weight: var(--font-weight-bold);
  padding: 3px 6px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 
    0 2px 8px rgba(255, 107, 107, 0.4),
    0 0 0 2px white;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-3);
  background: rgba(37, 99, 235, 0.05);
  border: 2px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mobile-menu-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.1) 0%, 
    rgba(59, 130, 246, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-toggle:hover::before {
  opacity: 1;
}

.mobile-menu-toggle:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: #1e3a8a; /* dark blue - hamburger lines */
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.mobile-menu-toggle:hover span {
  background: #1e3a8a; /* dark blue on hover */
}

@media (max-width: 968px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ========================================
   Hero Section - Enhanced
   ======================================== */
.hero {
  position: relative;
  padding: calc(85px + var(--space-24) + var(--space-8)) 0 var(--space-24);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
}

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

/* Removed old decorative shapes and grid pattern */

/* 3D Floating Bubbles - Smaller & More Colorful */
.bubble-3d {
  position: absolute;
  border-radius: 50%;
  box-shadow: 
    inset 0 -8px 16px rgba(255, 255, 255, 0.6),
    inset 0 8px 16px rgba(0, 0, 0, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.15);
  animation: bubble-float 12s ease-in-out infinite;
  backdrop-filter: blur(3px);
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Bubble Sizes and Positions - Smaller & More Vibrant */
.bubble-1 {
  width: 50px;
  height: 50px;
  top: 12%;
  left: 8%;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.6) 0%, rgba(255, 142, 83, 0.5) 100%);
  animation-delay: 0s;
}

.bubble-2 {
  width: 35px;
  height: 35px;
  top: 25%;
  right: 12%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.6) 0%, rgba(59, 130, 246, 0.5) 100%);
  animation-delay: 2s;
}

.bubble-3 {
  width: 45px;
  height: 45px;
  top: 48%;
  left: 18%;
  background: linear-gradient(135deg, rgba(107, 207, 127, 0.6) 0%, rgba(56, 211, 159, 0.5) 100%);
  animation-delay: 4s;
}

.bubble-4 {
  width: 30px;
  height: 30px;
  top: 62%;
  right: 22%;
  background: linear-gradient(135deg, rgba(255, 211, 61, 0.6) 0%, rgba(251, 191, 36, 0.5) 100%);
  animation-delay: 6s;
}

.bubble-5 {
  width: 40px;
  height: 40px;
  bottom: 18%;
  left: 28%;
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.6) 0%, rgba(168, 85, 247, 0.5) 100%);
  animation-delay: 8s;
}

.bubble-6 {
  width: 32px;
  height: 32px;
  bottom: 28%;
  right: 18%;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.6) 0%, rgba(20, 184, 166, 0.5) 100%);
  animation-delay: 10s;
}

.bubble-7 {
  width: 48px;
  height: 48px;
  top: 38%;
  right: 8%;
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.6) 0%, rgba(37, 99, 235, 0.5) 100%);
  animation-delay: 12s;
}

.bubble-8 {
  width: 38px;
  height: 38px;
  bottom: 42%;
  left: 12%;
  background: linear-gradient(135deg, rgba(255, 133, 192, 0.6) 0%, rgba(240, 101, 149, 0.5) 100%);
  animation-delay: 14s;
}

@keyframes bubble-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  25% {
    transform: translate3d(15px, -25px, 0) scale(1.15);
  }
  50% {
    transform: translate3d(-12px, -50px, 0) scale(0.9);
  }
  75% {
    transform: translate3d(-18px, -25px, 0) scale(1.1);
  }
}

/* Subtle Gradient Orbs (Background) */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
  animation: float 35s infinite ease-in-out;
  mix-blend-mode: normal;
  will-change: transform;
  transform: translateZ(0);
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  top: -250px;
  right: -150px;
  animation-delay: 0s;
}

.orb-2 {
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  bottom: -200px;
  left: -100px;
  animation-delay: 12s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 24s;
}

@keyframes float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    transform: translate3d(20px, -20px, 0) rotate(3deg);
  }
  50% {
    transform: translate3d(0, -40px, 0) rotate(-3deg);
  }
  75% {
    transform: translate3d(-20px, -20px, 0) rotate(3deg);
  }
}

/* Hero Layout */
.hero .container {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-16);
  align-items: center;
  min-height: calc(100vh - 185px);
}

.hero-content {
  max-width: 650px;
  animation: slideUp 0.8s ease-out;
}

/* Premium Badge */
.hero-badge-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  animation: fadeIn 0.6s ease-out 0.2s backwards;
}

.hero-badges-below-title {
  margin-top: var(--space-5);
  margin-bottom: var(--space-6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-full);
  box-shadow: 
    0 4px 12px rgba(37, 99, 235, 0.15),
    0 2px 6px rgba(37, 99, 235, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-badge-green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.2) 100%);
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2), 0 2px 6px rgba(34, 197, 94, 0.1);
}
.hero-badge-green .badge-dot { background: #22c55e; }
.hero-badge-green .badge-text { color: #15803d; font-weight: 700; }

.hero-badge-blue {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(59, 130, 246, 0.18) 100%);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25), 0 2px 6px rgba(37, 99, 235, 0.15);
}
.hero-badge-blue .badge-dot { background: #2563eb; }
.hero-badge-blue .badge-text { color: #1d4ed8; font-weight: 700; }

/* Single badge with shine - 3D & green (Lifetime access) */
.badge-with-shine {
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, #15803d 0%, #16a34a 35%, #22c55e 65%, #4ade80 100%);
  background-size: 200% 200%;
  animation: badgeGradient 6s ease infinite;
  border: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 -1px 0 rgba(0, 0, 0, 0.12) inset,
    2px 2px 0 rgba(255, 255, 255, 0.25),
    0 4px 12px rgba(21, 128, 61, 0.45),
    0 8px 24px rgba(34, 197, 94, 0.35),
    0 12px 32px rgba(0, 0, 0, 0.18);
  transform: perspective(120px) rotateX(-2deg) translateZ(4px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.badge-with-shine:hover {
  transform: perspective(120px) rotateX(0deg) translateZ(6px) scale(1.02);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 -1px 0 rgba(0, 0, 0, 0.1) inset,
    2px 2px 0 rgba(255, 255, 255, 0.3),
    0 6px 16px rgba(21, 128, 61, 0.5),
    0 12px 28px rgba(34, 197, 94, 0.4),
    0 16px 40px rgba(0, 0, 0, 0.22);
}
@keyframes badgeGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.badge-with-shine .badge-dot {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}
.badge-with-shine .badge-text {
  color: #fff;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.02em;
}

.badge-with-shine .badge-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 80%,
    transparent 100%
  );
  animation: badgeShine 2.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badgeShine {
  0% { left: -100%; }
  60% { left: -100%; }
  100% { left: 150%; }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
  50% {
    opacity: 0.7;
    transform: scale3d(1.1, 1.1, 1);
  }
}

.badge-text {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-700);
}

/* Enhanced Hero Title */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.1;
  color: var(--color-gray-900);
  margin-bottom: var(--space-8);
  letter-spacing: -1.5px;
  animation: slideUp 0.8s ease-out 0.3s backwards;
}

.title-line-1 {
  display: inline;
}

.title-line-2 {
  display: inline;
}

.title-line-2.title-gradient {
  display: inline;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 6s linear infinite;
}

.hero-title-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4em;
  padding: 0.12em 0.35em;
  margin: 0 0.08em;
  font-size: 0.95em;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 40%, #fb923c 70%, #f97316 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(234, 88, 12, 0.5);
  animation: numberBadgePulse 2.5s ease-in-out infinite, numberBadgeShine 4s ease-in-out infinite;
  vertical-align: middle;
  transform: rotate(-6deg);
  transform-origin: center center;
}

.hero-title-number-digit {
  display: inline-block;
  min-width: 0.6em;
  text-align: center;
}

.hero-title-number-digit.spin {
  animation: numberDigitSpin 0.45s ease-out;
}

@keyframes numberBadgePulse {
  0%, 100% { transform: rotate(-6deg) scale(1); box-shadow: 0 3px 12px rgba(234, 88, 12, 0.5); }
  50% { transform: rotate(-6deg) scale(1.05); box-shadow: 0 4px 16px rgba(234, 88, 12, 0.6); }
}

@keyframes numberDigitSpin {
  0% { transform: rotateY(0deg); opacity: 1; }
  50% { transform: rotateY(180deg); opacity: 0.3; }
  100% { transform: rotateY(360deg); opacity: 1; }
}

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

.title-gradient {
  display: block;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

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

/* Slowed down for professional feel */
.title-gradient {
  animation: shimmer 6s linear infinite;
}

/* Value Props */
.hero-value-props {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  animation: slideUp 0.8s ease-out 0.4s backwards;
}

.value-prop {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.prop-icon {
  font-size: var(--text-lg);
  color: var(--color-green);
  font-weight: var(--font-weight-bold);
}

.prop-text {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-700);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background-color: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  animation: slideDown 0.6s ease-out;
}

.badge-icon {
  font-size: var(--text-base);
}

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

.hero-title {
  font-size: var(--text-6xl);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.1;
  color: var(--color-gray-900);
  margin-bottom: var(--space-6);
  animation: slideUp 0.6s ease-out 0.1s backwards;
}

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

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-gray-600);
  margin-bottom: var(--space-8);
  line-height: 1.6;
  max-width: 500px;
  animation: slideUp 0.6s ease-out 0.2s backwards;
}

/* Hero CTA Buttons - Enhanced (left-aligned on desktop) */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
  animation: slideUp 0.8s ease-out 0.5s backwards;
}

.hero-cta-note {
  font-size: var(--text-xs);
  color: var(--color-gray-500);
  font-weight: var(--font-weight-regular);
  margin: 0;
  letter-spacing: 0.02em;
  text-align: left;
  max-width: 100%;
}

.btn-hero-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, #1d4ed8 0%, #2563eb 35%, #3b82f6 65%, #2563eb 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 -1px 0 rgba(0, 0, 0, 0.12) inset,
    0 4px 0 rgba(29, 78, 216, 0.4),
    0 8px 24px rgba(37, 99, 235, 0.45),
    0 14px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  transform: translateZ(0);
  animation: ctaGradientShift 5s ease-in-out infinite;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 25%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 75%,
    transparent 100%
  );
  animation: ctaShine 2.5s ease-in-out infinite;
  pointer-events: none;
}

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

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

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 -1px 0 rgba(0, 0, 0, 0.1) inset,
    0 5px 0 rgba(29, 78, 216, 0.35),
    0 12px 32px rgba(37, 99, 235, 0.5),
    0 18px 44px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:active {
  transform: translateY(1px) scale(0.99);
  box-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.2) inset,
    0 2px 0 rgba(29, 78, 216, 0.4),
    0 4px 16px rgba(37, 99, 235, 0.4);
}

.btn-hero-primary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

.btn-hero-primary .btn-content {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.btn-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.btn-text {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 700;
}

.btn-glow {
  display: none;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 36px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray-800);
  background: white;
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  will-change: transform;
  transform: translateZ(0);
}

.btn-hero-secondary:hover {
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.08);
  border-color: var(--color-primary);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.btn-hero-secondary:active {
  transform: translateY(-2px) scale(1);
}

.btn-icon-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  border-radius: 50%;
  font-size: 11px;
  padding-left: 3px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover .btn-icon-play {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* Social Proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  animation: slideUp 0.8s ease-out 0.6s backwards;
}

.social-proof-avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-white) 100%);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  margin-left: -12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-base);
}

.avatar:first-child {
  margin-left: 0;
}

.avatar:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 1;
}

.avatar-count {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  margin-left: -12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-proof-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.proof-stars {
  font-size: var(--text-sm);
  color: #fbbf24;
  letter-spacing: 2px;
}

.proof-description {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  font-weight: var(--font-weight-medium);
}

.proof-description strong {
  color: var(--color-gray-900);
  font-weight: var(--font-weight-bold);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-6) 0;
  animation: slideUp 0.6s ease-out 0.4s backwards;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--color-gray-300);
}

/* Scroll Indicator - Enhanced */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-12);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  animation: fadeIn 0.8s ease-out 1.5s backwards;
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--color-gray-400);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 4px;
  height: 10px;
  background: var(--color-gray-400);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateY(15px);
  }
}

.scroll-text {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Visual - Website Showcase */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.8s ease-out 0.7s backwards;
  position: relative;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 500px;
  perspective: 1000px;
}

/* Feature Showcase Card */
.feature-showcase {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  animation: float 10s ease-in-out infinite;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-showcase:hover {
  transform: translateY(-8px) rotateX(1deg) rotateY(1deg);
}

.showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-gray-200);
}

.showcase-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #ffbd2e;
}

.dot.green {
  background: #28ca42;
}

.showcase-title {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-600);
}

.showcase-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.content-block {
  height: 60px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-radius: var(--radius-lg);
  animation: shimmer-block 4s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-block:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
  transform: scale(1.02);
}

.content-block.block-1 {
  animation-delay: 0s;
}

.content-block.block-2 {
  height: 80px;
  animation-delay: 1s;
}

.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.content-block.block-3,
.content-block.block-4 {
  height: 70px;
}

.content-block.block-3 {
  animation-delay: 2s;
}

.content-block.block-4 {
  animation-delay: 3s;
}

@keyframes shimmer-block {
  0%, 100% {
    opacity: 0.6;
    transform: scale3d(1, 1, 1);
  }
  50% {
    opacity: 0.9;
    transform: scale3d(1.02, 1.02, 1);
  }
}

.showcase-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  background: var(--color-green);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}

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

/* Floating Elements - Professional */
.floating-element {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5);
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: float 12s ease-in-out infinite;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.floating-element:hover {
  transform: translateY(-12px) scale(1.1);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.15);
}

.element-1 {
  top: 10%;
  right: 5%;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: white;
  animation-delay: 0s;
}

.element-1:hover {
  background: linear-gradient(135deg, #ff8e53 0%, #ff6b6b 100%);
}

.element-2 {
  top: 50%;
  left: -5%;
  background: linear-gradient(135deg, #4d96ff 0%, #2563eb 100%);
  color: white;
  animation-delay: 4s;
}

.element-2:hover {
  background: linear-gradient(135deg, #2563eb 0%, #4d96ff 100%);
}

.element-3 {
  bottom: 15%;
  right: -5%;
  background: linear-gradient(135deg, #6bcf7f 0%, #38d39f 100%);
  color: white;
  animation-delay: 8s;
}

.element-3:hover {
  background: linear-gradient(135deg, #38d39f 0%, #6bcf7f 100%);
}

.element-icon {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-element:hover .element-icon {
  transform: scale(1.2) rotate(8deg);
}

.element-label {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
}

/* Content Block Icons */
.block-icon-small {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  opacity: 0.7;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-block:hover .block-icon-small {
  opacity: 1;
  transform: scale(1.2);
}

/* 2D/3D Vector Graphics */
.vector-graphic {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.08;
  pointer-events: none;
  animation: rotate-subtle 20s ease-in-out infinite;
}

@keyframes rotate-subtle {
  0%, 100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  50% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
}

.graphic-1 {
  top: 5%;
  left: 10%;
  animation-delay: 0s;
}

.graphic-2 {
  bottom: 20%;
  left: 5%;
  animation-delay: 7s;
  animation-direction: reverse;
}

.graphic-3 {
  top: 60%;
  right: 8%;
  animation-delay: 14s;
}

.vector-shape {
  width: 100%;
  height: 100%;
}

.shape-circle {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 4;
  stroke-dasharray: 10 5;
}

.shape-rect {
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 4;
  stroke-dasharray: 15 5;
}

.shape-triangle {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 4;
  stroke-dasharray: 12 5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 3D Blocks Container */
.blocks-3d-container {
  position: relative;
  width: 100%;
  height: 500px;
  perspective: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--space-6);
  padding: var(--space-8);
}

.block-3d {
  position: relative;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 
    0 20px 40px -10px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
}

.block-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.block-3d:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg) scale(1.05);
  box-shadow: 
    0 30px 60px -10px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.block-icon {
  font-size: 3rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.block-label {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Colorful Block Variations */
.block-orange {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
}

.block-blue {
  background: linear-gradient(135deg, #4d96ff 0%, #2563eb 100%);
}

.block-green {
  background: linear-gradient(135deg, #6bcf7f 0%, #38d39f 100%);
}

.block-purple {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}

.block-pink {
  background: linear-gradient(135deg, #ff85c0 0%, #f06595 100%);
}

.block-teal {
  background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
}

.block-yellow {
  background: linear-gradient(135deg, #ffd93d 0%, #fbbf24 100%);
}

.block-indigo {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

/* ========================================
   Hero Mobile Responsive - Premium
   ======================================== */

/* Tablet */
@media (max-width: 968px) {
  .nav-wrapper {
    height: 75px;
  }
  
  /* Logo tagline already hidden globally */
  
  .hero {
    padding: calc(75px + var(--space-16)) 0 var(--space-16);
    min-height: auto;
  }
  
  .hero-layout {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    min-height: auto;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-badge {
    justify-content: center;
  }
  
  .hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }
  
  /* Value props removed */
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }
  
  .hero-cta-note {
    text-align: center;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-social-proof {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: var(--space-8);
  }
  
  .visual-container {
    height: 400px;
  }
  
  .floating-element {
    padding: var(--space-3);
  }
  
  .element-icon {
    font-size: 1.5rem;
  }
}

/* Mobile - Premium Experience */
@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }
  
  .container {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .hero-cta {
    flex-wrap: wrap;
    max-width: 100%;
  }
  
  .hero-cta .btn-hero-primary {
    max-width: 100%;
    min-width: 0;
  }
  
  .hero-cta .btn-hero-primary .btn-text {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  /* Navigation Mobile - Improved */
  .navbar {
    background: linear-gradient(180deg, rgba(238, 242, 255, 0.97) 0%, rgba(224, 231, 255, 0.94) 100%);
    backdrop-filter: blur(20px) saturate(180%);
  }
  
  .navbar-decoration {
    display: none;
  }
  
  .nav-wrapper::before,
  .nav-wrapper::after {
    display: none;
  }
  
  .nav-wrapper {
    height: 65px;
    padding: 0 var(--space-4);
  }
  
  .logo-icon img {
    width: 36px;
    height: 36px;
  }
  
  .logo-text {
    font-size: 18px;
    letter-spacing: 0.3px;
  }
  
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    transition: background-color var(--transition-base);
  }
  
  .mobile-menu-toggle:hover {
    background-color: rgba(37, 99, 235, 0.08);
  }
  
  /* Hero Mobile - gap below navbar */
  .hero {
    padding: calc(65px + var(--space-16) + var(--space-3)) 0 var(--space-10);
    min-height: calc(100vh - 65px);
    overflow-x: hidden;
  }
  
  .hero .container {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .hero-layout {
    gap: var(--space-10);
    min-height: auto;
    min-width: 0;
    max-width: 100%;
  }
  
  .hero-content {
    padding: var(--space-4) var(--space-2) 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  /* Mobile Badge - Compact & Attractive */
  .hero-badge-wrapper {
    margin-bottom: 0;
    max-width: 100%;
  }
  
  .hero-badges-below-title {
    margin-top: var(--space-6);
    margin-bottom: var(--space-6);
  }
  
  .hero-badge-wrapper .hero-badge {
    max-width: 100%;
    min-width: 0;
  }
  
  .hero-badge {
    padding: 10px 16px;
    gap: 8px;
    box-shadow: 
      0 4px 12px rgba(37, 99, 235, 0.2),
      0 2px 6px rgba(37, 99, 235, 0.15);
  }
  
  .badge-dot {
    width: 7px;
    height: 7px;
  }
  
  .badge-text {
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
  }
  
  /* Mobile Title - Optimized & Punchy */
  .hero-title {
    font-size: clamp(1.875rem, 7vw, 2.75rem);
    letter-spacing: -1px;
    margin-bottom: 0;
    line-height: 1.2;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }
  
  .hero-content {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }
  
  .title-line-1,
  .title-line-2,
  .title-line-2.title-gradient {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  .title-line-1 {
    display: block;
    font-size: 1.15em;
    margin-bottom: 0.2em;
  }
  
  .title-line-2 {
    font-size: 1em;
  }
  
  .hero-title-number {
    display: inline-flex;
    width: fit-content;
    font-size: 0.95em;
    min-width: 1.4em;
    padding: 0.12em 0.35em;
    margin: 0 0.08em 0 0;
  }
  
  .hero-description,
  .section-description,
  .proof-description,
  .footer-description,
  .feature-description,
  .step-description,
  .plan-description {
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
  }
  
  .badge-with-shine .badge-text {
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  .title-gradient {
    font-size: 1em;
    margin-top: 4px;
    display: block;
  }
  
  /* ========== Mobile: Deep text wrapping & containment ========== */
  .section-header {
    max-width: 100%;
    padding-left: var(--space-2);
    padding-right: var(--space-2);
  }
  
  .section-title {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  
  .section-description,
  .trust-text,
  .trust-label,
  .feature-title,
  .feature-description,
  .step-title,
  .step-description,
  .plan-name,
  .plan-description,
  .plan-price .price-amount,
  .feature-item,
  .cta-title,
  .cta-description,
  .marketplace-title,
  .marketplace-description,
  .footer-title,
  .footer-description,
  .footer-links a,
  .copyright,
  .footer-tagline,
  .modal-title,
  .modal-description,
  .showcase-title,
  .element-label,
  .prop-text,
  .popular-badge,
  .showcase-badge,
  .scroll-text {
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
  }
  
  .section-title,
  .feature-title,
  .step-title,
  .plan-name,
  .cta-title,
  .marketplace-title,
  .footer-title,
  .modal-title {
    word-break: break-word;
    hyphens: auto;
  }
  
  .trust-badges,
  .features-grid,
  .steps-container,
  .pricing-grid,
  .marketplace-grid,
  .footer-grid {
    min-width: 0;
  }
  
  .trust-badge,
  .feature-card,
  .step-card,
  .pricing-card,
  .marketplace-card,
  .footer-col {
    min-width: 0;
    max-width: 100%;
  }
  
  .trust-section,
  .features,
  .how-it-works,
  .pricing,
  .marketplace,
  .cta-section,
  .footer {
    overflow-x: hidden;
  }
  
  .pricing-grid {
    max-width: 100%;
  }
  
  .step-card,
  .feature-card,
  .pricing-card {
    box-sizing: border-box;
  }
  
  /* Value props removed */
  
  .value-prop {
    gap: 10px;
  }
  
  .prop-icon {
    font-size: var(--text-base);
    flex-shrink: 0;
  }
  
  .prop-text {
    font-size: 15px;
    line-height: 1.4;
  }
  
  /* Mobile CTAs - Optimized Touch Targets */
  .hero-cta {
    gap: var(--space-4);
    margin-top: 0;
    margin-bottom: var(--space-8);
  }
  
  .btn-hero-primary {
    padding: 18px 28px;
    font-size: 1rem;
    min-height: 56px;
  }
  
  .btn-icon {
    font-size: 1.375rem;
  }
  
  .btn-text {
    font-size: 1rem;
  }
  
  .btn-hero-secondary {
    padding: 18px 32px;
    font-size: 1rem;
    min-height: 56px;
  }
  
  .btn-icon-play {
    width: 26px;
    height: 26px;
  }
  
  /* Mobile Social Proof - Optimized */
  .hero-social-proof {
    flex-direction: column;
    gap: var(--space-3);
    margin-top: 0;
    margin-bottom: var(--space-6);
  }
  
  .proof-stars {
    font-size: 0.875rem;
  }
  
  .proof-description {
    font-size: 0.8125rem;
    line-height: 1.45;
  }
  
  /* Social proof simplified - no avatars */
  
  .social-proof-text {
    text-align: center;
  }
  
  .proof-stars {
    font-size: 13px;
    letter-spacing: 3px;
  }
  
  .proof-description {
    font-size: 13px;
    line-height: 1.5;
  }
  
  /* Mobile Visual - Full width, no intermediate padding eating into showcase */
  .hero-visual {
    margin-top: 0;
    padding: 0;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
  }
  
  .visual-container {
    height: auto;
    min-height: 400px;
    padding: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
  }
  
  /* Big object uses full available width (no narrowing) */
  .feature-showcase {
    width: calc(100vw - 48px);
    max-width: 420px;
    min-width: 0;
    padding: var(--space-6);
    margin-top: var(--space-4);
    box-sizing: border-box;
    transform: none;
    flex-shrink: 0;
  }
  
  .showcase-header {
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
  }
  
  .showcase-title {
    font-size: var(--text-sm);
  }
  
  .showcase-content {
    gap: var(--space-4);
    margin-bottom: var(--space-5);
  }
  
  /* Same block heights as desktop for identical ratio */
  .content-block {
    height: 60px;
  }
  
  .content-block.block-2 {
    height: 80px;
  }
  
  .content-block.block-3,
  .content-block.block-4 {
    height: 70px;
  }
  
  .block-icon-small {
    font-size: 1.5rem;
  }
  
  /* Floating cards visible on mobile - compact, no word-breaking */
  .floating-element {
    display: flex !important;
    padding: 8px 12px;
    gap: 4px;
    min-width: auto;
    max-width: none;
    width: auto;
  }
  .floating-element .element-label {
    font-size: 0.6875rem;
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
  }
  .floating-element .element-icon {
    font-size: 1.125rem;
  }
  .floating-element.element-1 { top: 2%; right: -4%; }
  .floating-element.element-2 { top: 44%; left: -8%; }
  .floating-element.element-3 { bottom: 8%; right: -4%; }
  
  /* Vector graphics: subtle, reduced size */
  .vector-graphic {
    width: 50px;
    height: 50px;
    opacity: 0.05;
  }
  
  /* Section spacing - mobile */
  .trust-section {
    padding: var(--space-12) 0;
  }
  
  .trust-section .container {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }
  
  .trust-badges {
    gap: var(--space-5);
    margin-top: var(--space-6);
  }
  
  .trust-badge {
    padding: var(--space-4);
  }
  
  .features {
    padding: var(--space-12) 0;
  }
  
  .features .container {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }
  
  /* Scroll Indicator - Mobile */
  .scroll-indicator {
    bottom: var(--space-6);
    gap: 8px;
  }
  
  .scroll-mouse {
    width: 22px;
    height: 38px;
    padding-top: 6px;
    border-width: 2px;
  }
  
  .scroll-wheel {
    width: 3px;
    height: 8px;
  }
  
  .scroll-text {
    font-size: 10px;
    letter-spacing: 0.8px;
  }
}

/* Narrow mobile (480px) - text wrap & containment */
@media (max-width: 480px) {
  .container,
  .hero .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
  
  .section-title {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
    line-height: 1.3;
  }
  
  .section-description,
  .feature-description,
  .step-description,
  .plan-description,
  .cta-description,
  .marketplace-description,
  .footer-description {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
  
  .trust-label,
  .feature-title,
  .step-title,
  .footer-title {
    font-size: 0.9375rem;
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2.25rem);
  }
}

/* Extra Small Mobile (375px) */
@media (max-width: 375px) {
  .hero-title {
    font-size: clamp(1.5rem, 9vw, 2rem);
    line-height: 1.25;
  }
  
  .hero-title .title-line-1 {
    font-size: 1.2em;
  }
  
  .hero-content,
  .hero-layout {
    min-width: 0;
    max-width: 100%;
  }
  
  .hero .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
  
  .hero-badges-below-title {
    margin-top: var(--space-5);
    margin-bottom: var(--space-5);
  }
  
  .hero-cta {
    margin-bottom: var(--space-6);
  }
  
  .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
  
  .feature-showcase {
    padding: var(--space-4);
    width: calc(100vw - 32px);
    max-width: 100%;
  }
  
  .prop-text {
    font-size: var(--text-sm);
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    font-size: 0.9375rem;
    padding: 16px 28px;
    min-height: 52px;
  }
  
  .btn-icon {
    font-size: 1.25rem;
  }
  
  .btn-text {
    font-size: 0.9375rem;
  }
  
  .visual-container {
    height: auto;
    min-height: 350px;
  }
  
  .floating-element {
    padding: 6px 10px;
    gap: 3px;
  }
  .floating-element .element-label {
    font-size: 0.5625rem;
    white-space: nowrap;
  }
  .floating-element .element-icon {
    font-size: 1rem;
  }
  
  .vector-graphic {
    width: 44px;
    height: 44px;
    opacity: 0.05;
  }
  
  .section-title {
    font-size: clamp(1.125rem, 5.5vw, 1.5rem);
  }
  
  .section-description,
  .feature-description,
  .step-description,
  .plan-description {
    font-size: 0.875rem;
  }
}

/* ========================================
   Section Vector Graphics - Global
   ======================================== */
.section-vector {
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 0;
}

.vector-3d {
  width: 100%;
  height: 100%;
  animation: float-gentle 15s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.05));
}

@keyframes float-gentle {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -15px, 0) rotate(5deg);
  }
}

/* Vector Positions - Trust Section */
.vector-left {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.vector-right {
  top: 30%;
  right: 5%;
  animation-delay: 5s;
}

/* Vector Positions - Features Section */
.vector-top-left {
  top: 10%;
  left: 8%;
  animation-delay: 2s;
}

.vector-top-right {
  top: 15%;
  right: 8%;
  animation-delay: 7s;
}

.vector-bottom-center {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 12s;
}

/* Vector Positions - How It Works */
.vector-left-center {
  top: 40%;
  left: 3%;
  animation-delay: 3s;
}

.vector-right-center {
  top: 50%;
  right: 3%;
  animation-delay: 9s;
}

/* Vector Positions - Pricing */
.vector-pricing-1 {
  top: 20%;
  left: 10%;
  width: 100px;
  height: 100px;
  animation-delay: 4s;
}

.vector-pricing-2 {
  bottom: 15%;
  right: 10%;
  width: 100px;
  height: 100px;
  animation-delay: 11s;
}

/* Vector Positions - Marketplace */
.vector-market-1 {
  top: 25%;
  left: 5%;
  animation-delay: 6s;
}

.vector-market-2 {
  bottom: 20%;
  right: 5%;
  animation-delay: 13s;
}

/* Hide vectors on small screens */
@media (max-width: 768px) {
  .section-vector {
    display: none;
  }
}

/* ========================================
   Trust Section
   ======================================== */
.trust-section {
  position: relative;
  padding: var(--space-16) 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  overflow: hidden;
}

.trust-text {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-6);
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.trust-badge:nth-child(1) {
  animation-delay: 0.1s;
}

.trust-badge:nth-child(2) {
  animation-delay: 0.2s;
}

.trust-badge:nth-child(3) {
  animation-delay: 0.3s;
}

.trust-badge:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.trust-badge:hover {
  transform: translateY(-6px) scale(1.05);
}

.trust-icon {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.trust-label {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-700);
}

/* ========================================
   Section Styles
   ======================================== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.section-title {
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
  line-height: 1.2;
  letter-spacing: -1px;
}

.section-description {
  font-size: var(--text-xl);
  color: var(--color-gray-600);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section-title {
    font-size: var(--text-3xl);
  }
  
  .section-description {
    font-size: var(--text-base);
  }
}

/* ========================================
   Features Section
   ======================================== */
.features {
  position: relative;
  padding: var(--space-24) 0;
  background-color: var(--color-gray-50);
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.feature-card {
  background-color: var(--color-white);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  will-change: transform, box-shadow;
  transform: translateZ(0);
}

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

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 25px 50px -10px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.feature-icon-large {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: var(--space-4);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon-large {
  transform: scale(1.15) translateY(-5px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-radius: var(--radius-xl);
  color: var(--color-primary);
  margin: 0 auto var(--space-6);
}

.feature-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-3);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-description {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  font-weight: var(--font-weight-medium);
}

/* Colorful Feature Cards */
.feature-orange {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  border-color: rgba(255, 107, 107, 0.3);
}

.feature-blue {
  background: linear-gradient(135deg, #4d96ff 0%, #2563eb 100%);
  border-color: rgba(77, 150, 255, 0.3);
}

.feature-green {
  background: linear-gradient(135deg, #6bcf7f 0%, #38d39f 100%);
  border-color: rgba(107, 207, 127, 0.3);
}

.feature-purple {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
  border-color: rgba(167, 139, 250, 0.3);
}

.feature-pink {
  background: linear-gradient(135deg, #ff85c0 0%, #f06595 100%);
  border-color: rgba(255, 133, 192, 0.3);
}

.feature-teal {
  background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
  border-color: rgba(45, 212, 191, 0.3);
}

@media (max-width: 968px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
  position: relative;
  padding: var(--space-24) 0;
  overflow: hidden;
}

.steps-container {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
}

.step-card {
  flex: 1;
  background-color: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: fadeInUp 0.7s ease-out forwards;
  will-change: transform, box-shadow;
  transform: translateZ(0);
}

.step-card:nth-child(1) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.4s; }
.step-card:nth-child(5) { animation-delay: 0.6s; }

.step-card:hover {
  border-color: var(--color-primary);
  box-shadow: 
    0 20px 40px -10px rgba(37, 99, 235, 0.3),
    0 10px 20px -5px rgba(37, 99, 235, 0.2);
  transform: translateY(-8px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.step-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-3);
}

.step-description {
  font-size: var(--text-base);
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.step-visual {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  position: relative;
  overflow: hidden;
}

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

.step-card:hover .step-visual::before {
  opacity: 1;
}

.template-preview {
  width: 70px;
  height: 90px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.template-preview:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.template-icon {
  font-size: 2rem;
}

.editor-mockup {
  width: 100%;
}

.editor-toolbar {
  height: 30px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0 var(--space-4);
}

.toolbar-item {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.step-card:hover .toolbar-item {
  transform: scale(1.2);
}

.editor-content {
  padding: var(--space-4);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.editor-line {
  height: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
  border-radius: var(--radius-sm);
  width: 100%;
}

.editor-line.short {
  width: 70%;
}

.launch-animation {
  position: relative;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rocket {
  font-size: 3.5rem;
  animation: launch 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

@keyframes launch {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-25px) rotate(5deg);
  }
}

.launch-trail {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(37, 99, 235, 0.3) 100%);
  border-radius: 2px;
  animation: trail 3s ease-in-out infinite;
}

@keyframes trail {
  0%, 100% {
    opacity: 0.3;
    height: 40px;
  }
  50% {
    opacity: 0.6;
    height: 60px;
  }
}

/* Step Decoration */
.step-decoration {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 60px;
  height: 60px;
  opacity: 0.15;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-decoration {
  opacity: 0.3;
  transform: rotate(15deg) scale(1.1);
}

.step-svg {
  width: 100%;
  height: 100%;
}

.step-connector {
  width: 60px;
  height: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  flex-shrink: 0;
  opacity: 0;
  animation: fadeIn 0.6s ease-out 0.5s forwards;
}

.connector-svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 968px) {
  .steps-container {
    flex-direction: column;
  }
  
  .step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gray-300), transparent);
    margin: 0 auto;
  }
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
  position: relative;
  padding: var(--space-24) 0;
  background-color: var(--color-gray-50);
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background-color: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: fadeInUp 0.7s ease-out forwards;
  will-change: transform, box-shadow;
  transform: translateZ(0);
}

.pricing-card:nth-child(1) { animation-delay: 0.2s; }
.pricing-card:nth-child(2) { animation-delay: 0.4s; }
.pricing-card:nth-child(3) { animation-delay: 0.6s; }

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 25px 50px -10px rgba(0, 0, 0, 0.25),
    0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: 
    0 20px 40px -10px rgba(37, 99, 235, 0.3),
    0 10px 20px -5px rgba(37, 99, 235, 0.2);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 
    0 30px 60px -10px rgba(37, 99, 235, 0.4),
    0 15px 30px -5px rgba(37, 99, 235, 0.3);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  box-shadow: var(--shadow-md);
}

.pricing-header {
  text-align: center;
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-gray-200);
  margin-bottom: var(--space-8);
}

.plan-name {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.price-currency {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-700);
}

.price-amount {
  font-size: var(--text-6xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-gray-900);
  line-height: 1;
}

.price-period {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  margin-left: var(--space-2);
}

.plan-description {
  font-size: var(--text-base);
  color: var(--color-gray-600);
}

.plan-features {
  margin-bottom: var(--space-8);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.check-icon {
  flex-shrink: 0;
  color: var(--color-success);
  margin-top: 2px;
}

.feature-item span {
  font-size: var(--text-base);
  color: var(--color-gray-700);
  line-height: 1.6;
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
  width: 100%;
}

@media (max-width: 968px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
}

/* ========================================
   Marketplace Section
   ======================================== */
.marketplace {
  position: relative;
  padding: var(--space-24) 0;
  overflow: hidden;
}

.marketplace-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.marketplace-description {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.marketplace-features {
  margin-bottom: var(--space-8);
}

.marketplace-feature {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.feature-icon-small {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
}

.marketplace-feature h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-1);
}

.marketplace-feature p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.marketplace-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
  will-change: transform, box-shadow;
  transform: translateZ(0);
}

.marketplace-card:nth-child(1) { animation-delay: 0.1s; }
.marketplace-card:nth-child(2) { animation-delay: 0.15s; }
.marketplace-card:nth-child(3) { animation-delay: 0.2s; }
.marketplace-card:nth-child(4) { animation-delay: 0.25s; }
.marketplace-card:nth-child(5) { animation-delay: 0.3s; }
.marketplace-card:nth-child(6) { animation-delay: 0.35s; }

.marketplace-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 
    0 15px 35px -5px rgba(0, 0, 0, 0.2),
    0 8px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.marketplace-card:hover .mp-icon {
  transform: scale(1.2) rotate(5deg);
}

.mp-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.mp-name {
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-1);
}

.mp-category {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
}

@media (max-width: 968px) {
  .marketplace-content {
    grid-template-columns: 1fr;
  }
  
  .marketplace-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-floating-blocks {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.cta-float-block {
  position: absolute;
  font-size: 3rem;
  opacity: 0.25;
  animation: floatSlow 12s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.cta-float-block:nth-child(1) { animation-delay: 0s; }
.cta-float-block:nth-child(2) { animation-delay: 2s; }
.cta-float-block:nth-child(3) { animation-delay: 4s; }
.cta-float-block:nth-child(4) { animation-delay: 6s; }
.cta-float-block:nth-child(5) { animation-delay: 8s; }
.cta-float-block:nth-child(6) { animation-delay: 10s; }

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* CTA Vector Graphics */
.cta-vector {
  position: absolute;
  width: 150px;
  height: 150px;
  pointer-events: none;
  opacity: 0.6;
}

.cta-vector-1 {
  top: 10%;
  left: 8%;
  animation: float-gentle 18s ease-in-out infinite;
}

.cta-vector-2 {
  bottom: 15%;
  right: 8%;
  animation: float-gentle 18s ease-in-out infinite;
  animation-delay: 9s;
}

.vector-3d-large {
  width: 100%;
  height: 100%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.cta-description {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.cta-buttons .btn-primary {
  background-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: 
    var(--shadow-xl),
    0 0 0 0 rgba(255, 255, 255, 0.4);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
}

.cta-main-button {
  animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
  0%, 100% {
    box-shadow: 
      var(--shadow-xl),
      0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 
      var(--shadow-2xl),
      0 0 0 15px rgba(255, 255, 255, 0);
  }
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    var(--shadow-2xl),
    0 0 0 0 rgba(255, 255, 255, 0);
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.cta-note {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .cta-title {
    font-size: var(--text-3xl);
  }
  
  .cta-description {
    font-size: var(--text-base);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ========================================
   Footer
   ======================================== */
.footer {
  position: relative;
  background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-gray-800) 100%);
  color: var(--color-gray-400);
  padding: var(--space-20) 0 var(--space-8);
  overflow: hidden;
}

/* Footer Vector Graphics */
.footer-vector {
  position: absolute;
  width: 100px;
  height: 100px;
  pointer-events: none;
  opacity: 0.4;
}

.footer-vector-1 {
  top: 15%;
  left: 10%;
  animation: float-gentle 16s ease-in-out infinite;
}

.footer-vector-2 {
  top: 50%;
  right: 8%;
  animation: float-gentle 20s ease-in-out infinite;
  animation-delay: 5s;
}

.footer-vector-3 {
  bottom: 20%;
  left: 15%;
  animation: float-gentle 18s ease-in-out infinite;
  animation-delay: 10s;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-logo .logo-text {
  color: var(--color-white);
}

.footer-description {
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.social-links {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-gray-400);
  transition: all var(--transition-base);
}

.social-link:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-title {
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
}

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Animations & Effects
   ======================================== */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient 15s ease infinite;
}

/* Scroll reveal animations */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-up {
  animation: revealUp 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.in-view {
  opacity: 1 !important;
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
  0%, 100% {
    box-shadow: 
      0 4px 14px 0 rgba(37, 99, 235, 0.39),
      0 2px 8px 0 rgba(37, 99, 235, 0.2);
  }
  50% {
    box-shadow: 
      0 6px 20px 0 rgba(37, 99, 235, 0.6),
      0 3px 12px 0 rgba(37, 99, 235, 0.4),
      0 0 0 8px rgba(37, 99, 235, 0.1);
  }
}

.pulse-button {
  animation: pulse 2s ease-in-out infinite;
}

/* Shake animation for attention */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.shake-on-hover:hover {
  animation: shake 0.5s ease-in-out;
}

/* ========================================
   Responsive Utilities
   ======================================== */
@media (max-width: 640px) {
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
  
  .stat-divider {
    display: none;
  }
}

/* ========================================
   Coming Soon Modal - Simple & Lit
   ======================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--space-4);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.95) 0%, 
    rgba(59, 130, 246, 0.95) 100%);
  border-radius: 30px;
  max-width: 420px;
  width: 100%;
  padding: var(--space-10);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: scale(0.8) translateY(30px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

/* Animated Background Glow */
.modal-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: modal-glow 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes modal-glow {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.5;
  }
  50% {
    transform: translate(20px, 20px);
    opacity: 0.8;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  font-size: 20px;
  color: white;
  font-weight: bold;
  line-height: 1;
  padding: 0;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg) scale(1.1);
}

.modal-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Big Main Icon */
.modal-main-icon {
  font-size: 5rem;
  margin-bottom: var(--space-6);
  animation: modal-icon-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

@keyframes modal-icon-bounce {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  60% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Modal Title - Simple & Bold */
.modal-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--space-4);
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  animation: modal-title-slide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}

@keyframes modal-title-slide {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Modal Description - Short & Sweet */
.modal-description {
  font-size: clamp(1rem, 3vw, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: modal-title-slide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s backwards;
}

.modal-btn {
  padding: 18px 50px;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
  background: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: modal-title-slide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s backwards;
}

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

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

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

.modal-btn:active {
  transform: translateY(-1px) scale(1);
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .modal-container {
    padding: var(--space-8);
  }
  
  .modal-title {
    font-size: var(--text-3xl);
  }
  
  .modal-title-gradient {
    font-size: var(--text-4xl);
  }
  
  .modal-icons {
    gap: var(--space-2);
    height: 80px;
  }
  
  .modal-icon {
    font-size: 2rem;
  }
  
  .modal-features {
    gap: var(--space-3);
  }
  
  .modal-feature {
    padding: var(--space-3);
    min-width: 100px;
  }
  
  .modal-description {
    font-size: var(--text-base);
  }
  
  /* Adjust bubble sizes for mobile */
  .bubble-1 { width: 35px; height: 35px; }
  .bubble-2 { width: 25px; height: 25px; }
  .bubble-3 { width: 30px; height: 30px; }
  .bubble-4 { width: 22px; height: 22px; }
  .bubble-5 { width: 28px; height: 28px; }
  .bubble-6 { width: 24px; height: 24px; }
  .bubble-7 { width: 32px; height: 32px; }
  .bubble-8 { width: 26px; height: 26px; }
}

 
 

/* ========================================
   Premium overrides & enhancements
   ======================================== */
body {
  background-image: none;
  background-color: #ffffff;
  color: #1a1a2e;
}

/* ========================================
   ANTI-FLICKER: Smooth Animation System
   ======================================== */

/* Anti-flicker: backface visible; GPU layers on animated elements only */
*,
*::before,
*::after {
  backface-visibility: visible !important;
  -webkit-backface-visibility: visible !important;
}

/* GPU-promote only elements that actually animate transforms */
.feature-card,
.pricing-card,
.step-card,
.marketplace-card,
.floating-element,
.feature-showcase,
.trust-badge,
.btn-hero-primary,
.btn-hero-secondary,
.btn-primary,
.btn-outline,
.btn-nav-primary,
.btn-nav-secondary,
.bubble-3d,
.gradient-orb {
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Remove preserve-3d that causes flicker on cards */
.feature-showcase,
.block-3d {
  transform-style: flat !important;
}

/* Replace 'transition: all' with specific properties to avoid
   transitioning layout-triggering props (width, height, padding, etc.) */
.feature-card,
.pricing-card,
.step-card,
.marketplace-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease !important;
}

.floating-element {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.feature-showcase {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.trust-badge {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-hero-primary,
.btn-hero-secondary,
.btn-primary,
.btn-outline,
.btn-nav-primary,
.btn-nav-secondary {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.2s ease,
              background-color 0.2s ease,
              border-color 0.2s ease !important;
}

.nav-link {
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.2s ease, opacity 0.2s ease !important;
}

.logo-enhanced {
  transition: none !important;
}

/* Fix entry animations - set final state, don't rely on forwards fill
   which can cause repaint flickers on scroll */
.feature-card,
.pricing-card,
.step-card,
.trust-badge,
.section-header,
.step-connector {
  opacity: 1 !important;
  animation: none !important;
}

/* Smooth fade-in only on first load via JS intersection observer.
   The in-view class handles visibility. Remove CSS-only animations
   that fire immediately and cause layout shift / flicker. */
.hero-content,
.hero-visual,
.hero-badge-wrapper,
.hero-cta,
.hero-social-proof {
  animation-fill-mode: both;
}

/* Prevent content block shimmer flicker */
.content-block {
  animation: none !important;
  opacity: 1 !important;
}

/* Smooth icon transitions - only transform, not 'all' */
.feature-icon-large,
.element-icon,
.step-number,
.block-icon-small,
.btn-icon-play {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Smooth hover states without layout recalc */
.feature-card:hover {
  transform: translateY(-6px) translateZ(0) !important;
}

.pricing-card:hover {
  transform: translateY(-6px) translateZ(0) !important;
}

.pricing-card.featured {
  transform: scale(1.03) translateZ(0) !important;
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px) translateZ(0) !important;
}

.step-card:hover {
  transform: translateY(-4px) translateZ(0) !important;
}

.marketplace-card:hover {
  transform: translateY(-4px) translateZ(0) !important;
}

.trust-badge:hover {
  transform: translateY(-3px) translateZ(0) !important;
}

.floating-element:hover {
  transform: translateY(-6px) scale(1.04) translateZ(0) !important;
}

.feature-showcase:hover {
  transform: translateY(-4px) translateZ(0) !important;
}

/* Bubble and orb durations now set in Hero Animation section below */

/* --- NAVBAR - Clean & Minimal --- */
.navbar {
  background: linear-gradient(180deg, rgba(238, 242, 255, 0.94) 0%, rgba(224, 231, 255, 0.9) 100%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.navbar::before {
  display: none;
}

.navbar.scrolled {
  background: linear-gradient(180deg, rgba(235, 239, 255, 0.98) 0%, rgba(224, 231, 255, 0.96) 100%);
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.1);
  border-bottom-color: rgba(37, 99, 235, 0.16);
}

/* Remove navbar decorative blobs */
.navbar-decoration,
.nav-wrapper::before,
.nav-wrapper::after,
.scroll-progress-bar {
  display: none !important;
}

.nav-wrapper {
  height: 72px;
}

/* Clean logo */
.logo-enhanced {
  padding: 6px 12px;
}

.logo-enhanced::before {
  display: none;
}

.logo-enhanced:hover {
  transform: none;
  box-shadow: none;
}

.logo-icon::after {
  display: none;
}

.logo-icon img {
  filter: none;
  transition: transform 0.2s ease;
}

.logo-enhanced:hover .logo-icon img {
  transform: scale(1.05);
  filter: none;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #1e3a8a;
}

.logo-enhanced:hover .logo-text {
  color: #1d4ed8;
}

/* Nav links – hover & focus UI/UX */
.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #4a4a6a;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(59, 130, 246, 0.06) 100%);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--color-primary);
  transform: translateY(-1px);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover::after {
  width: 70%;
}

.nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

.nav-link.active::before {
  opacity: 1;
  background: rgba(37, 99, 235, 0.06);
}

.nav-link.active::after {
  width: 70%;
}

/* Clean nav buttons */
.btn-nav-secondary {
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a4a6a;
  background: transparent;
  border: 1.5px solid #e0e0e8;
  border-radius: 10px;
}

.btn-nav-secondary::before {
  display: none;
}

.btn-nav-secondary:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(37, 99, 235, 0.04);
  transform: none;
  box-shadow: none;
}

.btn-nav-primary {
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.btn-nav-primary::before {
  display: none;
}

.btn-nav-primary:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.btn-nav-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

.nav-badge {
  top: -8px;
  right: -10px;
  font-size: 7px;
  font-weight: 800;
  padding: 2px 6px;
  letter-spacing: 0.5px;
  animation: none;
  box-shadow: 0 2px 6px rgba(255, 107, 107, 0.35), 0 0 0 2px white;
  z-index: 2;
}

/* --- HERO SECTION - Clean & Spacious --- */
.hero {
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 60%, #f4f5ff 100%);
  padding: calc(72px + 72px) 0 80px;
  min-height: 90vh;
}

/* Reduce bubble visibility significantly */
.bubble-3d {
  opacity: 0.25;
  box-shadow:
    inset 0 -4px 8px rgba(255, 255, 255, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.06);
  animation-duration: 20s;
}

/* Soften gradient orbs */
.gradient-orb {
  opacity: 0.03;
  filter: blur(150px);
}

/* Hero layout */
.hero-layout {
  gap: 60px;
  min-height: calc(90vh - 232px);
}

.hero-content {
  max-width: 580px;
}

/* Clean badge */
.hero-badge {
  background: white;
  border: 1px solid #e8e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 10px 18px;
  gap: 10px;
}

.hero-badge-green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18) 0%, rgba(22, 163, 74, 0.25) 100%);
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.2);
}
.hero-badge-green .badge-text { color: #15803d; font-weight: 700; }

.hero-badge-blue {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.22) 100%);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.25);
}
.hero-badge-blue .badge-text { color: #1d4ed8; font-weight: 700; }

.badge-text {
  color: #5a5a7a;
  font-size: 0.8125rem;
  font-weight: 500;
}

.badge-shine {
  display: none;
}

.badge-with-shine {
  background: linear-gradient(145deg, #15803d 0%, #16a34a 35%, #22c55e 65%, #4ade80 100%) !important;
  border: none !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 -1px 0 rgba(0, 0, 0, 0.12) inset,
    2px 2px 0 rgba(255, 255, 255, 0.25),
    0 4px 12px rgba(21, 128, 61, 0.45),
    0 8px 24px rgba(34, 197, 94, 0.35),
    0 12px 32px rgba(0, 0, 0, 0.18) !important;
}
.badge-with-shine .badge-shine {
  display: block;
}
.badge-with-shine .badge-text {
  color: #fff !important;
  font-weight: 800 !important;
}

.badge-dot {
  animation-duration: 3s;
}

/* Clean title */
.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1a1a2e;
}

.title-gradient {
  animation: none;
  background-size: 100% auto;
}

/* Clean description */
.hero-description {
  font-size: 1.1875rem;
  color: #6b6b8a;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 450px;
}

/* Clean CTA Buttons */
.hero-cta {
  gap: 16px;
  margin-bottom: 40px;
}

.btn-hero-primary {
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 14px;
  background: linear-gradient(145deg, #1d4ed8 0%, #2563eb 35%, #3b82f6 65%, #2563eb 100%) !important;
  background-size: 200% 200% !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 -1px 0 rgba(0, 0, 0, 0.12) inset,
    0 4px 0 rgba(29, 78, 216, 0.35),
    0 8px 24px rgba(37, 99, 235, 0.4) !important;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 5px 0 rgba(29, 78, 216, 0.3),
    0 12px 32px rgba(37, 99, 235, 0.45) !important;
}

.btn-hero-primary:active {
  transform: translateY(1px) scale(0.99);
}

.btn-content {
  gap: 10px;
}

.btn-icon {
  font-size: 1.25rem;
}

.btn-text {
  font-size: 1rem;
  font-weight: 600;
}

.btn-glow {
  display: none !important;
}

.btn-hero-secondary {
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #4a4a6a;
  background: white;
  border: 1.5px solid #e0e0e8;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-hero-secondary:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(37, 99, 235, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.btn-icon-play {
  width: 24px;
  height: 24px;
  font-size: 10px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

/* Clean social proof */
.hero-social-proof {
  gap: 12px;
}

.proof-stars {
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.proof-description {
  font-size: 0.8125rem;
  color: #8a8aa0;
}

/* Clean hero visual */
.visual-container {
  height: 460px;
}

.feature-showcase {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: none;
  padding: 24px;
  border-radius: 20px;
  width: 480px !important;
  min-width: 480px !important;
  max-width: 480px !important;
}

.feature-showcase:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 6px 16px rgba(0, 0, 0, 0.06);
}

/* Disable all child animations inside feature-showcase - move as single unit */
.feature-showcase * {
  animation: none !important;
  transform: none !important;
  position: relative !important;
}

.feature-showcase .content-block,
.feature-showcase .showcase-badge,
.feature-showcase .showcase-header,
.feature-showcase .showcase-content,
.feature-showcase .content-row,
.feature-showcase .block-icon-small {
  animation: none !important;
  transform: none !important;
}

.showcase-badge {
  animation: none;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
  top: 12px !important;
  right: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  padding: 6px 16px !important;
  font-size: 0.75rem !important;
  border-radius: 20px !important;
  width: auto !important;
  display: inline-block !important;
}

/* Content blocks - each with unique dynamic wander path */
@keyframes wander-block-1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  22% { transform: translate(-12px, -18px) rotate(-2.5deg); }
  48% { transform: translate(15px, -25px) rotate(2deg); }
  74% { transform: translate(-8px, -15px) rotate(-1.5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes wander-block-2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  28% { transform: translate(14px, -16px) rotate(2deg); }
  56% { transform: translate(-10px, -22px) rotate(-2.5deg); }
  78% { transform: translate(8px, -18px) rotate(1.5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes wander-block-3 {
  0% { transform: translate(0, 0) rotate(0deg); }
  30% { transform: translate(-15px, -20px) rotate(-2deg); }
  60% { transform: translate(12px, -28px) rotate(2.5deg); }
  85% { transform: translate(-8px, -14px) rotate(-1.5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes wander-block-4 {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, -18px) rotate(2deg); }
  50% { transform: translate(-14px, -24px) rotate(-2.5deg); }
  75% { transform: translate(8px, -20px) rotate(1.5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.content-block {
  opacity: 1;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(59, 130, 246, 0.03) 100%);
  will-change: transform;
}

/* Only animate blocks that are NOT inside feature-showcase */
.hero-visual .block-1:not(.feature-showcase .block-1) { animation: wander-block-1 14s ease-in-out infinite !important; }
.hero-visual .block-2:not(.feature-showcase .block-2) { animation: wander-block-2 16s ease-in-out infinite !important; }
.hero-visual .block-3:not(.feature-showcase .block-3) { animation: wander-block-3 15s ease-in-out infinite !important; }
.hero-visual .block-4:not(.feature-showcase .block-4) { animation: wander-block-4 17s ease-in-out infinite !important; }

/* Disable animations for blocks inside feature-showcase */
.feature-showcase .block-1,
.feature-showcase .block-2,
.feature-showcase .block-3,
.feature-showcase .block-4 {
  animation: none !important;
  transform: none !important;
}

.content-block:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.06) 100%);
}

/* Floating elements */
.floating-element {
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  animation-duration: 16s;
}

.floating-element:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.floating-element:hover .element-icon {
  transform: scale(1.1);
}

.element-icon {
  font-size: 2rem;
}

.element-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Remove vector graphics clutter */
.vector-graphic {
  opacity: 0.04;
}

/* Clean scroll indicator */
.scroll-indicator {
  bottom: 32px;
}

.scroll-mouse {
  border-color: #c8c8d8;
}

.scroll-wheel {
  background: #c8c8d8;
}

.scroll-text {
  color: #a0a0b8;
  font-size: 0.625rem;
  letter-spacing: 2px;
}

/* --- TRUST SECTION - Clean --- */
.trust-section {
  padding: 48px 0;
  border-bottom: 1px solid #f0f0f5;
}

.trust-text {
  font-size: 0.75rem;
  color: #a0a0b8;
  letter-spacing: 2px;
}

.trust-badge:hover {
  transform: translateY(-3px);
}

.trust-icon {
  font-size: 1.5rem;
}

.trust-label {
  font-size: 0.8125rem;
  color: #5a5a7a;
}

/* --- SECTIONS - Clean Headers --- */
.section-header {
  margin-bottom: 56px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.5px;
  color: #1a1a2e;
}

.section-description {
  font-size: 1.125rem;
  color: #6b6b8a;
}

/* --- FEATURES - Clean Cards --- */
.features {
  padding: 96px 0;
  background: #fafbff;
}

.features-grid {
  gap: 24px;
}

.feature-card {
  padding: 36px;
  border-radius: 20px;
  border: none;
}

.feature-card::after {
  display: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.18);
}

.feature-icon-large {
  font-size: 3rem;
  margin-bottom: 16px;
}

.feature-card:hover .feature-icon-large {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-description {
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* --- HOW IT WORKS - Clean --- */
.how-it-works {
  padding: 96px 0;
}

.step-card {
  border: 1.5px solid #e8e8f0;
  border-radius: 20px;
  padding: 32px;
}

.step-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
  transform: translateY(-4px);
}

.step-number {
  width: 48px;
  height: 48px;
  font-size: 1.125rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.step-card:hover .step-number {
  transform: scale(1.05);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-visual {
  min-height: 120px;
  padding: 20px;
  border-radius: 14px;
}

.step-decoration {
  opacity: 0.08;
}

/* --- PRICING - Clean --- */
.pricing {
  padding: 96px 0;
  background: #fafbff;
}

.pricing-grid {
  gap: 24px;
}

.pricing-card {
  border: 1.5px solid #e8e8f0;
  border-radius: 20px;
  padding: 36px;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.2);
}

.popular-badge {
  font-size: 0.75rem;
  padding: 6px 16px;
}

.plan-name {
  font-size: 1.25rem;
}

.price-amount {
  font-size: 3rem;
}

.plan-features {
  margin-bottom: 28px;
}

.feature-item {
  margin-bottom: 12px;
}

.feature-item span {
  font-size: 0.9375rem;
}

/* Clean buttons in pricing */
.pricing-card .btn-primary {
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 0.9375rem;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.pricing-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.pricing-card .btn-outline {
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 0.9375rem;
}

.pulse-button {
  animation: none !important;
}

/* --- MARKETPLACE - Clean --- */
.marketplace {
  padding: 96px 0;
}

.marketplace-description {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #6b6b8a;
}

.marketplace-feature h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a2e;
}

.marketplace-feature p {
  font-size: 0.8125rem;
  color: #8a8aa0;
}

.marketplace-card {
  border-radius: 16px;
  border: 1.5px solid #e8e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.marketplace-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
}

/* --- CTA SECTION - Clean --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 80px 0;
}

.cta-float-block {
  opacity: 0.12;
}

.cta-vector {
  opacity: 0.08;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.cta-description {
  font-size: 1.125rem;
  opacity: 0.9;
}

.cta-buttons {
  gap: 16px;
}

.cta-buttons .btn-primary,
.cta-main-button {
  background: white !important;
  color: var(--color-primary) !important;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn-primary:hover,
.cta-main-button:hover {
  background: white !important;
  color: var(--color-primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.12);
}

.cta-buttons .btn-primary::before {
  display: none;
}

.cta-note {
  font-size: 0.8125rem;
  opacity: 0.7;
}

/* --- FOOTER - Clean --- */
.footer {
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer .footer-logo .logo-text {
  color: #fff;
}

.footer .footer-logo:hover .logo-text {
  color: rgba(255, 255, 255, 0.92);
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-vector {
  opacity: 0.04;
}

/* --- MODAL - Clean --- */
.modal-container {
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.modal-main-icon {
  font-size: 4rem;
  animation-duration: 0.4s;
}

.modal-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.modal-btn {
  border-radius: 14px;
  padding: 14px 40px;
  font-size: 1rem;
}

/* ========================================
   HERO ANIMATION OVERRIDES
   Slow, gentle floating. No spin.
   ======================================== */

/* --- Bubbles: dynamic drift with rotation and scale --- */
@keyframes bubble-float {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate3d(20px, -35px, 0) rotate(8deg) scale(1.1);
  }
  66% {
    transform: translate3d(-18px, -25px, 0) rotate(-6deg) scale(0.95);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

/* --- Feature showcase: dynamic organic path --- */
@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(12px, -18px) rotate(2deg);
  }
  40% {
    transform: translate(-10px, -25px) rotate(-1.5deg);
  }
  60% {
    transform: translate(15px, -15px) rotate(2.5deg);
  }
  80% {
    transform: translate(-8px, -20px) rotate(-2deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* --- Floating element 1 (Beautiful - top right): wander path A --- */
@keyframes float-wander-a {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  15% {
    transform: translate(-15px, -20px) rotate(-3deg);
  }
  35% {
    transform: translate(10px, -30px) rotate(2deg);
  }
  55% {
    transform: translate(18px, -18px) rotate(-2.5deg);
  }
  75% {
    transform: translate(-12px, -25px) rotate(3deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* --- Floating element 2 (Lightning Fast - left): wander path B --- */
@keyframes float-wander-b {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(20px, -15px) rotate(2.5deg);
  }
  45% {
    transform: translate(-14px, -28px) rotate(-2deg);
  }
  70% {
    transform: translate(10px, -22px) rotate(1.5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* --- Floating element 3 (Mobile Ready - bottom right): wander path C --- */
@keyframes float-wander-c {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-18px, -12px) rotate(-2deg);
  }
  50% {
    transform: translate(12px, -25px) rotate(2.5deg);
  }
  75% {
    transform: translate(-10px, -18px) rotate(-1.5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* --- 3D blocks: dynamic movement with rotation --- */
@keyframes float3d {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate(15px, -30px) rotate(10deg) scale(1.05);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* --- Section vector shapes: very slow drift, no rotation --- */
@keyframes float-gentle {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* --- Navbar decorations: barely perceptible drift --- */
@keyframes float-nav-left {
  0%, 100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-54%);
  }
}

@keyframes float-nav-right {
  0%, 100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-46%);
  }
}

/* --- Vector graphics: no rotation at all, just very slow bob --- */
@keyframes rotate-subtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* --- CTA floating emojis: slow drift, no rotation --- */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* --- Rocket: gentle hover, no rotation --- */
@keyframes launch {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* --- Remove shimmer on title for professional feel --- */
@keyframes shimmer {
  0%, 100% {
    background-position: 0% center;
  }
}

/* --- No shimmer on content blocks --- */
@keyframes shimmer-block {
  0%, 100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
  }
}

/* --- Speed up bubble animations --- */
.bubble-3d {
  animation-duration: 12s !important;
  animation-timing-function: ease-in-out !important;
}

.bubble-1 { animation-duration: 10s !important; }
.bubble-2 { animation-duration: 12s !important; }
.bubble-3 { animation-duration: 13s !important; }
.bubble-4 { animation-duration: 11s !important; }
.bubble-5 { animation-duration: 14s !important; }
.bubble-6 { animation-duration: 11.5s !important; }
.bubble-7 { animation-duration: 12.5s !important; }
.bubble-8 { animation-duration: 10.5s !important; }

.gradient-orb {
  animation-duration: 18s !important;
  animation-timing-function: ease-in-out !important;
}

/* Feature showcase card - dynamic organic wander */
@keyframes float-showcase {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  18% {
    transform: translate(10px, -15px) rotate(1.5deg);
  }
  36% {
    transform: translate(-12px, -22px) rotate(-2deg);
  }
  54% {
    transform: translate(14px, -18px) rotate(1.8deg);
  }
  72% {
    transform: translate(-8px, -20px) rotate(-1.5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.feature-showcase {
  animation: float-showcase 10s ease-in-out infinite !important;
}

/* Each floating element gets unique wander path and faster duration */
.floating-element {
  animation-timing-function: ease-in-out !important;
}

.element-1 {
  animation: float-wander-a 12s ease-in-out infinite !important;
}

.element-2 {
  animation: float-wander-b 14s ease-in-out infinite !important;
}

.element-3 {
  animation: float-wander-c 13s ease-in-out infinite !important;
}

/* Vector graphics - each gets unique dynamic wander */
.vector-graphic {
  animation-timing-function: ease-in-out !important;
}

.graphic-1 {
  animation: float-wander-a 18s ease-in-out infinite !important;
}

.graphic-2 {
  animation: float-wander-b 20s ease-in-out infinite !important;
}

.graphic-3 {
  animation: float-wander-c 19s ease-in-out infinite !important;
}

.vector-3d {
  animation-duration: 22s !important;
  animation-timing-function: ease-in-out !important;
}

.cta-float-block {
  animation-duration: 18s !important;
  animation-timing-function: ease-in-out !important;
}

/* ========================================
   RESPONSIVE - Tablet Landscape (1024px)
   ======================================== */
@media (max-width: 1024px) {
  .nav-wrapper {
    height: 68px;
  }

  .hero {
    padding: calc(68px + 32px) 0 60px;
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    min-height: auto;
  }

  .hero-content {
    max-width: 520px;
  }

  .hero-title {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 1.0625rem;
    margin-bottom: 28px;
  }

  .hero-cta {
    gap: 14px;
    margin-bottom: 32px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }

  .visual-container {
    height: 420px;
  }

  .feature-showcase {
    width: 480px !important;
    min-width: 480px !important;
    max-width: 480px !important;
    padding: 20px;
  }

  .floating-element {
    padding: 14px 16px;
  }

  .element-icon {
    font-size: 1.75rem;
  }

  .element-label {
    font-size: 0.6875rem;
  }

  .features,
  .how-it-works,
  .pricing,
  .marketplace {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  }

  .section-description {
    font-size: 1rem;
  }

  /* Features grid 3 cols still fits on tablet landscape */
  .features-grid {
    gap: 20px;
  }

  .feature-card {
    padding: 28px;
  }

  .feature-icon-large {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }

  .feature-title {
    font-size: 1.125rem;
  }

  .feature-description {
    font-size: 0.875rem;
  }

  /* Steps */
  .step-card {
    padding: 24px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .step-title {
    font-size: 1.125rem;
  }

  .step-description {
    font-size: 0.875rem;
    margin-bottom: 16px;
  }

  .step-visual {
    min-height: 110px;
    padding: 16px;
  }

  /* Pricing grid */
  .pricing-grid {
    gap: 20px;
  }

  .pricing-card {
    padding: 28px;
  }

  .plan-name {
    font-size: 1.125rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .feature-item span {
    font-size: 0.875rem;
  }

  /* CTA */
  .cta-section {
    padding: 64px 0;
  }

  .cta-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-buttons .btn-primary {
    font-size: 1rem;
  }

  /* Footer */
  .footer-grid {
    gap: 24px;
  }

  .footer-description {
    font-size: 0.875rem;
  }

  /* Bubbles slightly smaller */
  .bubble-3d {
    opacity: 0.2;
  }
}

/* ========================================
   RESPONSIVE - Tablet Portrait (768px)
   ======================================== */
@media (max-width: 968px) {
  .nav-wrapper {
    height: 64px;
  }

  .hero {
    padding: calc(64px + 28px) 0 48px;
  }

  /* Stack hero layout for portrait tablets */
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .hero-badge-wrapper {
    display: flex;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: auto;
    min-width: 200px;
  }

  .hero-social-proof {
    justify-content: center;
  }

  /* Hero visual centered */
  .hero-visual {
    margin-top: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }

  .visual-container {
    height: auto;
    min-height: 420px;
    padding: 0;
  }

  .feature-showcase {
    width: calc(100vw - 48px) !important;
    min-width: 0 !important;
    max-width: 480px !important;
  }

  /* Features 2-col grid */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-card {
    padding: 28px;
  }

  /* Steps vertical */
  .steps-container {
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }

  .step-card {
    padding: 28px;
  }

  .step-connector {
    width: 2px;
    height: 32px;
    margin: 0 auto;
  }

  /* Pricing single column */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }

  /* Marketplace stack */
  .marketplace-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .marketplace-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .marketplace-description {
    max-width: 520px;
  }

  .marketplace-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 500px;
    margin: 0 auto;
  }

  /* CTA */
  .cta-section {
    padding: 56px 0;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Footer 2-col */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 400px;
  }

  .features,
  .how-it-works,
  .pricing,
  .marketplace {
    padding: 64px 0;
  }

  /* Bubbles subtle on tablet */
  .bubble-3d {
    opacity: 0.18;
  }

  /* Section vectors hidden */
  .section-vector {
    display: none;
  }
}

/* ========================================
   RESPONSIVE - Small Tablet / Large Phone (768px)
   ======================================== */
@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    min-width: auto;
    justify-content: center;
  }

  .marketplace-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-showcase {
    width: calc(100vw - 48px) !important;
    min-width: 0 !important;
    max-width: 440px !important;
    padding: 20px;
    box-sizing: border-box;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========================================
   RESPONSIVE - Mobile (640px)
   ======================================== */
@media (max-width: 640px) {
  .nav-wrapper {
    height: 60px;
  }

  .hero {
    padding: calc(60px + 24px + 12px) 0 32px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-cta {
    gap: 12px;
    margin-bottom: 24px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 14px 24px;
    font-size: 0.9375rem;
    border-radius: 12px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .marketplace-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    padding: 0 !important;
    max-width: 100% !important;
  }

  .visual-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    padding: 0 !important;
    height: auto !important;
    min-height: 400px !important;
  }
  
  /* Big object - full width on mobile, no narrowing */
  .feature-showcase {
    width: calc(100vw - 48px) !important;
    min-width: 0 !important;
    max-width: 420px !important;
    padding: 24px !important;
    box-sizing: border-box !important;
    transform: none !important;
    margin: 0 auto !important;
  }

  .showcase-badge {
    top: 10px !important;
    font-size: 0.7rem !important;
    padding: 5px 14px !important;
  }

  .features,
  .how-it-works,
  .pricing,
  .marketplace {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  .feature-card {
    padding: 24px;
  }

  .cta-section {
    padding: 48px 0;
  }

  .cta-title {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

  .social-links {
    justify-content: center;
  }

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

  /* Bubbles very subtle on mobile */
  .bubble-3d {
    opacity: 0.15;
  }

  /* Floating elements visible on mobile - no word-breaking, labels intact */
  .floating-element {
    display: flex !important;
    padding: 8px 12px !important;
    gap: 4px !important;
    min-width: auto !important;
    max-width: none !important;
    width: auto !important;
  }

  .floating-element .element-icon {
    font-size: 1.125rem !important;
  }

  .floating-element .element-label {
    font-size: 0.6875rem !important;
    white-space: nowrap !important;
    text-align: center !important;
    line-height: 1.2 !important;
  }

  .floating-element.element-1 { top: 2% !important; right: -4% !important; }
  .floating-element.element-2 { top: 44% !important; left: -8% !important; }
  .floating-element.element-3 { bottom: 8% !important; right: -4% !important; }

  .scroll-indicator {
    display: none;
  }

  /* Mobile text wrap - ensure no overflow on narrow devices */
  .plan-name,
  .feature-title,
  .step-title,
  .trust-label {
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
  }
}

/* ========================================
   RESPONSIVE - Extra Small Mobile (375px)
   ======================================== */
@media (max-width: 375px) {
  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 12px 20px;
    font-size: 0.875rem;
  }

  .feature-card {
    padding: 20px;
  }

  .pricing-card {
    padding: 24px;
  }

  .step-card {
    padding: 20px;
  }

  .feature-showcase {
    width: calc(100vw - 32px) !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 16px !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  .showcase-badge {
    top: 8px !important;
    font-size: 0.65rem !important;
    padding: 4px 12px !important;
  }

  .floating-element {
    display: flex !important;
    padding: 6px 10px !important;
    gap: 3px !important;
    max-width: none !important;
    width: auto !important;
  }

  .floating-element .element-icon {
    font-size: 1rem !important;
  }

  .floating-element .element-label {
    font-size: 0.5625rem !important;
    white-space: nowrap !important;
  }

  .vector-graphic {
    width: 44px !important;
    height: 44px !important;
    opacity: 0.05 !important;
  }
}
