/* Reserved for minimal overrides. Tailwind is loaded via CDN. */

:root {
  --brand-blue: #1F52FF;
  --brand-teal: #17B092;
  --brand-orange: #FFA31A;
  --ink-900: #0B1220;
  --ink-700: #2B3342;
  --ink-500: #6B7280;
  --paper: #FFFFFF;
  --paper-alt: #F6F8FB;
}

/* Reveal transitions (respects reduced-motion) */
[data-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-in {
  opacity: 1;
  transform: none;
}

/* Stagger children */
[data-reveal] > * {
  transition-delay: calc(var(--stagger, 0) * 60ms);
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}

#preloader::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(31, 82, 255, 0.1), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.preloader-hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  animation: preloaderFadeIn 0.8s ease-out;
}

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

/* Enhanced logo animation */
.logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-bounce {
  animation: logoFloat 2s ease-in-out infinite, logoRotate 4s linear infinite;
  transform-origin: center;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-12px) scale(1.05); }
}

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

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

@keyframes logoPulse {
  0%, 100% { 
    filter: drop-shadow(0 0 8px rgba(31, 82, 255, 0.6));
    box-shadow: 0 0 20px rgba(31, 82, 255, 0.3);
  }
  50% { 
    filter: drop-shadow(0 0 16px rgba(31, 82, 255, 0.9));
    box-shadow: 0 0 40px rgba(31, 82, 255, 0.5);
  }
}

/* Loading progress bar */
.loading-progress {
  width: 200px;
  height: 4px;
  background: rgba(31, 82, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loading-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-teal));
  border-radius: 2px;
  width: 0%;
  animation: loadingProgress 2s ease-out forwards;
}

@keyframes loadingProgress {
  0% { width: 0%; }
  25% { width: 30%; }
  50% { width: 60%; }
  75% { width: 85%; }
  100% { width: 100%; }
}

/* Clean Home Page Preloader */
.clean-preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.loading-animation {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  animation: cleanFadeIn 0.6s ease-out;
}

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

/* Main Logo */
.logo-container-clean {
  position: relative;
  z-index: 10;
}

.main-logo {
  filter: drop-shadow(0 8px 25px rgba(31, 82, 255, 0.15));
  animation: logoBreath 2s ease-in-out infinite;
}

@keyframes logoBreath {
  0%, 100% { 
    transform: scale(1);
    filter: drop-shadow(0 8px 25px rgba(31, 82, 255, 0.15));
  }
  50% { 
    transform: scale(1.02);
    filter: drop-shadow(0 10px 30px rgba(31, 82, 255, 0.25));
  }
}

/* Animated Rings */
.rings-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid;
  border-radius: 50%;
  border-top-color: transparent;
  border-right-color: transparent;
  animation: ringRotate 2s linear infinite;
}

.ring-1 {
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  border-color: rgba(59, 130, 246, 0.3);
  border-top-color: #3b82f6;
  border-right-color: #3b82f6;
  animation-duration: 2s;
}

.ring-2 {
  width: 140px;
  height: 140px;
  margin: -70px 0 0 -70px;
  border-color: rgba(20, 184, 166, 0.2);
  border-top-color: #14b8a6;
  border-right-color: #14b8a6;
  animation-duration: 3s;
  animation-direction: reverse;
}

.ring-3 {
  width: 160px;
  height: 160px;
  margin: -80px 0 0 -80px;
  border-color: rgba(245, 158, 11, 0.15);
  border-top-color: #f59e0b;
  border-right-color: #f59e0b;
  animation-duration: 4s;
}

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

/* Loading Dots */
.loading-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dot-loader {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  animation: dotPulse 1.5s ease-in-out infinite;
}

.dot-1 { animation-delay: 0s; }
.dot-2 { animation-delay: 0.2s; }
.dot-3 { animation-delay: 0.4s; }
.dot-4 { animation-delay: 0.6s; }
.dot-5 { animation-delay: 0.8s; }

