/* ============================================
   CROVIO ULTRA-PREMIUM WEBSITE STYLES
   Next-Gen Design - Inspired by Apple, Awwwards Winners
   Features: 3D Effects, Parallax, Bento Grids, Micro-Interactions
   ============================================ */

/* === ROOT VARIABLES === */
:root {
  /* Colors */
  --primary: #FF6B00;
  --primary-light: #FF8F3D;
  --primary-dark: #E85D00;
  --secondary: #1B1F3B;
  --accent: #4F46E5;
  
  /* Premium Color Palette */
  --bg-primary: #FAFBFC;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #F3F4F6;
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --text-tertiary: #9CA3AF;
  
  /* Dark Mode Colors */
  --dark-bg-primary: #0f0b1e;
  --dark-bg-secondary: #1a1410;
  --dark-bg-tertiary: #1a1629;
  
  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --glass-hover: rgba(255, 255, 255, 0.9);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #FF6B00 0%, #FF8F3D 100%);
  --gradient-secondary: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  --gradient-mesh: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
  
  /* Spacing */
  --section-padding: clamp(5rem, 10vw, 12rem);
  --container-max: 1400px;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Blur */
  --blur-sm: blur(8px);
  --blur-md: blur(20px);
  --blur-lg: blur(40px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

/* Ultra-Premium Animated Background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(79, 70, 229, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 143, 61, 0.05) 0%, transparent 60%),
    linear-gradient(135deg, 
      rgba(250, 251, 252, 1) 0%,
      rgba(255, 237, 213, 0.4) 25%,
      rgba(237, 242, 255, 0.5) 50%,
      rgba(255, 230, 250, 0.4) 75%,
      rgba(250, 251, 252, 1) 100%
    );
  background-size: 200% 200%, 200% 200%, 150% 150%, 400% 400%;
  animation: 
    meshMove1 20s ease infinite,
    meshMove2 30s ease infinite,
    meshMove3 25s ease infinite,
    gradientShift 40s ease infinite;
  z-index: -1;
  pointer-events: none;
}

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

@keyframes meshMove1 {
  0%, 100% { background-position: 20% 30%; }
  50% { background-position: 80% 70%; }
}

@keyframes meshMove2 {
  0%, 100% { background-position: 80% 70%; }
  50% { background-position: 20% 30%; }
}

@keyframes meshMove3 {
  0%, 100% { background-position: 50% 50%; }
  50% { background-position: 30% 70%; }
}

::selection {
  background: var(--primary);
  color: white;
}

/* === SCROLL PROGRESS INDICATOR === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 9998;
  transition: transform 0.1s ease-out;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

/* === PREMIUM ANIMATIONS === */
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(50px, -50px) scale(1.05) rotate(5deg);
  }
  50% {
    transform: translate(-30px, 40px) scale(0.95) rotate(-3deg);
  }
  75% {
    transform: translate(40px, 50px) scale(1.02) rotate(3deg);
  }
}

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

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

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

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

/* Premium Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

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

.animate-on-scroll.fade-only {
  transform: none;
}

.animate-on-scroll.zoom-in {
  transform: scale(0.9);
}

.animate-on-scroll.zoom-in.animate-in {
  transform: scale(1);
}

.animate-on-scroll.slide-left {
  transform: translateX(-60px);
}

.animate-on-scroll.slide-left.animate-in {
  transform: translateX(0);
}

.animate-on-scroll.slide-right {
  transform: translateX(60px);
}

.animate-on-scroll.slide-right.animate-in {
  transform: translateX(0);
}

/* === ULTRA-PREMIUM GLASS COMPONENTS === */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  box-shadow: 
    0 8px 32px rgba(31, 38, 135, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.5) 0%, 
    transparent 50%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 
    0 30px 90px rgba(255, 107, 0, 0.2), 
    0 0 100px rgba(255, 107, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-8px) scale(1.02);
}

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

