/* ============================================
   Elite Professional Theme - Inspired by Mycorr
   Modern, sophisticated design for ReleasePilot
   ============================================ */

/* ===== ENHANCED CSS VARIABLES ===== */
:root {
  /* Professional Color Palette */
  --elite-primary: #0a0e27;
  --elite-primary-light: #1a1f3a;
  --elite-secondary: #1e293b;
  --elite-accent: #3b82f6;
  --elite-accent-hover: #2563eb;
  --elite-accent-light: #60a5fa;
  
  /* Background Colors */
  --elite-bg-primary: #ffffff;
  --elite-bg-secondary: #f8fafc;
  --elite-bg-tertiary: #f1f5f9;
  --elite-bg-dark: #0f172a;
  
  /* Text Colors */
  --elite-text-primary: #0f172a;
  --elite-text-secondary: #475569;
  --elite-text-muted: #64748b;
  --elite-text-light: #94a3b8;
  
  /* Gradients */
  --elite-gradient-primary: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  --elite-gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --elite-gradient-hero: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  
  /* Shadows - More sophisticated */
  --elite-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  --elite-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --elite-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --elite-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --elite-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  
  /* Spacing - More generous */
  --elite-spacing-xs: 0.5rem;
  --elite-spacing-sm: 1rem;
  --elite-spacing-md: 1.5rem;
  --elite-spacing-lg: 2rem;
  --elite-spacing-xl: 3rem;
  --elite-spacing-2xl: 4rem;
  --elite-spacing-3xl: 6rem;
  
  /* Typography - More impactful */
  --elite-font-sans: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== TYPOGRAPHY ENHANCEMENTS ===== */
body {
  font-family: var(--elite-font-sans);
  color: var(--elite-text-primary);
  background: var(--elite-bg-primary);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--elite-text-primary);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--elite-text-primary);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ===== NAVBAR ENHANCEMENTS ===== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--elite-shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.nav-links a {
  color: var(--elite-text-secondary);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--elite-accent);
}

.btn-primary {
  background: var(--elite-gradient-primary);
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.25);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.35);
}

.btn-secondary {
  border: 2px solid var(--elite-accent);
  color: var(--elite-accent);
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--elite-accent);
  color: white;
  transform: translateY(-2px);
}

/* ===== HERO SECTION - ELITE DESIGN ===== */
.hero {
  background: var(--elite-gradient-hero);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 700px;
}

.hero h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--elite-text-primary) 0%, var(--elite-text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--elite-text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--elite-accent);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.feature-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--elite-text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
}

.feature-badge i {
  color: var(--elite-accent);
  font-size: 1.25rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 24px;
  box-shadow: var(--elite-shadow-2xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ===== SECTION HEADERS - MORE IMPACTFUL ===== */
.section-header {
  margin-bottom: 5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--elite-text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== FEATURE CARDS - ELITE DESIGN ===== */
.features {
  background: var(--elite-bg-primary);
  padding: 6rem 0;
}

.feature-card {
  background: var(--elite-bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--elite-gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--elite-shadow-xl);
  border-color: rgba(59, 130, 246, 0.3);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--elite-accent);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.2) 100%);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--elite-text-primary);
}