@keyframes dotPulse {
  0%, 80%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes preloaderMainFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animated Background Particles */
.preloader-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 {
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.particle-2 {
  width: 16px;
  height: 16px;
  background: linear-gradient(45deg, #14b8a6, #0f766e);
  top: 70%;
  right: 20%;
  animation-delay: 1.5s;
}

.particle-3 {
  width: 24px;
  height: 24px;
  background: linear-gradient(45deg, #f59e0b, #d97706);
  bottom: 25%;
  left: 25%;
  animation-delay: 3s;
}

.particle-4 {
  width: 12px;
  height: 12px;
  background: linear-gradient(45deg, #ec4899, #be185d);
  top: 15%;
  right: 30%;
  animation-delay: 4.5s;
}

.particle-5 {
  width: 18px;
  height: 18px;
  background: linear-gradient(45deg, #8b5cf6, #7c3aed);
  bottom: 20%;
  right: 15%;
  animation-delay: 2s;
}

.particle-6 {
  width: 14px;
  height: 14px;
  background: linear-gradient(45deg, #06b6d4, #0891b2);
  top: 60%;
  left: 10%;
  animation-delay: 5s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-30px) rotate(270deg);
    opacity: 1;
  }
}

/* Central Logo Animation Hub */
.logo-animation-hub {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-logo-container {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-ring-outer,
.logo-ring-middle,
.logo-ring-inner {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: ringRotate 4s linear infinite;
}

.logo-ring-outer {
  width: 110px;
  height: 110px;
  border-color: rgba(59, 130, 246, 0.3);
  animation-duration: 8s;
}

.logo-ring-middle {
  width: 90px;
  height: 90px;
  border-color: rgba(20, 184, 166, 0.4);
  animation-duration: 6s;
  animation-direction: reverse;
}

.logo-ring-inner {
  width: 70px;
  height: 70px;
  border-color: rgba(245, 158, 11, 0.5);
  animation-duration: 4s;
}

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

.logo-core {
  position: relative;
  z-index: 10;
  animation: logoCorePulse 2s ease-in-out infinite;
}

.logo-svg {
  filter: drop-shadow(0 8px 16px rgba(31, 82, 255, 0.3));
  animation: logoGlow 3s ease-in-out infinite;
}

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

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 8px 16px rgba(31, 82, 255, 0.3)); }
  50% { filter: drop-shadow(0 12px 24px rgba(31, 82, 255, 0.6)); }
}

/* Orbiting Tech Icons */
.tech-orbit-container {
  position: absolute;
  inset: 0;
}

.tech-orbit {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 {
  animation: orbitRotate 12s linear infinite;
}

.orbit-2 {
  animation: orbitRotate 10s linear infinite reverse;
  animation-delay: 1s;
}

.orbit-3 {
  animation: orbitRotate 14s linear infinite;
  animation-delay: 2s;
}

.orbit-4 {
  animation: orbitRotate 8s linear infinite reverse;
  animation-delay: 3s;
}

@keyframes orbitRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.tech-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: iconFloat 2s ease-in-out infinite;
}

.orbit-1 .tech-icon { top: -20px; left: calc(50% - 20px); }
.orbit-2 .tech-icon { right: -20px; top: calc(50% - 20px); }
.orbit-3 .tech-icon { bottom: -20px; left: calc(50% - 20px); }
.orbit-4 .tech-icon { left: -20px; top: calc(50% - 20px); }

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

/* Company Branding */
.brand-text-container {
  text-align: center;
  animation: brandTextReveal 1s ease-out 0.3s both;
}

.brand-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

/* Enhanced Progress Indicator */
.progress-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: progressSectionReveal 1s ease-out 0.6s both;
}

.progress-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.progress-container-enhanced {
  position: relative;
  width: 300px;
}

.progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #14b8a6, #f59e0b);
  border-radius: 3px;
  width: 0%;
  animation: progressFillEnhanced 3s ease-out forwards;
  position: relative;
}

.progress-glow {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  bottom: -2px;
  background: linear-gradient(90deg, #3b82f6, #14b8a6, #f59e0b);
  border-radius: 5px;
  opacity: 0;
  filter: blur(4px);
  animation: progressGlowPulse 2s ease-in-out infinite;
}

@keyframes progressFillEnhanced {
  0% { width: 0%; }
  20% { width: 25%; }
  40% { width: 50%; }
  60% { width: 75%; }
  100% { width: 100%; }
}

@keyframes progressGlowPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.6; }
}

.progress-dots {
  position: absolute;
  top: -8px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.dot-1 { animation: dotActivate 3s ease-out 0.2s forwards; }
.dot-2 { animation: dotActivate 3s ease-out 0.8s forwards; }
.dot-3 { animation: dotActivate 3s ease-out 1.4s forwards; }
.dot-4 { animation: dotActivate 3s ease-out 2s forwards; }

@keyframes dotActivate {
  0% {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1);
  }
  50% {
    background: #3b82f6;
    transform: scale(1.5);
  }
  100% {
    background: #14b8a6;
    transform: scale(1.2);
  }
}

.progress-percentage {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

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

/* Loading Messages */
.loading-messages {
  text-align: center;
  height: 2rem;
  position: relative;
  animation: loadingMessagesReveal 1s ease-out 0.9s both;
}

.message {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  animation: messageSequence 3s ease-in-out infinite;
}

.message-1 { animation-delay: 0s; }
.message-2 { animation-delay: 0.7s; }
.message-3 { animation-delay: 1.4s; }
.message-4 { animation-delay: 2.1s; }

@keyframes messageSequence {
  0%, 25% { opacity: 0; transform: translateX(-50%) translateY(10px); }
  30%, 70% { opacity: 1; transform: translateX(-50%) translateY(0); }
  75%, 100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}

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

@keyframes loadingTextPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Parallax elements */
[data-parallax] {
  will-change: transform;
}

/* Mobile menu */
.mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

/* Header scroll state */
.header-scrolled {
  background-color: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Gradient text with animation */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal), var(--brand-blue));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease-in-out infinite;
}

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