.glass-panel {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(50px) saturate(200%);
  -webkit-backdrop-filter: blur(50px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  box-shadow: 
    0 25px 80px rgba(31, 38, 135, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 0.9),
    inset 0 -2px 0 rgba(255, 255, 255, 0.3);
}

.glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 
    0 8px 24px rgba(255, 107, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.glass-badge:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 32px rgba(255, 107, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.glass-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.0625rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(31, 38, 135, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glass-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}

.glass-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.glass-btn:hover {
  color: white;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 20px 60px rgba(255, 107, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-color: transparent;
}

.glass-btn:hover::before {
  left: 0;
}

.glass-btn:hover::after {
  opacity: 1;
}

.glass-btn svg {
  transition: transform 0.3s ease;
}

.glass-btn:hover svg {
  transform: translateX(4px);
}

/* === CONTAINER === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* === PREMIUM NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: all var(--transition-base);
  box-shadow: 
    0 2px 20px rgba(31, 38, 135, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 8px 40px rgba(31, 38, 135, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.navbar-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo svg {
  display: block;
  color: var(--text-primary);
  transition: transform 0.3s ease;
}

.navbar-logo:hover svg {
  transform: scale(1.05);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  position: relative;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover {
  color: var(--primary);
}

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

.navbar-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-burger span {
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar-burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}

.navbar-burger.active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}

/* === ULTRA-PREMIUM HERO SECTION - DARK VERSION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 120px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1410 0%, #0f0b1e 50%, #1a1629 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.4;
}

/* Premium Gradient Orbs with 3D Effect */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  animation: float 30s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
  mix-blend-mode: screen;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.6) 0%, transparent 70%);
  top: -350px;
  left: -250px;
  animation-delay: 0s;
}

.orb-2 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.5) 0%, transparent 70%);
  top: 5%;
  right: -300px;
  animation-delay: 10s;
}

.orb-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 143, 61, 0.5) 0%, transparent 70%);
  bottom: -200px;
  left: 40%;
  animation-delay: 20s;
}

.orb-4 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.5) 0%, transparent 70%);
  top: 40%;
  left: 5%;
  animation-delay: 5s;
}

.orb-5 {
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.4) 0%, transparent 70%);
  bottom: 5%;
  right: 10%;
  animation-delay: 15s;
}

/* Premium Grid Overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  padding-top: 4rem;
  padding-bottom: 8rem;
}

.hero-badge {
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out;
}

.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}

.hero-title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  opacity: 0.3;
}

.text-reveal {
  display: inline-block;
  animation: textReveal 1.2s ease-out 0.8s both;
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s both;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.cta-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 10px 40px rgba(255, 107, 0, 0.35);
  border: 1px solid transparent;
}

.cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 107, 0, 0.5);
}

.cta-primary:hover::before {
  opacity: 1;
}

.cta-secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-md);
}

.cta-secondary:hover {
  background: var(--glass-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Premium Animated Statistics */
.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
  padding: 2rem 2.5rem;
  text-align: center;
  min-width: 180px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  opacity: 0;
  transition: all 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
}

.stat-item:hover::before {
  opacity: 1;
  top: -10px;
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-tertiary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  cursor: pointer;
}

.scroll-mouse {
  width: 28px;
  height: 44px;
  border: 3px solid var(--text-tertiary);
  border-radius: 14px;
  position: relative;
  transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-mouse {
  border-color: var(--primary);
}

.scroll-wheel {
  width: 4px;
  height: 10px;
  background: var(--text-tertiary);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s ease-in-out infinite;
}

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

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

/* === INFINITE TICKER === */
.infinite-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 107, 0, 0.2);
  overflow: hidden;
  padding: 1.5rem 0;
  z-index: 10;
}

.ticker-content {
  display: flex;
  gap: 3rem;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ticker-star {
  color: #FF6B00;
  font-size: 1.5rem;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* === DARK SECTIONS === */
.dark-section {
  position: relative;
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #1a1410 0%, #0f0b1e 50%, #1a1629 100%);
  overflow: hidden;
}

.dark-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.4;
}

/* Tech Stack Section */
.tech-stack-section {
  margin: 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.tech-card {
  padding: 3rem;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tech-card:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-12px);
  box-shadow: 0 30px 90px rgba(255, 107, 0, 0.3);
}

.tech-card:hover::before {
  transform: scaleX(1);
}

.tech-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 28px;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.tech-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: 30px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.6s ease;
}

.tech-card:hover .tech-icon {
  transform: scale(1.15) rotate(8deg);
}

.tech-card:hover .tech-icon::after {
  opacity: 0.2;
}

.tech-card h3 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.tech-card p {
  line-height: 1.8;
  font-size: 1.0625rem;
}

/* Process CTA Section */
.process-cta-section {
  margin: 0;
}

.dark-cta-content {
  text-align: center;
  padding: 3rem 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.timeline-item {
  padding: 3rem;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-12px);
  box-shadow: 0 30px 90px rgba(255, 107, 0, 0.3);
}

.timeline-item:hover::before {
  transform: scaleX(1);
}

/* Testimonials Dark Section */
.testimonials-dark-section {
  margin: 0;
}

.testimonials-dark-section .testimonial-card {
  border: 1px solid transparent;
}

