/* ==========================================
   INVENTPEOPLE - ULTRA PREMIUM LANDING PAGE
   Next-Gen Design with Particle Effects, 
   Glassmorphism, 3D Transforms, and Animations
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* CSS Custom Properties */
:root {
  /* Premium Color Palette */
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;

  --accent-400: #34d399;
  --accent-500: #10b981;
  --accent-600: #059669;

  --gold-400: #fbbf24;
  --gold-500: #f59e0b;

  --purple-500: #8b5cf6;
  --pink-500: #ec4899;

  /* Dark Theme */
  --dark-950: #020617;
  --dark-900: #0f172a;
  --dark-800: #1e293b;
  --dark-700: #334155;
  --dark-600: #475569;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
}

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

html {
  scroll-behavior: smooth;
}

body.landing-page {
  font-family: var(--font-body);
  background: var(--dark-950);
  color: white;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ==========================================
   ANIMATED BACKGROUND
   ========================================== */
.animated-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

/* Gradient Mesh - Static for performance */
.gradient-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 50% 90%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 50%, var(--dark-950) 0%, var(--dark-900) 100%);
  /* Animation removed for performance */
}

/* Floating Particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 15s infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1);
  }
}

/* Grid Lines Overlay */
.grid-overlay {
  position: absolute;
  inset: 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: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 10s ease-in-out infinite;
}

.glow-orb--1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.2));
  top: -200px;
  left: -200px;
}

.glow-orb--2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(59, 130, 246, 0.15));
  bottom: -150px;
  right: -150px;
  animation-delay: -5s;
}

.glow-orb--3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(139, 92, 246, 0.15));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -2.5s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* ==========================================
   NAVIGATION - Ultra Modern
   ========================================== */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease-out-expo);
}

.landing-nav.scrolled {
  background: rgba(2, 6, 23, 0.95);
  border-bottom: 1px solid var(--glass-border);
}

.landing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
  position: relative;
  overflow: hidden;
}

.nav-logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: white;
  background: var(--glass-bg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher - Sleek Pills */
.lang-switcher {
  display: flex;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 4px;
  gap: 2px;
}

.lang-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: white;
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.lang-btn:hover:not(.active) {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* Login Button - Glowing */
.btn-login {
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  border: none;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-login::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
}

.btn-login:hover::before {
  opacity: 1;
}

/* Mobile Menu Button - Minimalist */
.mobile-menu-btn {
  display: none;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: white;
  cursor: pointer;
  padding: 0.6rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 1rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: var(--glass-shadow);
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 1rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-menu-link:hover {
  background: var(--glass-bg);
  color: white;
}

.mobile-menu-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 0.5rem 0;
}

.mobile-lang-switcher {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.mobile-lang-btn {
  flex: 1;
  padding: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-lang-btn.active {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  border-color: transparent;
  color: white;
}

@media (max-width: 900px) {

  .nav-links,
  .lang-switcher,
  .btn-login {
    display: none;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: block;
  }
}

/* ==========================================
   HERO SECTION - Cinematic
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 1.5rem 4rem;
}

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

/* Animated Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-500);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent-500);
  animation: dotGlow 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

@keyframes dotGlow {

  0%,
  100% {
    box-shadow: 0 0 10px var(--accent-500);
  }

  50% {
    box-shadow: 0 0 25px var(--accent-500), 0 0 50px var(--accent-500);
  }
}

/* Hero Title - Stunning Typography */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title-line {
  display: block;
}

.hero-title-gradient {
  background: linear-gradient(135deg, var(--accent-400), var(--gold-400), var(--accent-400));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease-in-out infinite;
}

@keyframes gradientFlow {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* CTA Buttons - Premium */
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: white;
  box-shadow:
    0 4px 20px rgba(59, 130, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 40px rgba(59, 130, 246, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

.btn-secondary {
  background: rgba(30, 41, 59, 0.8);
  color: white;
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Stats - Floating Cards */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
  min-width: 160px;
}

.hero-stat:hover {
  transform: translateY(-5px);
  border-color: var(--primary-500);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   TRUST SECTION - Minimal & Elegant
   ========================================== */
.trust-section {
  padding: 4rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.01);
}

.trust-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  transition: color 0.3s ease;
}

.trust-item:hover {
  color: white;
}

.trust-icon {
  width: 22px;
  height: 22px;
  color: var(--accent-500);
}

/* ==========================================
   SERVICES - 3D Cards
   ========================================== */
.services-section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary-500);
  box-shadow:
    0 20px 60px rgba(59, 130, 246, 0.2),
    0 0 0 1px rgba(59, 130, 246, 0.1);
}

.service-card:hover::before {
  opacity: 0.05;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.service-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ==========================================
   HOW IT WORKS - Timeline
   ========================================== */
.how-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.03), transparent);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-600), var(--accent-500), var(--primary-600));
  opacity: 0.3;
}