/* Hero enhancements */
.hero-text-reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: heroTextReveal 0.8s ease-out forwards;
}

.hero-text-reveal:nth-child(1) { animation-delay: 0.2s; }
.hero-text-reveal:nth-child(2) { animation-delay: 0.4s; }
.hero-text-reveal:nth-child(3) { animation-delay: 0.6s; }
.hero-text-reveal:nth-child(4) { animation-delay: 0.8s; }

@keyframes heroTextReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(31, 82, 255, 0.3);
}

.hero-badge {
  transition: all 0.3s ease;
}

.hero-badge:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal)) !important;
  color: white !important;
}

/* Enhanced floating elements */
.floating-element {
  animation: floatCircle 6s ease-in-out infinite;
}

.floating-element:nth-child(odd) {
  animation-delay: -2s;
}

.floating-element:nth-child(even) {
  animation-delay: -4s;
}

@keyframes floatCircle {
  0% { 
    transform: translate(0px, 0px) rotate(0deg); 
  }
  25% { 
    transform: translate(8px, -8px) rotate(90deg); 
  }
  50% { 
    transform: translate(0px, -16px) rotate(180deg); 
  }
  75% { 
    transform: translate(-8px, -8px) rotate(270deg); 
  }
  100% { 
    transform: translate(0px, 0px) rotate(360deg); 
  }
}

.hero-decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
}

.hero-decoration-1 {
  top: 10%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: var(--brand-blue);
  border-radius: 50%;
  animation: floatGentle 4s ease-in-out infinite;
}

.hero-decoration-2 {
  bottom: 20%;
  left: 5%;
  width: 40px;
  height: 40px;
  background: var(--brand-teal);
  transform: rotate(45deg);
  animation: floatGentle 3s ease-in-out infinite reverse;
}

.hero-decoration-3 {
  top: 30%;
  left: 15%;
  width: 20px;
  height: 20px;
  background: var(--brand-orange);
  border-radius: 50%;
  animation: floatGentle 5s ease-in-out infinite;
}

/* Process timeline line */
.process-line {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-teal));
}

/* Hover effects */
.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Enhanced Services Section */
.service-card {
  position: relative;
  transition: all 0.3s ease;
  border-radius: 1rem;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-teal));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(31, 82, 255, 0.15);
  background: linear-gradient(135deg, rgba(31, 82, 255, 0.02), rgba(23, 176, 146, 0.02));
}