.testimonials-dark-section .testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 30px 90px rgba(255, 107, 0, 0.3);
}

/* === SHOWCASE BANNER - ULTRA PREMIUM === */
.showcase-banner {
  position: relative;
  overflow: hidden;
  margin: 0;
  height: 600px;
}

.showcase-image {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(27, 31, 59, 0.85) 0%, 
    rgba(255, 107, 0, 0.7) 100%);
  backdrop-filter: blur(2px);
  mix-blend-mode: multiply;
}

.showcase-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 3rem;
  max-width: 900px;
}

.showcase-content h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.showcase-content p {
  font-size: clamp(1.125rem, 2.5vw, 1.75rem);
  opacity: 0.95;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  line-height: 1.5;
}

/* === VIDEO DIVIDER / IMAGE DIVIDER === */
.video-divider {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin: 0;
}

.video-divider-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.video-divider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.5) 0%, 
    rgba(255, 107, 0, 0.3) 100%);
}

.video-divider-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 3rem;
}

.video-divider-content h3 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.video-divider-content p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 5rem;
}

.section-badge {
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === WHY CROVIO - BENTO GRID LAYOUT === */
.why-crovio-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.why-crovio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.why-crovio-card {
  padding: 3rem;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.why-crovio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-crovio-card:hover {
  border-color: rgba(255, 107, 0, 0.2);
  box-shadow: 0 30px 90px rgba(255, 107, 0, 0.2);
  transform: translateY(-12px);
}

.why-crovio-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-mesh);
  border-radius: 28px;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.why-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: 30px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.6s ease;
}

.why-crovio-card:hover .why-icon {
  transform: scale(1.15) rotate(8deg);
}

.why-crovio-card:hover .why-icon::after {
  opacity: 0.2;
}

.why-crovio-card h3 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.why-crovio-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.why-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.why-stat {
  text-align: center;
}

.why-stat strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.why-stat span {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.why-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.why-features li {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: left;
  font-weight: 500;
}

.why-metrics {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* === CORE SERVICES - SPLIT SCREEN LAYOUT === */
.core-services {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-bottom: 8rem;
  align-items: center;
  position: relative;
}

.service-block::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 80%;
  background: linear-gradient(to bottom, 
    transparent, 
    rgba(255, 107, 0, 0.2) 20%, 
    rgba(255, 107, 0, 0.2) 80%, 
    transparent);
  opacity: 0.5;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-visual {
  position: relative;
}

.service-image {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.service-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(255, 107, 0, 0.1) 0%, 
    transparent 50%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.service-block:hover .service-image {
  box-shadow: 0 40px 120px rgba(255, 107, 0, 0.3);
}

.service-block:hover .service-image::before {
  opacity: 1;
}

.floating-badge {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  animation: float-badge 4s ease-in-out infinite;
  z-index: 10;
}

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

.service-content {
  position: relative;
}

.service-number {
  font-size: 8rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0.2;
  font-variant-numeric: tabular-nums;
}

.service-content h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.service-lead {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.service-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(31, 38, 135, 0.08);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(12px);
  box-shadow: 
    0 20px 60px rgba(255, 107, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 107, 0, 0.3);
}

.feature-item:hover::before {
  transform: scaleY(1);
}

.feature-item svg {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 7px;
  background: var(--gradient-primary);
  border-radius: 12px;
  stroke: white;
  margin-top: 0;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-item:hover svg {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.feature-item span {
  color: var(--text-primary);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 600;
  transition: color 0.3s ease;
}

.feature-item:hover span {
  color: var(--primary);
}

/* === COMPACT SERVICES - BENTO GRID === */
.compact-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-top: 5rem;
}

.compact-service {
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid transparent;
}

.compact-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.compact-service:hover {
  border-color: rgba(255, 107, 0, 0.2);
  box-shadow: 0 30px 90px rgba(255, 107, 0, 0.15), 0 0 100px rgba(255, 107, 0, 0.05);
  transform: translateY(-12px);
}

.compact-service:hover::before {
  transform: scaleX(1);
}

.compact-service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-mesh);
  border-radius: 24px;
  margin-bottom: 2rem;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.compact-service-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: 26px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.6s ease;
}

.compact-service:hover .compact-service-icon {
  transform: scale(1.15) rotate(8deg);
}

.compact-service:hover .compact-service-icon::after {
  opacity: 0.2;
}

.compact-service-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
}

.compact-service h4 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.compact-service p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.compact-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compact-features li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.compact-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
  font-size: 1.25rem;
}