@media (max-width: 900px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline::before {
    display: none;
  }
}

.timeline-step {
  text-align: center;
  position: relative;
}

.timeline-number {
  width: 100px;
  height: 100px;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease-out-expo);
}

.timeline-step:hover .timeline-number {
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================
   AUDIENCE SECTION - Split Cards
   ========================================== */
.audience-section {
  padding: 8rem 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.audience-card {
  border-radius: 32px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.audience-card.employers {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.audience-card.candidates {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.audience-card:hover {
  transform: translateY(-5px);
}

.audience-card.employers:hover {
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.audience-card.candidates:hover {
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}

.audience-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.audience-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.audience-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.audience-list {
  list-style: none;
  margin-bottom: 2rem;
}

.audience-list li {
  padding: 0.6rem 0;
  padding-left: 2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}

.audience-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-400);
  font-weight: bold;
}

/* ==========================================
   FAQ - Elegant Accordion
   ========================================== */
.faq-section {
  padding: 8rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
  border-color: var(--primary-500);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  text-align: left;
  font-family: var(--font-body);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.4s var(--ease-out-expo);
  color: var(--primary-400);
  flex-shrink: 0;
  margin-left: 1rem;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* ==========================================
   CTA SECTION - Dramatic
   ========================================== */
.cta-section {
  padding: 8rem 0;
  text-align: center;
  position: relative;
}

.cta-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 40px;
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
}

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

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
}

/* ==========================================
   FOOTER - Clean & Modern
   ========================================== */
.landing-footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-600);
  border-color: var(--primary-600);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] {
  transition-delay: 0.1s;
}

[data-animate-delay="2"] {
  transition-delay: 0.2s;
}

[data-animate-delay="3"] {
  transition-delay: 0.3s;
}

[data-animate-delay="4"] {
  transition-delay: 0.4s;
}

/* ==========================================
   LANGUAGE SPECIFIC CONTENT
   ========================================== */

/* Hide ALL language-specific content by default */
.lang-es,
.lang-pl {
  display: none !important;
}

/* Show Spanish when ES is active */
[data-active-lang="es"] .lang-es {
  display: inline !important;
}

/* Show Polish when PL is active */
[data-active-lang="pl"] .lang-pl {
  display: inline !important;
}

/* For block-level elements */
[data-active-lang="es"] .lang-es-block {
  display: block !important;
}

[data-active-lang="pl"] .lang-pl-block {
  display: block !important;
}

/* ==========================================
   SPECTACULAR ENHANCEMENTS
   ========================================== */

/* Noise Texture Overlay for Glassmorphism 2.0 */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.02;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Glassmorphism 2.0 Cards with Glow Border */
.glass-card-2 {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.glass-card-2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02), rgba(59, 130, 246, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Animated border glow on hover */
.glass-card-2::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500), var(--purple-500));
  opacity: 0;
  z-index: -1;
  filter: blur(15px);
  transition: opacity 0.5s ease;
}

.glass-card-2:hover::after {
  opacity: 0.5;
}

/* Upgraded Hero Stats with Glassmorphism 2.0 */
.hero-stat {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 2rem 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  min-width: 180px;
  position: relative;
  overflow: hidden;
}

/* Gradient border */
.hero-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.02), rgba(59, 130, 246, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background 0.5s ease;
}

/* Glow effect */
.hero-stat::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 27px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  opacity: 0;
  z-index: -1;
  filter: blur(20px);
  transition: opacity 0.5s ease;
}

.hero-stat:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-stat:hover::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(16, 185, 129, 0.3), rgba(139, 92, 246, 0.4));
}

.hero-stat:hover::after {
  opacity: 0.6;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

/* Kinetic Typography - Staggered Entry Animations */
.hero-title {
  overflow: hidden;
}

.hero-title-line {
  display: block;
  animation: slideUp 1s var(--ease-out-expo) both;
}

.hero-title-line:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-title-line:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-title-line:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-title-line:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px) rotateX(-10deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

/* Enhanced Flowing Gradient Text */
.hero-title-gradient {
  background: linear-gradient(90deg,
      var(--accent-400) 0%,
      var(--gold-400) 25%,
      var(--accent-400) 50%,
      var(--gold-400) 75%,
      var(--accent-400) 100%);
  background-size: 400% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
  text-shadow: 0 0 80px rgba(52, 211, 153, 0.5);
}

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

  100% {
    background-position: 400% center;
  }
}