.service-icon {
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(31, 82, 255, 0.1);
  margin-bottom: 1rem;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.service-link {
  position: relative;
  transition: all 0.3s ease;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-teal));
  transition: width 0.3s ease;
}

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

.service-link svg {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* Services grid enhancement */
.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

/* Services section background */
.services-bg {
  position: relative;
}

.services-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(31, 82, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(23, 176, 146, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Tech chip hover */
.tech-chip:hover {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  color: white;
}

/* Enhanced Work Showcase */
.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  transition: all 0.4s ease;
  cursor: pointer;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
  transition: opacity 0.4s ease;
  z-index: 1;
}

.work-card:hover::before {
  opacity: 0.6;
}

.work-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.work-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
}

.work-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.work-card-details {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
}

.work-card:hover .work-card-details {
  opacity: 1;
  transform: translateY(0);
}

.work-card:hover .work-card-title {
  transform: translateY(-10px);
}

.work-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0.25rem;
  border: 1px solid rgba(255,255,255,0.3);
}

.work-card-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.work-card-2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.work-card-3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.work-description {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Accessibility: Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--ink-900);
  color: var(--paper);
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 100;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* Enhanced Sticky Header */
.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation Particles */
.nav-particle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  opacity: 0.1;
  animation: navParticleFloat 8s ease-in-out infinite;
}

.nav-particle-1 {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.nav-particle-2 {
  width: 12px;
  height: 12px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.nav-particle-3 {
  width: 6px;
  height: 6px;
  top: 40%;
  left: 80%;
  animation-delay: 4s;
}

.nav-particle-4 {
  width: 10px;
  height: 10px;
  top: 80%;
  left: 30%;
  animation-delay: 6s;
}

@keyframes navParticleFloat {
  0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.1; }
  25% { transform: translateY(-10px) translateX(5px); opacity: 0.3; }
  50% { transform: translateY(-5px) translateX(-5px); opacity: 0.2; }
  75% { transform: translateY(-15px) translateX(3px); opacity: 0.4; }
}

/* Navigation Links */
.nav-link {
  color: var(--ink-700);
  position: relative;
  overflow: hidden;
}

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

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

.nav-link-active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-teal));
  border-radius: 1px;
}

/* Mobile Navigation */
.mobile-nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  transform: translateX(8px);
}

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

/* Mobile Menu Particles */
.mobile-particle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  opacity: 0.05;
  animation: mobileParticleFloat 12s ease-in-out infinite;
}

.mobile-particle-1 {
  width: 20px;
  height: 20px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.mobile-particle-2 {
  width: 15px;
  height: 15px;
  top: 70%;
  right: 25%;
  animation-delay: 4s;
}

.mobile-particle-3 {
  width: 25px;
  height: 25px;
  top: 50%;
  left: 70%;
  animation-delay: 8s;
}

@keyframes mobileParticleFloat {
  0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.05; }
  33% { transform: translateY(-20px) translateX(10px) scale(1.1); opacity: 0.15; }
  66% { transform: translateY(-10px) translateX(-10px) scale(0.9); opacity: 0.1; }
}

/* About Page Preloader */
#about-preloader {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: linear-gradient(135deg, var(--paper) 0%, #f8fafc 50%, var(--paper-alt) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  overflow: hidden;
}

#about-preloader::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(31, 82, 255, 0.05), transparent);
  animation: aboutShimmer 3s infinite;
}

@keyframes aboutShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.about-preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  animation: aboutContentFadeIn 1s ease-out;
}

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

/* Company Logo Animation */
.company-logo-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.logo-container {
  position: relative;
  animation: logoContainerFadeIn 0.6s ease-out;
}

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

.company-logo {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(31, 82, 255, 0.3);
  animation: logoFloat 2s ease-in-out infinite;
  position: relative;
  z-index: 10;
}

.logo-icon {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  animation: iconGlow 2s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { 
    transform: translateY(0px);
    box-shadow: 0 20px 40px rgba(31, 82, 255, 0.3);
  }
  50% { 
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(31, 82, 255, 0.4);
  }
}