/* === JOURNEY SECTION - INTERACTIVE TABS === */
.shopify-journey-section {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.journey-tabs {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.journey-tab {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.12);
  position: relative;
  overflow: hidden;
}

.journey-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.journey-tab svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.journey-tab:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 107, 0, 0.2);
}

.journey-tab.active {
  color: white;
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(255, 107, 0, 0.4);
}

.journey-tab.active::before {
  opacity: 1;
}

.journey-tab.active svg {
  transform: scale(1.15);
}

.journey-content {
  position: relative;
}

.journey-panel {
  display: none;
  animation: fadeInUp 0.8s ease-out;
}

.journey-panel.active {
  display: block;
}

.journey-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.journey-visual img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.journey-visual img:hover {
  transform: scale(1.05);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.25);
}

.journey-text h3 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.journey-text .lead {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.journey-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.journey-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(30px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.journey-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.journey-item .icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.5rem;
}

.journey-list.negative .journey-item .icon {
  background: rgba(239, 68, 68, 0.15);
  color: #dc2626;
}

.journey-list.positive .journey-item .icon {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}

.journey-item p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.0625rem;
}

/* === FAQ SECTION === */
.faq-section {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.faq-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-category {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.faq-category::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.faq-category svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  flex-shrink: 0;
}

.faq-category:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.2);
}

.faq-category.active {
  color: white;
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(255, 107, 0, 0.4);
}

.faq-category.active::before {
  opacity: 1;
}

.faq-content {
  position: relative;
}

.faq-category-content {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-category-content.active {
  display: flex;
}

.faq-item {
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  stroke: var(--primary);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer p {
  padding: 0 2rem 2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.0625rem;
}

/* === TESTIMONIALS === */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid transparent;
}

.testimonial-card:hover {
  border-color: rgba(255, 107, 0, 0.2);
  box-shadow: 0 30px 90px rgba(255, 107, 0, 0.2), 0 0 120px rgba(255, 107, 0, 0.08);
  transform: translateY(-12px);
}

.testimonial-image {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: all 0.8s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.testimonial-card:hover .testimonial-image {
  transform: scale(1.1);
}

.testimonial-card:hover .testimonial-image::before {
  opacity: 1;
}

.testimonial-content {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.25rem;
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.testimonial-author {
  padding: 0 2rem 2rem;
}

.author-name {
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.author-role {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* === FINAL CTA === */
.final-cta {
  position: relative;
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem;
  text-align: center;
}

.final-cta-content h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.final-cta-content p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === CONTACT SECTION === */
.new-contact-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: var(--section-padding) 0;
}

.contact-hero {
  text-align: center;
  margin-bottom: 5rem;
}

.contact-badge {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #FF6B00 0%, #FF8F3D 100%);
  color: white;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  box-shadow: 0 16px 48px rgba(255, 107, 0, 0.4);
}

.contact-hero h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: #1a202c;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.contact-hero p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.contact-card {
  background: white;
  padding: 3rem;
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B00, #FF8F3D);
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 90px rgba(255, 107, 0, 0.2);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #FF6B00, #FF8F3D);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(255, 107, 0, 0.4);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.15) rotate(-8deg);
}

.contact-card-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 1rem;
}

.contact-card a {
  color: #FF6B00;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #FF8F3D;
}

.contact-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1.0625rem;
}

/* Form Container */
.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 4rem;
  border-radius: 40px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.15);
}

.form-title {
  text-align: center;
  margin-bottom: 3rem;
}

.form-title h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a202c;
  margin-bottom: 0.75rem;
}

.form-title p {
  color: #64748b;
  font-size: 1.125rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-family: inherit;
  font-size: 1.0625rem;
  color: #1a202c;
  background: #f8fafc;
  transition: all 0.4s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #FF6B00;
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 160px;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%231a202c" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 28px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.form-checkbox input {
  width: 24px;
  height: 24px;
  margin-top: 0.125rem;
  cursor: pointer;
  accent-color: #FF6B00;
}

.form-checkbox label {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.form-checkbox a {
  color: #FF6B00;
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 1.5rem 2.5rem;
  background: linear-gradient(135deg, #FF6B00, #FF8F3D);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 16px 48px rgba(255, 107, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: inherit;
}

.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(255, 107, 0, 0.5);
}

.submit-btn:active {
  transform: translateY(-2px);
}

.submit-btn svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.form-message {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 16px;
  text-align: center;
  font-weight: 700;
  display: none;
}

.form-message.success {
  display: block;
  background: #d1fae5;
  color: #065f46;
  border: 2px solid #10b981;
}

.form-message.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #ef4444;
}

