/* ================================ */
/* INDEX - Página Inicial CW */
/* ================================ */

/* Reset adicional para garantir */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  overflow-x: hidden;
}

/* Navbar behavior handled by JavaScript */

/* Variáveis CSS para a Homepage */
:root {
  /* Blue Theme Colors */
  --primary: #1a3a6b;
  --primary-dark: #001b34;
  --primary-light: #2d5aa0;
  --secondary: #4a90e2;
  --accent: #ffd700;
  --accent-alt: #c2995e;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #0f172a;
  
  /* Text Colors */
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --text-white: #ffffff;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #1a3a6b 0%, #2d5aa0 50%, #4a90e2 100%);
  --gradient-cta: linear-gradient(135deg, #001b34 0%, #1a3a6b 50%, #2d5aa0 100%);
  --gradient-overlay: linear-gradient(rgba(26, 58, 107, 0.8), rgba(45, 90, 160, 0.9));
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 5rem 0;
  
  /* Transitions */
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-out;
}

/* ================== */
/* Base Styles */
/* ================== */
.bg-background {
  background-color: var(--bg-primary);
}

.bg-gradient-hero {
  background: var(--gradient-hero);
  position: relative;
}

.bg-gradient-cta {
  background: var(--gradient-cta);
}

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

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

.text-accent {
  color: var(--accent);
}

/* Utility Classes */
.min-h-screen {
  min-height: 100vh;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

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

.max-w-4xl {
  max-width: 56rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-2xl {
  max-width: 28rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.leading-tight {
  line-height: 1.25;
}

.opacity-90 {
  opacity: 0.9;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

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

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.grid {
  display: grid;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.w-12 {
  width: 3rem;
}

.h-12 {
  height: 3rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.text-gray-900 {
  color: #111827;
}

.text-gray-600 {
  color: #4b5563;
}

.text-green-400 {
  color: #34d399;
}

.bg-white {
  background-color: #ffffff;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.p-8 {
  padding: 2rem;
}

.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.transition-all {
  transition-property: all;
}

.duration-300 {
  transition-duration: 300ms;
}

.hover\:text-primary-dark:hover {
  color: var(--primary-dark);
}

.w-full {
  width: 100%;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.font-medium {
  font-weight: 500;
}

.opacity-95 {
  opacity: 0.95;
}

.text-blue-400 {
  color: #60a5fa;
}

.text-yellow-400 {
  color: #fbbf24;
}

.max-w-5xl {
  max-width: 64rem;
}

@media (min-width: 768px) {
  .md\:text-7xl {
    font-size: 4.5rem;
  }
  
  .md\:text-2xl {
    font-size: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .xl\:text-9xl {
    font-size: 8rem;
  }
}

/* Responsive Classes */
@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:text-xl {
    font-size: 1.25rem;
  }
  
  .md\:text-4xl {
    font-size: 2.25rem;
  }
  
  .md\:text-6xl {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ================== */
/* Hero Section */
/* ================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

/* Dynamic Background Elements */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(255, 215, 0, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 85% 15%, rgba(74, 144, 226, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 20%),
    radial-gradient(circle at 75% 85%, rgba(255, 215, 0, 0.1) 0%, transparent 25%);
  animation: particlesFloat 25s ease-in-out infinite;
}

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  border-radius: 50%;
}

.wave-1 {
  animation: waveMove 20s ease-in-out infinite;
  opacity: 0.7;
}

.wave-2 {
  animation: waveMove 25s ease-in-out infinite reverse;
  opacity: 0.5;
  animation-delay: -5s;
}

.wave-3 {
  animation: waveMove 30s ease-in-out infinite;
  opacity: 0.3;
  animation-delay: -10s;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 40s linear infinite;
}

/* Animations */
@keyframes particlesFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1); 
    opacity: 1;
  }
  25% { 
    transform: translateY(-15px) rotate(2deg) scale(1.05); 
    opacity: 0.8;
  }
  50% { 
    transform: translateY(-5px) rotate(-1deg) scale(0.95); 
    opacity: 1;
  }
  75% { 
    transform: translateY(-20px) rotate(3deg) scale(1.1); 
    opacity: 0.9;
  }
}

@keyframes waveMove {
  0%, 100% { transform: translateX(-50%) translateY(0px) rotate(0deg); }
  25% { transform: translateX(-50%) translateY(-10px) rotate(1deg); }
  50% { transform: translateX(-50%) translateY(-5px) rotate(-0.5deg); }
  75% { transform: translateX(-50%) translateY(-15px) rotate(1.5deg); }
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-text {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(239, 68, 68, 0.8));
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.5);
  }
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, #ffd700, #ffed4e, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShine 3s ease-in-out infinite;
}

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

/* Social Proof */
.social-proof {
  animation: fadeInUp 0.8s ease-out 1s both;
}

.proof-stats {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
}

.stat-label {
  opacity: 0.9;
  font-size: 0.875rem;
}

/* Hero Title */
.hero-title {
  animation: fadeInUp 0.8s ease-out 0.4s both;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  color: #ffffff !important;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.lg\:text-8xl {
  font-size: 6rem;
  line-height: 1;
}

@media (min-width: 1024px) {
  .lg\:text-8xl {
    font-size: 6rem;
  }
}

.font-black {
  font-weight: 900;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.font-light {
  font-weight: 300;
}

/* Text Gradient for Hero */
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

.text-transparent {
  color: transparent;
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-blue-400 {
  --tw-gradient-from: #60a5fa;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
}

.via-purple-400 {
  --tw-gradient-stops: var(--tw-gradient-from), #c084fc, var(--tw-gradient-to, rgba(192, 132, 252, 0));
}

.to-pink-400 {
  --tw-gradient-to: #f472b6;
}

/* Hero gradient text - better visibility */
.hero-title .text-gradient {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fbbf24 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
}

/* Stats Card */
.stat-card {
  text-align: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-base);
  min-width: 120px;
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.stat-card .text-4xl {
  color: #ffd700 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-card .text-sm {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Hero Subtitle */
.hero-subtitle {
  animation: fadeInUp 0.8s ease-out 0.6s both;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Hero CTA */
.hero-cta {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Hero Trust */
.hero-trust {
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-base);
  min-width: 200px;
}

.trust-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.trust-item svg {
  margin-bottom: 0.5rem;
}

.trust-item span {
  line-height: 1.4;
  font-size: 0.9rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: fadeInUp 0.8s ease-out 1.4s both;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-4px);
}

.scroll-text {
  font-size: 0.875rem;
  opacity: 0.8;
  font-weight: 500;
  text-align: center;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  animation: scrollBounce 2s infinite;
  transition: var(--transition-base);
}

.scroll-indicator:hover .scroll-arrow {
  border-color: var(--accent);
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: rotate(-45deg) translateY(0); }
  40% { transform: rotate(-45deg) translateY(-10px); }
  60% { transform: rotate(-45deg) translateY(-5px); }
}

/* ================== */
/* Button Styles */
/* ================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::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: var(--transition-base);
}

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  border-radius: 12px;
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.cta-text small {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 400;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

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

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

/* Pulse Animation */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* WhatsApp Button - Green Gradient */
.bg-gradient-to-r.from-green-500 {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  text-decoration: none !important;
}

.bg-gradient-to-r.from-green-500:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  text-decoration: none !important;
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:shadow-green-500\/50:hover {
  box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.5);
}

.group {
  position: relative;
}

.inline-flex {
  display: inline-flex;
  text-decoration: none !important;
}

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

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Secondary Button - Glass Effect */
.border-2 {
  border-width: 2px;
}

.border-white\/30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hover\:bg-white\/10:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Remove underline from all hero links */
.hero-section a {
  text-decoration: none !important;
}

.hero-section a:hover {
  text-decoration: none !important;
}

/* Trust Badges Improved */
.opacity-80 {
  opacity: 1 !important;
}

.gap-2 {
  gap: 0.5rem;
}

/* Trust badges text contrast */
.hero-section .flex.items-center.gap-2 span {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

/* SVG icons in trust badges */
.hero-section .text-green-400,
.hero-section .text-blue-400,
.hero-section .text-yellow-400 {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Animate Bounce */
.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* Absolute positioning */
.absolute {
  position: absolute;
}

.bottom-8 {
  bottom: 2rem;
}

.left-1\/2 {
  left: 50%;
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translateX(-50%);
}

/* Text colors for better contrast */
.text-white {
  color: #ffffff !important;
}

.text-green-400 {
  color: #4ade80;
}

.text-purple-600 {
  color: #9333ea;
}

/* ================== */
/* Services Section Premium */
/* ================== */
.services-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

/* Premium gradient text */
.text-gradient-premium {
  background: linear-gradient(135deg, #1a3a6b 0%, #4a90e2 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Decorative blurs */
.blur-3xl {
  filter: blur(100px);
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.-translate-y-1\/2 {
  transform: translateY(-50%);
}

.translate-x-1\/2 {
  transform: translateX(50%);
}

.translate-y-1\/2 {
  transform: translateY(50%);
}

.bg-primary\/5 {
  background-color: rgba(26, 58, 107, 0.05);
}

.bg-primary\/10 {
  background-color: rgba(26, 58, 107, 0.1);
}

.bg-accent\/5 {
  background-color: rgba(255, 215, 0, 0.05);
}

.w-96 {
  width: 24rem;
}

.h-96 {
  height: 24rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.text-5xl {
  font-size: 3rem;
}

@media (min-width: 768px) {
  .md\:text-5xl {
    font-size: 3rem;
  }
  
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 1024px) {
  .lg\:col-start-2 {
    grid-column-start: 2;
  }
}

.max-w-7xl {
  max-width: 80rem;
}

/* Premium Service Cards */
.service-card-premium {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 58, 107, 0.08);
}

.service-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 58, 107, 0.03) 0%, rgba(74, 144, 226, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-premium:hover::before {
  opacity: 1;
}

.service-card-premium:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(26, 58, 107, 0.15);
}

/* Service Number Badge */
.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary);
  transition: all 0.3s ease;
}

.service-card-premium:hover .service-number {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

/* Premium Icon */
.service-icon-premium {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--secondary) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 16px -4px rgba(26, 58, 107, 0.3);
}

.service-icon-premium svg {
  color: white;
  stroke-width: 2.5;
}

.service-card-premium:hover .service-icon-premium {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 24px -6px rgba(26, 58, 107, 0.4);
}

/* Premium CTA Button */
.service-cta-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px -2px rgba(26, 58, 107, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.service-cta-premium:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 16px -2px rgba(26, 58, 107, 0.4);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
}

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

.service-cta-premium:hover svg {
  transform: translateX(4px);
}

/* Old service card styles for compatibility */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-hero);
  transform: scaleX(0);
  transition: var(--transition-base);
}

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

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

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  border-radius: 20px;
  margin-bottom: 1.5rem;
  transition: var(--transition-base);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
  color: white;
}

/* ================== */
/* CTA Hero Section */
/* ================== */
.cta-hero-section {
  position: relative;
}

.cta-hero-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

.cta-hero-section h2 {
  color: #ffffff !important;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.cta-hero-section p {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.cta-hero-section .text-accent {
  color: #ffd700 !important;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

/* CTA Hero Buttons */
.cta-hero-section a.bg-white {
  background: white !important;
  color: var(--primary) !important;
  text-decoration: none !important;
}

.cta-hero-section a.bg-white:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.3);
}

.cta-hero-section .border-white\/30 {
  border-color: rgba(255, 255, 255, 0.3);
  text-decoration: none !important;
}

.cta-hero-section .text-green-600 {
  color: #16a34a;
}

/* Min height utility */
.min-h-\[60vh\] {
  min-height: 60vh;
}

/* Padding utilities */
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Background utilities */
.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Text size utilities */
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .md\:text-6xl {
    font-size: 3.75rem;
  }
}

/* Trust indicators styling */
.cta-hero-section .flex.items-center.gap-2 span {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-hero-section .text-green-400,
.cta-hero-section .text-blue-400,
.cta-hero-section .text-yellow-400 {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ================== */
/* CTA Section (Old) */
/* ================== */
.cta-section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

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

.contact-info {
  opacity: 0.8;
  font-size: 0.875rem;
}

/* ================== */
/* Roadmap Section */
/* ================== */
.roadmap-section {
  position: relative;
}

.roadmap-container {
  position: relative;
}

/* Roadmap Step */
.roadmap-step {
  position: relative;
  padding-bottom: 4rem;
}

.roadmap-step:last-child {
  padding-bottom: 0;
}

/* Connecting Line */
.roadmap-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 48px;
  top: 80px;
  width: 3px;
  height: calc(100% - 60px);
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
  opacity: 0.3;
}

.roadmap-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
}

/* Step Number */
.roadmap-number {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -4px rgba(26, 58, 107, 0.3);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.roadmap-number span {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.roadmap-step:hover .roadmap-number {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 32px -4px rgba(26, 58, 107, 0.4);
}

/* Roadmap Card */
.roadmap-card {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(26, 58, 107, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.roadmap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.roadmap-step:hover .roadmap-card {
  transform: translateX(8px);
  box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.15);
  border-color: rgba(26, 58, 107, 0.15);
}

/* Roadmap Icon */
.roadmap-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(26, 58, 107, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.roadmap-icon svg {
  color: var(--primary);
  stroke-width: 2;
}

.roadmap-step:hover .roadmap-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: scale(1.1);
}

.roadmap-step:hover .roadmap-icon svg {
  color: white;
}

/* Roadmap Title */
.roadmap-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.roadmap-step:hover .roadmap-title {
  color: var(--primary);
}

/* Roadmap Description */
.roadmap-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Roadmap Time Badge */
.roadmap-time {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-alt);
}

.roadmap-time svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .roadmap-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .roadmap-number {
    width: 80px;
    height: 80px;
  }
  
  .roadmap-number span {
    font-size: 1.75rem;
  }
  
  .roadmap-step:not(:last-child)::before {
    left: 40px;
    top: 90px;
  }
  
  .roadmap-card {
    padding: 1.5rem;
  }
  
  .roadmap-icon {
    width: 56px;
    height: 56px;
  }
  
  .roadmap-title {
    font-size: 1.25rem;
  }
  
  .roadmap-description {
    font-size: 0.9375rem;
  }
}

/* Gradient utilities */
.bg-gradient-to-l {
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}

.from-primary\/5 {
  --tw-gradient-from: rgba(26, 58, 107, 0.05);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 58, 107, 0));
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.w-1\/3 {
  width: 33.333333%;
}

.h-full {
  height: 100%;
}

/* ================== */
/* Why Choose CTA Section */
/* ================== */
.why-choose-cta {
  position: relative;
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-gray-900 {
  --tw-gradient-from: #111827;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0));
}

.via-primary-dark {
  --tw-gradient-stops: var(--tw-gradient-from), var(--primary-dark), var(--tw-gradient-to, rgba(0, 27, 52, 0));
}

.to-gray-900 {
  --tw-gradient-to: #111827;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.opacity-10 {
  opacity: 0.1;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.bg-accent\/20 {
  background-color: rgba(255, 215, 0, 0.2);
}

.border-accent\/30 {
  border-color: rgba(255, 215, 0, 0.3);
}

/* Stat Box CTA */
.stat-box-cta {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.stat-box-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(255, 215, 0, 0.2);
}

.stat-icon-cta {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.stat-icon-cta svg {
  color: var(--accent);
}

.stat-box-cta:hover .stat-icon-cta {
  background: linear-gradient(135deg, var(--accent) 0%, #e6c200 100%);
  transform: scale(1.1) rotate(-5deg);
}

.stat-box-cta:hover .stat-icon-cta svg {
  color: var(--primary-dark);
}

.stat-number-cta {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.stat-label-cta {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-desc-cta {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Benefit Item CTA */
.benefit-item-cta {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.benefit-item-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
}

/* CTA Button Large */
.cta-button-large {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 3rem;
  background: linear-gradient(135deg, var(--accent) 0%, #e6c200 100%);
  color: var(--primary-dark);
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px -10px rgba(255, 215, 0, 0.5);
  position: relative;
  overflow: hidden;
}

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

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

.cta-button-large:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px -10px rgba(255, 215, 0, 0.6);
}

.cta-button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.cta-button-text strong {
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.cta-button-text small {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.8;
}

.w-7 {
  width: 1.75rem;
}

.h-7 {
  height: 1.75rem;
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-400 {
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .stat-number-cta {
    font-size: 2.5rem;
  }
  
  .cta-button-large {
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
  }
  
  .cta-button-text {
    align-items: center;
    text-align: center;
  }
  
  .cta-button-text strong {
    font-size: 1.125rem;
  }
}

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

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

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* ================== */
/* Responsive Design */
/* ================== */

/* Large Desktop */
@media (max-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
}

/* Desktop */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
}

/* Tablet */
@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 90vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .trust-item {
    justify-content: center;
  }
  
  .services-section .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .scroll-indicator {
    display: none;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
  }
  
  .btn-lg {
    padding: 0.875rem 1.75rem;
  }
  
  .service-card {
    padding: 1.25rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon svg {
    width: 2rem;
    height: 2rem;
  }
}

/* ================== */
/* Accessibility */
/* ================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .scroll-arrow {
    animation: none;
  }
  
  .hero-background::before {
    animation: none;
  }
}

/* Focus States */
.btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .hero-section {
    background: #000000;
    color: #ffffff;
  }
  
  .service-card {
    border: 2px solid #000000;
  }
  
  .btn-primary {
    border: 2px solid #000000;
  }
}

/* ================== */
/* Performance */
/* ================== */
.hero-section {
  will-change: transform;
}

.service-card:hover {
  will-change: transform;
}

.btn:hover {
  will-change: transform;
}

/* Print Styles */
@media print {
  .hero-section {
    background: white !important;
    color: black !important;
    min-height: auto;
  }
  
  .btn {
    border: 1px solid black;
    background: white !important;
    color: black !important;
  }
  
  .scroll-indicator {
    display: none;
  }
}

/* ===== KEYFRAMES ANIMATIONS ===== */

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

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

@keyframes slide-up-fade {
    from { 
        opacity: 0;
        transform: translateY(40px) rotateX(20deg);
    }
    to { 
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes fade-left {
    from { 
        opacity: 0;
        transform: translateX(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes zoom-in-rotate {
    from { 
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    to { 
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes bounce-in {
    0% { 
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    50% { 
        opacity: 0.8;
        transform: translateY(5px) scale(1.05);
    }
    100% { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse-glow {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.1);
    }
}

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

@keyframes card-reveal {
    0% { 
        opacity: 0;
        transform: translateY(30px) rotateX(15deg);
        filter: blur(5px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
        filter: blur(0px);
    }
}

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

@keyframes cta-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.3), 0 0 60px rgba(59, 130, 246, 0.2);
        transform: scale(1.02);
    }
}

@keyframes button-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

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

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== LAYOUT ===== */

.section-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