@keyframes iconGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
  50% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8); }
}

/* Tech Orbit Animation */
.tech-orbit {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(31, 82, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbitRotate 8s linear infinite;
}

@keyframes orbitRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.tech-icon {
  position: absolute;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: iconFloat 2s ease-in-out infinite;
}

.tech-icon-1 { 
  top: -1rem; 
  left: 50%; 
  transform: translateX(-50%);
  animation-delay: 0s;
}

.tech-icon-2 { 
  right: -1rem; 
  top: 50%; 
  transform: translateY(-50%);
  animation-delay: 0.5s;
}

.tech-icon-3 { 
  bottom: -1rem; 
  left: 50%; 
  transform: translateX(-50%);
  animation-delay: 1s;
}

.tech-icon-4 { 
  left: -1rem; 
  top: 50%; 
  transform: translateY(-50%);
  animation-delay: 1.5s;
}

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

/* Company Intro */
.company-intro {
  text-align: center;
}

.company-name-fast {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fastFadeIn 0.8s ease-out 0.3s forwards;
}

@keyframes fastFadeIn {
  from { 
    opacity: 0; 
    transform: translateY(20px) scale(0.9); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

.company-tagline-fast {
  font-size: 1.1rem;
  color: var(--ink-700);
  opacity: 0;
  animation: fastFadeIn 0.6s ease-out 0.8s forwards;
}

/* About Loading Progress */
.about-loading-progress {
  width: 250px;
  height: 6px;
  background: rgba(31, 82, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.about-loading-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-teal), var(--brand-orange));
  border-radius: 3px;
  width: 0%;
  animation: aboutLoadingProgressFast 1.2s ease-out 0.5s forwards;
  position: relative;
}

.about-loading-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: aboutLoadingShineFast 0.8s ease-in-out infinite;
}

@keyframes aboutLoadingProgressFast {
  0% { width: 0%; }
  40% { width: 60%; }
  80% { width: 90%; }
  100% { width: 100%; }
}

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

.about-preloader-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Contact Page Styles */
.submit-button-loading {
  position: relative;
}

.submit-button-loading .submit-text {
  opacity: 0.7;
}

/* Ensure spinner animation respects reduced motion */
@media (prefers-reduced-motion: reduce) {
  .submit-spinner {
    animation: none !important;
  }
}

/* Contact form focus styles */
.fs-contact input:focus,
.fs-contact select:focus,
.fs-contact textarea:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Services Page Preloader */
#services-preloader {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: linear-gradient(135deg, var(--paper) 0%, #f8fafc 50%, var(--paper-alt) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  overflow: hidden;
}

#services-preloader::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(31, 82, 255, 0.05), transparent);
  animation: servicesShimmer 3s infinite;
}

@keyframes servicesShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.services-preloader {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: linear-gradient(135deg, var(--paper) 0%, #f8fafc 50%, var(--paper-alt) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  overflow: hidden;
}

.services-preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  animation: servicesContentFadeIn 1s ease-out;
}

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

/* Services Icons Animation */
.services-icons-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.services-icon-container {
  position: relative;
  width: 160px;
  height: 160px;
  animation: servicesIconContainerFadeIn 0.8s ease-out;
}

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

.services-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(31, 82, 255, 0.3);
  animation: servicesHubFloat 2s ease-in-out infinite;
  z-index: 10;
}

.services-hub-icon {
  font-size: 2.5rem;
  animation: servicesHubIconGlow 2s ease-in-out infinite;
}

@keyframes servicesHubFloat {
  0%, 100% { 
    transform: translate(-50%, -50%) translateY(0px);
    box-shadow: 0 20px 40px rgba(31, 82, 255, 0.3);
  }
  50% { 
    transform: translate(-50%, -50%) translateY(-10px);
    box-shadow: 0 30px 50px rgba(31, 82, 255, 0.4);
  }
}

@keyframes servicesHubIconGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)); }
  50% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)); }
}