/* Magnetic Button Effect */
.btn-magnetic {
  position: relative;
  transition: transform 0.3s var(--ease-out-expo);
}

/* Static Flight Connection Map Image */
.flight-map-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.flight-map-image {
  width: 100%;
  max-width: 1400px;
  height: auto;
  opacity: 0.4;
  object-fit: contain;
  /* No animation for performance */
}

@media (max-width: 1200px) {
  .flight-map-image {
    opacity: 0.3;
    width: 120%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .flight-map-image {
    opacity: 0.15;
    width: 180%;
    max-width: none;
  }
}

.world-map {
  width: 100%;
  height: auto;
}

/* Animated connection arc */
.connection-arc {
  stroke: url(#arcGradient);
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawArc 3s ease-out forwards 1s;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.8));
}

@keyframes drawArc {
  to {
    stroke-dashoffset: 0;
  }
}

/* Pulsing location dots */
.location-dot {
  fill: var(--accent-500);
  filter: drop-shadow(0 0 8px var(--accent-500));
}

.location-dot-pulse {
  fill: var(--accent-500);
  opacity: 0.5;
  animation: pulse 2s ease-out infinite;
  transform-origin: center;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/* Location labels */
.location-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  fill: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Flying plane animation */
.plane-icon {
  fill: white;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
  animation: flyPlane 4s ease-in-out infinite 2s;
  offset-path: path('M 180 280 Q 350 150 520 200');
  offset-distance: 0%;
}

@keyframes flyPlane {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

/* Enhanced Service Cards with 3D Tilt */
.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 2.5rem;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  cursor: default;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent, rgba(59, 130, 246, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Spotlight effect that follows cursor */
.service-card .spotlight {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
}

.service-card:hover .spotlight {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 80px rgba(59, 130, 246, 0.15),
    0 0 0 1px rgba(59, 130, 246, 0.1);
}

/* Aurora Background Enhancement */
.aurora-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  mix-blend-mode: screen;
  animation: auroraMove 20s ease-in-out infinite;
}

.aurora-blob--1 {
  width: 50vw;
  height: 50vw;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.4), rgba(139, 92, 246, 0.2));
  top: -20%;
  left: -10%;
  animation-delay: 0s;
}

.aurora-blob--2 {
  width: 40vw;
  height: 40vw;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.3), rgba(59, 130, 246, 0.2));
  bottom: -10%;
  right: -5%;
  animation-delay: -7s;
}

.aurora-blob--3 {
  width: 30vw;
  height: 30vw;
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.2), rgba(139, 92, 246, 0.2));
  top: 40%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes auroraMove {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(5%, 10%) scale(1.1);
  }

  50% {
    transform: translate(-5%, 5%) scale(0.9);
  }

  75% {
    transform: translate(3%, -5%) scale(1.05);
  }
}

/* Hero content needs higher z-index */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Badge entry animation */
.hero-badge {
  animation: badgeEnter 0.8s var(--ease-out-expo) 0.3s both;
}

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

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Subtitle entry */
.hero-subtitle {
  animation: fadeUp 1s var(--ease-out-expo) 0.5s both;
}

/* CTAs entry */
.hero-ctas {
  animation: fadeUp 1s var(--ease-out-expo) 0.7s both;
}

/* Stats entry */
.hero-stats {
  animation: fadeUp 1s var(--ease-out-expo) 0.9s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ==========================================
   PARTNERS SECTION
   ========================================== */
.partners-section {
  position: relative;
  z-index: 10;
  padding: 6rem 0;
  border-top: 1px solid var(--glass-border);
  background: rgba(15, 23, 42, 0.95);
  overflow: hidden;
}

.partners-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.partners-scroll-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.partners-scroll-track {
  display: flex;
  animation: partnersScroll 30s linear infinite;
  white-space: nowrap;
}

.partners-scroll-track:hover {
  animation-play-state: paused;
}

@keyframes partnersScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partners-logo-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
}

.partner-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 180px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.4s var(--ease-out-expo);
  flex-shrink: 0;
  overflow: hidden;
}

.partner-card:hover {
  background: white;
  border-color: var(--primary-400);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.partner-logo {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: all 0.4s ease;
}

.partner-card:hover .partner-logo {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .partners-section {
    padding: 4rem 0;
  }

  .partners-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .partner-card {
    height: 80px;
    width: 150px;
    padding: 0.75rem;
  }

  .partners-logo-group {
    gap: 1.5rem;
  }
}