.feature-card p {
  color: var(--elite-text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof {
  background: var(--elite-bg-secondary);
  padding: 4rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.social-proof-label {
  text-align: center;
  color: var(--elite-text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-stat {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--elite-shadow-lg);
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--elite-accent);
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.9375rem;
  color: var(--elite-text-secondary);
  font-weight: 500;
}

/* ===== HOW IT WORKS - ENHANCED ===== */
.how-it-works {
  background: var(--elite-bg-secondary);
  padding: 6rem 0;
}

.step {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--elite-shadow-lg);
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--elite-gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

/* ===== PRICING - ELITE DESIGN ===== */
.pricing {
  background: var(--elite-bg-primary);
  padding: 6rem 0;
}

.pricing-tier {
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.pricing-tier:hover {
  transform: translateY(-8px);
  box-shadow: var(--elite-shadow-2xl);
  border-color: var(--elite-accent);
}

.pricing-tier.featured {
  border-color: var(--elite-accent);
  border-width: 3px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(59, 130, 246, 0.05) 100%);
  transform: scale(1.03);
}

.pricing-tier.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
  background: var(--elite-gradient-primary);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-badge i {
  font-size: 1rem;
}

/* Current Plan Badge */
.current-plan-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Most Popular Badge */
.popular-badge {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.price-highlight {
  color: #ef4444;
  font-weight: 700;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--elite-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ===== TESTIMONIALS - ENHANCED ===== */
.testimonials {
  background: var(--elite-bg-secondary);
  padding: 6rem 0;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--elite-accent);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--elite-shadow-xl);
  border-color: rgba(59, 130, 246, 0.2);
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--elite-text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ===== CTA SECTION - ELITE ===== */
.cta-section {
  background: var(--elite-gradient-primary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

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

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.cta-section .btn-secondary {
  background: white;
  color: var(--elite-accent);
  border: 2px solid white;
  font-weight: 600;
}

.cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===== USE CASES - ENHANCED ===== */
.use-cases {
  background: var(--elite-bg-primary);
  padding: 6rem 0;
}

.use-case-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--elite-shadow-lg);
  border-color: var(--elite-accent);
}

.use-case-icon {
  background: var(--elite-gradient-primary);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* ===== CONTACT SECTION - ELITE ===== */
.contact-section {
  background: var(--elite-bg-secondary);
  padding: 6rem 0;
}

.contact-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  border: 2px solid rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--elite-shadow-2xl);
  border-color: var(--elite-accent);
}

.icon-wrapper {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.contact-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* ===== FOOTER - ELITE ===== */
.footer {
  background: var(--elite-bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2rem;
}

.footer-brand h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-section h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

/* ===== LAUNCH BANNER - ELITE ===== */
.launch-banner {
  background: var(--elite-gradient-primary);
  color: white;
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
}

/* Live Banner Special Styling */
.live-banner {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.live-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.live-banner .launch-banner-icon {
  position: relative;
  animation: bounce 2s infinite, pulse-glow 2s ease-in-out infinite;
}

.pulse-dot {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 12px;
  height: 12px;
  background: #ffd700;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
  }
}

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

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

.live-banner .launch-banner-text {
  font-weight: 500;
}

.live-banner .launch-banner-text strong {
  font-size: 1.1em;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.live-banner .launch-banner-cta {
  background: white;
  color: #059669;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.live-banner .launch-banner-cta:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Live Badge in Hero */
.live-badge {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
  border: 2px solid rgba(16, 185, 129, 0.3);
  color: #059669;
  animation: badge-glow 3s ease-in-out infinite;
}

.live-text {
  display: inline-block;
  animation: text-pulse 2s ease-in-out infinite;
  font-weight: 700;
}

@keyframes badge-glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
  }
}

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

/* Live Pricing Badge */
.live-pricing-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  animation: badge-shimmer 3s ease-in-out infinite;
}

@keyframes badge-shimmer {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(16, 185, 129, 0.5);
  }
}

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

.launch-banner-cta {
  background: white;
  color: var(--elite-accent);
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

/* ===== RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 3rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.125rem;
  }
  
  .section-header p {
    font-size: 1.125rem;
  }
  
  .feature-card,
  .pricing-tier,
  .testimonial-card {
    padding: 2rem;
  }
  
  .pricing-price {
    font-size: 2.5rem;
  }
}

/* ===== SMOOTH SCROLLING ===== */
html {
  scroll-behavior: smooth;
}

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

.feature-card,
.step,
.pricing-tier,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== INTEGRATION SECTION STYLING ===== */
.integration-section {
  background: var(--elite-bg-secondary);
  padding: 6rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
  }
}

.integration-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
  margin-top: 4rem;
  padding: 2rem 0;
  position: relative;
}

.coming-soon-overlay {
  opacity: 0.5;
  filter: grayscale(50%);
  pointer-events: none;
}

.coming-soon-overlay::after {
  content: 'Coming Soon';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(139, 92, 246, 0.95);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
  backdrop-filter: blur(10px);
}

.integration-logo {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--elite-text-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 1rem 2rem;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-width: 120px;
}

.coming-soon-overlay .integration-logo {
  opacity: 0.4;
}

.coming-soon-overlay .integration-logo:hover {
  opacity: 0.4;
  transform: none;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--elite-text-secondary);
}