/* Services Orbit Animation */
.services-orbit {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(31, 82, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: servicesOrbitRotate 6s linear infinite;
}

@keyframes servicesOrbitRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.services-orbit-icon {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: white;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  animation: servicesOrbitIconFloat 2s ease-in-out infinite;
}

.services-orbit-icon-1 { 
  top: -1.25rem; 
  left: 50%; 
  transform: translateX(-50%);
  animation-delay: 0s;
  background: linear-gradient(135deg, #3B82F6, #1E40AF);
  color: white;
}

.services-orbit-icon-2 { 
  right: -1.25rem; 
  top: 50%; 
  transform: translateY(-50%);
  animation-delay: 0.5s;
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
}

.services-orbit-icon-3 { 
  bottom: -1.25rem; 
  left: 50%; 
  transform: translateX(-50%);
  animation-delay: 1s;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
}

@keyframes servicesOrbitIconFloat {
  0%, 100% { 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    filter: brightness(1);
  }
  50% { 
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
  }
}

/* Services Intro */
.services-intro {
  text-align: center;
}

.services-title-fast {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: servicesFastFadeIn 0.8s ease-out 0.3s forwards;
}

@keyframes servicesFastFadeIn {
  from { 
    opacity: 0; 
    transform: translateY(20px) scale(0.9); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

.services-tagline-fast {
  font-size: 1.1rem;
  color: var(--ink-700);
  opacity: 0;
  animation: servicesFastFadeIn 0.6s ease-out 0.8s forwards;
}

/* Services Loading Progress */
.services-loading-progress {
  width: 250px;
  height: 6px;
  background: rgba(31, 82, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.services-loading-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-teal), var(--brand-orange));
  border-radius: 3px;
  width: 0%;
  animation: servicesLoadingProgressFast 1.5s ease-out 0.5s forwards;
  position: relative;
}

.services-loading-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: servicesLoadingShineFast 1s ease-in-out infinite;
}

@keyframes servicesLoadingProgressFast {
  0% { width: 0%; }
  40% { width: 60%; }
  80% { width: 90%; }
  100% { width: 100%; }
}

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

.services-preloader-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Simple Contact Page Preloader */
.contact-preloader-simple {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-simple-content {
  text-align: center;
  animation: simpleContentFadeIn 0.6s ease-out;
}

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

/* Simple Contact Icon */
.contact-icon-simple {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
  }
}

/* Simple Text */
.contact-text-simple {
  margin-bottom: 2rem;
}

.contact-title-simple {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
  animation: titleSlideIn 0.6s ease-out 0.2s both;
}

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

.contact-subtitle-simple {
  font-size: 1rem;
  color: #6b7280;
  animation: subtitleSlideIn 0.6s ease-out 0.4s both;
}

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

/* Simple Progress Bar */
.progress-container-simple {
  width: 200px;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
  animation: progressContainerFadeIn 0.6s ease-out 0.6s both;
}

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

.progress-bar-simple {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  border-radius: 2px;
  width: 0%;
  animation: progressFill 2.5s ease-out 0.8s forwards;
}

@keyframes progressFill {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* Hidden state - CRITICAL for working properly */
.contact-preloader-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
  transform: scale(0) !important;
  z-index: -1 !important;
}

            /* Mobile-optimized social proof */
            @media (max-width: 640px) {
              .hero-text-reveal .flex.flex-col.items-start.space-y-2 {
                align-items: center;
                text-align: center;
              }
              
              /* Mobile-optimized guarantees */
              .hero-text-reveal .flex.items-center.space-x-4 {
                flex-direction: column;
                space-x: 0;
                gap: 0.75rem;
                align-items: center;
              }
              
              /* Mobile-optimized investment calculator */
              .investment-calculator .grid.gap-8.lg\\:grid-cols-3 {
                grid-template-columns: 1fr;
                gap: 1.5rem;
              }
              
              .investment-calculator .flex.items-center.justify-center.space-x-8 {
                flex-direction: column;
                space-x: 0;
                gap: 1rem;
              }
  
  /* Make pricing cards stack better on mobile */
  .pricing-transparency-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Optimize CTA buttons for mobile */
  .hero-cta {
    padding: 1rem 2rem;
    text-align: center;
    min-height: 3rem;
  }
  
  /* Better spacing for mobile client results */
  .client-results-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Mobile testimonial cards */
  .testimonial-card {
    padding: 1rem;
  }
  
  .testimonial-card .flex.items-start.space-x-4 {
    flex-direction: column;
    space-x: 0;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }
}

/* Enhanced Hero Section */
.about-hero-enhanced {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  overflow: hidden;
}

.about-hero-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(31, 82, 255, 0.8), rgba(23, 176, 146, 0.6));
  z-index: 1;
}