/* === FOOTER === */
.footer {
  background: var(--secondary);
  color: white;
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-top: 1.5rem;
  font-size: 1.0625rem;
}

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: white;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 1rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-column a:hover {
  color: var(--primary);
  transform: translateX(4px);
  display: inline-block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-link:hover {
  color: white;
  background: var(--gradient-primary);
  transform: translateY(-4px) rotate(5deg);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
}

/* Hide personalization sticky button */
.personalization-trigger,
.personalize-button,
[class*="personalize"][class*="button"],
#personalization-button,
.sticky-personalization-btn {
  display: none !important;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .service-block {
    gap: 4rem;
  }
  
  .journey-split,
  .phase-grid {
    gap: 4rem;
  }
  
  .faq-grid {
    gap: 3rem;
  }
}

@media (max-width: 1024px) {
  .service-block,
  .journey-split,
  .phase-grid {
    grid-template-columns: 1fr;
  }
  
  .service-block::after {
    display: none;
  }
  
  .service-block.reverse {
    direction: ltr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .why-crovio-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .process-timeline {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: clamp(3rem, 8vw, 8rem);
  }
  
  .navbar-menu {
    display: none;
  }
  
  .navbar-burger {
    display: flex;
  }
  
  .navbar-container .cta-btn {
    display: none;
  }
  
  .hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
  }
  
  .cta-btn {
    justify-content: center;
  }
  
  .hero-stats {
    padding: 0 1rem;
  }
  
  .phase-tabs {
    justify-content: flex-start;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .final-cta-content {
    padding: 3rem;
  }
  
  .compact-services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-features-grid {
    gap: 1.25rem;
  }
  
  .feature-item {
    padding: 1.25rem;
  }
  
  .feature-item:hover {
    transform: none !important;
  }

  .new-contact-section {
    padding: 3rem 0;
  }

  .contact-hero {
    margin-bottom: 3rem;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .form-container {
    padding: 2.5rem 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-title h3 {
    font-size: 2rem;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .stat-item {
    width: 100%;
    min-width: 100%;
  }
  
  .service-image,
  .showcase-image {
    height: 400px;
  }
  
  .service-number {
    font-size: 5rem;
  }
  
  .feature-item {
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
  }
  
  .feature-item svg {
    margin: 0;
    align-self: flex-start;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .final-cta-content {
    padding: 2.5rem 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
  
  .contact-card {
    padding: 2.5rem 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }
  
  .compact-services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-block {
    gap: 3rem;
  }
  
  .service-content h3 {
    font-size: 1.75rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    gap: 2.5rem;
  }
  
  .navbar-container {
    padding: 1rem 1.5rem;
  }

  .contact-hero h2 {
    font-size: 2.5rem;
  }
  
  .showcase-banner {
    height: 400px;
  }
}

/* === CRITICAL MOBILE FIXES === */
@media (max-width: 768px) {
  /* Hero Section sichtbar machen */
  .hero {
    min-height: 100vh !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .hero-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  
  .hero-stats {
    display: flex !important;
    flex-direction: column;
    gap: 2rem !important;
    width: 100%;
    padding: 0 1rem;
    margin-top: 3rem !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .stat-item {
    width: 100% !important;
    min-width: 100% !important;
    padding: 1.5rem !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
  }
  
  .stat-number {
    font-size: 3rem !important;
    color: white !important;
    display: block !important;
    visibility: visible !important;
  }
  
  .stat-label {
    color: rgba(255, 255, 255, 0.6) !important;
    display: block !important;
    visibility: visible !important;
  }
  
  /* Infinite Ticker auf Mobile */
  .infinite-ticker {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .ticker-content {
    display: flex !important;
  }
  
  /* Sicherstellen dass alle Sections sichtbar sind */
  section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
  }
  
  /* Container nicht verstecken */
  .container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Gradient Orbs auf Mobile */
  .gradient-orb {
    display: block !important;
    visibility: visible !important;
  }
  
  .hero-bg {
    display: block !important;
    visibility: visible !important;
    opacity: 0.4 !important;
  }
  
  /* Dark sections auf Mobile */
  .dark-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .dark-bg {
    display: block !important;
    visibility: visible !important;
    opacity: 0.4 !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 80px !important;
    padding-bottom: 60px !important;
  }
  
  .hero-content {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }
  
  .hero-stats {
    margin-top: 2rem !important;
    gap: 1.5rem !important;
  }
  
  .stat-item {
    padding: 1.25rem !important;
  }
  
  .stat-number {
    font-size: 2.5rem !important;
  }
  
  .stat-label {
    font-size: 0.875rem !important;
  }
}