.about-hero-enhanced .hero-content {
  position: relative;
  z-index: 2;
}

/* Enhanced Mission Section */
.mission-card-enhanced {
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(31, 82, 255, 0.02), rgba(23, 176, 146, 0.02));
  z-index: 1;
}

.mission-card-enhanced:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.mission-card-enhanced .mission-content {
  position: relative;
  z-index: 2;
}

/* Enhanced Team Section */
.team-member-enhanced {
  position: relative;
  transition: all 0.4s ease;
}

.team-member-enhanced::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  border-radius: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.team-member-enhanced:hover::before {
  opacity: 0.1;
}

.team-member-enhanced .team-content {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.4s ease;
}

.team-member-enhanced:hover .team-content {
  transform: translateY(-5px);
}

/* Enhanced Values Icons */
.value-icon-enhanced {
  position: relative;
  overflow: hidden;
}

.value-icon-enhanced::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: 1;
}

.value-icon-enhanced:hover::before {
  width: 100%;
  height: 100%;
}

.value-icon-enhanced svg {
  position: relative;
  z-index: 2;
}

/* New Services Hero Animation */
.animate-gradient-x {
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
}

.animate-spin-slow {
  animation: spin 8s linear infinite;
}

.animate-bounce-slow {
  animation: bounceGentle 3s ease-in-out infinite;
}

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

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

/* Enhanced Service Cards */
.service-card-hover {
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.service-card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon-container {
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.service-card-hover:hover .service-icon-container {
  transform: scale(1.1);
}

/* Service card border animations */
.service-card-border {
  position: relative;
  overflow: hidden;
}

.service-card-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-teal));
  transition: left 0.5s ease;
}

.service-card-hover:hover .service-card-border::before {
  left: 0;
}

/* Link arrow animations */
.link-arrow {
  transition: transform 0.3s ease;
}

.service-card-hover:hover .link-arrow {
  transform: translateX(4px);
}

/* Enhanced checkmark icons */
.check-icon {
  transition: all 0.3s ease;
}

.service-card-hover:hover .check-icon {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  color: white;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  [data-parallax] {
    will-change: auto !important;
  }
  
  .logo-bounce,
  .logo-pulse,
  .clean-preloader .main-logo,
  .clean-preloader .ring,
  .clean-preloader .dot-loader {
    animation: none !important;
  }
  
  .nav-particle {
    animation: none !important;
  }
  
  .mobile-particle {
    animation: none !important;
  }
  
  #about-preloader .company-logo,
  #about-preloader .logo-icon,
  #about-preloader .tech-orbit,
  #about-preloader .tech-icon,
  #about-preloader .company-name-fast,
  #about-preloader .company-tagline-fast,
  #about-preloader .about-loading-bar {
    animation: none !important;
  }
  
  #services-preloader .services-hub,
  #services-preloader .services-hub-icon,
  #services-preloader .services-orbit,
  #services-preloader .services-orbit-icon,
  #services-preloader .services-title-fast,
  #services-preloader .services-tagline-fast,
  #services-preloader .services-loading-bar {
    animation: none !important;
  }
  
  .contact-preloader-simple .icon-circle,
  .contact-preloader-simple .contact-title-simple,
  .contact-preloader-simple .contact-subtitle-simple,
  .contact-preloader-simple .progress-container-simple,
  .contact-preloader-simple .progress-bar-simple {
    animation: none !important;
  }
  
  .team-member-enhanced:hover .team-content,
  .mission-card-enhanced:hover,
  .value-icon-enhanced:hover::before {
    transform: none !important;
  }
}