/* ============================================
   E-SCOOTER GUIDE - PREMIUM DESIGN UPGRADE
   Glassmorphism | Animated Orbs | WOW Effects
   ============================================ */

/* ============================================
   ANIMATED BACKGROUND ORBS - Floating Gradients
   ============================================ */

.orbs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(10, 207, 131, 0.4) 0%, transparent 70%);
  top: -300px;
  right: -200px;
  animation-duration: 25s;
  animation-delay: 0s;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.35) 0%, transparent 70%);
  bottom: -200px;
  left: -150px;
  animation-duration: 30s;
  animation-delay: -5s;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 149, 0, 0.25) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation-duration: 35s;
  animation-delay: -10s;
}

.orb-4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(191, 90, 242, 0.3) 0%, transparent 70%);
  top: 60%;
  right: 10%;
  animation-duration: 28s;
  animation-delay: -15s;
}

@keyframes orbFloat {

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

  25% {
    transform: translate(50px, -80px) scale(1.1);
  }

  50% {
    transform: translate(-30px, 40px) scale(0.9);
  }

  75% {
    transform: translate(60px, 60px) scale(1.05);
  }
}

/* ============================================
   GRAIN/NOISE TEXTURE OVERLAY
   ============================================ */

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.03;
  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");
}

/* ============================================
   ENHANCED GLASSMORPHISM HEADER
   ============================================ */

.header {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  z-index: 10001 !important;
}

.header.scrolled {
  background: rgba(255, 255, 255, 1.0) !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

/* Navigation Pills - Glass Style */
.nav {
  background: rgba(245, 247, 249, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.nav-link {
  position: relative;
  overflow: hidden;
}

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

.nav-link:hover::before {
  left: 100%;
}

.nav-link.active {
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%) !important;
  box-shadow:
    0 4px 15px rgba(26, 26, 26, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* ============================================
   PREMIUM HERO SECTION
   ============================================ */

.hero {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(10, 207, 131, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(10, 132, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 149, 0, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(90deg,
      transparent,
      transparent 100px,
      rgba(232, 236, 240, 0.3) 100px,
      rgba(232, 236, 240, 0.3) 101px),
    repeating-linear-gradient(0deg,
      transparent,
      transparent 100px,
      rgba(232, 236, 240, 0.3) 100px,
      rgba(232, 236, 240, 0.3) 101px);
  pointer-events: none;
  opacity: 0.5;
}

/* Hero Badge - Glow Effect */
.hero-badge {
  background: linear-gradient(135deg, rgba(10, 207, 131, 0.2), rgba(10, 132, 255, 0.15)) !important;
  border: 1px solid rgba(10, 207, 131, 0.4) !important;
  box-shadow:
    0 0 30px rgba(10, 207, 131, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  animation: badgePulse 3s ease-in-out infinite !important;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow:
      0 0 30px rgba(10, 207, 131, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }

  50% {
    box-shadow:
      0 0 50px rgba(10, 207, 131, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
}

/* Hero H1 - Text Gradient Animation */
.hero h1 {
  background: linear-gradient(135deg, #1A1A1A 0%, #333 50%, #1A1A1A 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 5s ease-in-out infinite;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #0ACF83 0%, #00D4AA 50%, #0ACF83 100%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: textShine 3s ease-in-out infinite !important;
  position: relative;
  text-shadow: none !important;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #0ACF83, #00D4AA, #0ACF83);
  background-size: 200% auto;
  border-radius: 3px;
  opacity: 0.4;
  animation: textShine 3s ease-in-out infinite;
}

@keyframes textShine {

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

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

/* Hero Stats - Glass Cards */
.hero-stats {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px 40px !important;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  margin-top: 56px !important;
}

.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(180deg, transparent, var(--card-border), transparent);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  background: linear-gradient(135deg, #1A1A1A 0%, #444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-number span {
  background: linear-gradient(135deg, #0ACF83 0%, #00D4AA 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Hero Visual Enhancement */
.hero-scooter-placeholder {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(30px) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.1),
    0 0 80px rgba(10, 207, 131, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.hero-scooter-placeholder::before {
  background: linear-gradient(135deg,
      transparent 0%,
      transparent 40%,
      rgba(255, 255, 255, 0.9) 50%,
      transparent 60%,
      transparent 100%) !important;
  animation: heroShine 4s ease-in-out infinite !important;
}

@keyframes heroShine {
  0% {
    transform: translateX(-150%) rotate(45deg);
  }

  100% {
    transform: translateX(150%) rotate(45deg);
  }
}

/* ============================================
   PREMIUM BUTTONS
   ============================================ */

.btn-primary {
  background: linear-gradient(135deg, #FF9500 0%, #FF7A00 100%) !important;
  box-shadow:
    0 8px 32px rgba(255, 149, 0, 0.35),
    0 2px 8px rgba(255, 149, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow:
    0 16px 48px rgba(255, 149, 0, 0.45),
    0 4px 12px rgba(255, 149, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

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

.btn-secondary {
  background: linear-gradient(135deg, #1A1A1A 0%, #2d2d2d 100%) !important;
  box-shadow:
    0 8px 32px rgba(26, 26, 26, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%) !important;
  box-shadow:
    0 16px 48px rgba(26, 26, 26, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  border: 2px solid rgba(232, 236, 240, 0.8) !important;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.btn-outline:hover {
  border-color: var(--neo-green) !important;
  background: rgba(10, 207, 131, 0.08) !important;
  box-shadow:
    0 8px 32px rgba(10, 207, 131, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

/* ============================================
   PREMIUM CATEGORY CARDS
   ============================================ */

.category-card {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.category-card::before {
  height: 5px !important;
  background: linear-gradient(90deg, #0ACF83, #00D4AA, #0A84FF) !important;
}

.category-card:hover {
  transform: translateY(-12px) scale(1.02) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 24px 64px rgba(10, 207, 131, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  border-color: rgba(10, 207, 131, 0.3) !important;
}

.category-icon {
  background: linear-gradient(135deg, #0A84FF 0%, #5AC8FA 100%) !important;
  box-shadow:
    0 8px 24px rgba(10, 132, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.category-card:hover .category-icon {
  background: linear-gradient(135deg, #0ACF83 0%, #00D4AA 100%) !important;
  box-shadow:
    0 12px 32px rgba(10, 207, 131, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.15) rotate(-8deg) !important;
}

.category-arrow {
  background: rgba(245, 247, 249, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.category-card:hover .category-arrow {
  background: linear-gradient(135deg, #0ACF83 0%, #00D4AA 100%) !important;
  box-shadow:
    0 8px 24px rgba(10, 207, 131, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* ============================================
   PREMIUM PRODUCT CARDS
   ============================================ */

.product-card {
  background: #fff !important;
  border: 1px solid rgba(232, 236, 240, 0.6) !important;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.product-card:hover {
  transform: translateY(-16px) rotateX(3deg) scale(1.01) !important;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.12),
    0 16px 32px rgba(10, 207, 131, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  border-color: rgba(10, 207, 131, 0.2) !important;
}

.product-image {
  background: linear-gradient(145deg, #f8fafc 0%, #fff 100%) !important;
  position: relative;
  overflow: hidden;
}

.product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(10, 207, 131, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(10, 132, 255, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.product-badge {
  background: linear-gradient(135deg, #0ACF83 0%, #00D4AA 100%) !important;
  box-shadow:
    0 4px 16px rgba(10, 207, 131, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.product-badge.new {
  background: linear-gradient(135deg, #0A84FF 0%, #5AC8FA 100%) !important;
  box-shadow:
    0 4px 16px rgba(10, 132, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.product-badge.sale {
  background: linear-gradient(135deg, #FF453A 0%, #FF6961 100%) !important;
  box-shadow:
    0 4px 16px rgba(255, 69, 58, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.product-action {
  background: linear-gradient(135deg, #FF9500 0%, #FF7A00 100%) !important;
  box-shadow:
    0 8px 24px rgba(255, 149, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.product-action:hover {
  transform: scale(1.15) rotate(-8deg) !important;
  box-shadow:
    0 12px 32px rgba(255, 149, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

.spec-item {
  background: rgba(245, 247, 249, 0.8) !important;
  backdrop-filter: blur(5px) !important;
  border: 1px solid rgba(232, 236, 240, 0.5) !important;
  transition: all 0.3s ease !important;
}

.product-card:hover .spec-item {
  background: rgba(10, 207, 131, 0.1) !important;
  border-color: rgba(10, 207, 131, 0.2) !important;
}

/* ============================================
   PREMIUM BENEFIT CARDS
   ============================================ */

.benefit-card {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.benefit-card::before {
  background: linear-gradient(135deg, #0ACF83, #0A84FF) !important;
}

.benefit-card:hover {
  transform: translateY(-12px) scale(1.02) !important;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.1),
    0 12px 24px rgba(10, 207, 131, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.benefit-icon {
  background: linear-gradient(135deg, #0ACF83 0%, #00D4AA 100%) !important;
  box-shadow:
    0 12px 32px rgba(10, 207, 131, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.2) rotate(-12deg) !important;
  box-shadow:
    0 16px 40px rgba(10, 207, 131, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
}

/* ============================================
   PREMIUM NEWSLETTER SECTION
   ============================================ */

.newsletter-section {
  background:
    linear-gradient(135deg, #1A1A1A 0%, #0d0d0d 100%) !important;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  width: 800px !important;
  height: 800px !important;
  background: radial-gradient(circle, rgba(10, 207, 131, 0.3) 0%, transparent 60%) !important;
  animation: orbFloat 30s ease-in-out infinite !important;
}

.newsletter-section::after {
  width: 600px !important;
  height: 600px !important;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.2) 0%, transparent 60%) !important;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 2px solid transparent !important;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.newsletter-input:focus {
  border-color: var(--neo-green) !important;
  box-shadow:
    0 0 0 4px rgba(10, 207, 131, 0.2),
    0 8px 32px rgba(10, 207, 131, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

/* ============================================
   COUNTRY CARDS - Legal Section
   ============================================ */

.country-card {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  border-radius: 24px !important;
  padding: 36px !important;
  transition: all 0.4s ease !important;
}

.country-card:hover {
  transform: translateY(-8px) !important;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.country-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(232, 236, 240, 0.6);
}

.country-flag {
  font-size: 32px;
}

.country-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--carbon-black);
  flex: 1;
}

.badge {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-at {
  background: linear-gradient(135deg, #ed1c24, #ff4444);
  color: #fff;
}

.badge-de {
  background: linear-gradient(135deg, #000, #333);
  color: #ffcc00;
}

.country-rules {
  list-style: none;
  padding: 0;
  margin: 0;
}

.country-rules li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 15px;
  border-bottom: 1px solid rgba(232, 236, 240, 0.4);
}

.country-rules li:last-child {
  border-bottom: none;
}

.country-rules svg {
  width: 20px;
  height: 20px;
  color: var(--neo-green);
  flex-shrink: 0;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================
   PREMIUM FOOTER
   ============================================ */

.footer {
  background:
    linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f5f7f9 100%) !important;
}

.social-link {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(232, 236, 240, 0.8) !important;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.social-link:hover {
  background: linear-gradient(135deg, #0ACF83 0%, #00D4AA 100%) !important;
  border-color: transparent !important;
  box-shadow:
    0 8px 24px rgba(10, 207, 131, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* ============================================
   PREMIUM COOKIE BANNER
   ============================================ */

.cookie-banner {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

/* ============================================
   IMAGE LIGHTBOX / ZOOM
   ============================================ */

.zoomable {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.zoomable:hover {
  transform: scale(1.02);
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 30, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-overlay.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  color: #1a1a1a;
}

.lightbox-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #0ACF83;
  color: white;
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 20px;
  font-weight: 500;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
  .lightbox-close {
    top: -55px;
    right: 5px;
  }

  .lightbox-content {
    max-width: 95%;
  }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Stagger children */
.stagger-reveal>* {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-reveal.active>*:nth-child(1) {
  transition-delay: 0.05s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-reveal.active>*:nth-child(2) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-reveal.active>*:nth-child(3) {
  transition-delay: 0.15s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-reveal.active>*:nth-child(4) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-reveal.active>*:nth-child(5) {
  transition-delay: 0.25s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-reveal.active>*:nth-child(6) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   CURSOR GLOW EFFECT
   ============================================ */

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10, 207, 131, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  .orb {
    opacity: 0.3;
  }

  .orb-1 {
    width: 400px;
    height: 400px;
  }

  .orb-2 {
    width: 300px;
    height: 300px;
  }

  .orb-3 {
    width: 250px;
    height: 250px;
  }

  .orb-4 {
    display: none;
  }

  .hero-stats {
    padding: 24px !important;
  }

  .country-grid {
    grid-template-columns: 1fr;
  }

  .category-card:hover,
  .product-card:hover,
  .benefit-card:hover {
    transform: translateY(-6px) !important;
  }
}

/* ============================================
   LOADING ANIMATION
   ============================================ */

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-icon {
  width: 60px;
  height: 60px;
  border: 3px solid var(--card-border);
  border-top-color: var(--neo-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* ============================================
   SECTION DIVIDERS
   ============================================ */

.section-divider {
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--card-border) 20%,
      var(--neo-green) 50%,
      var(--card-border) 80%,
      transparent 100%);
  opacity: 0.5;
}

/* ============================================
   FLOATING ACTION BUTTON
   ============================================ */

.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0ACF83 0%, #00D4AA 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow:
    0 8px 24px rgba(10, 207, 131, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  z-index: 999;
  border: none;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow:
    0 12px 32px rgba(10, 207, 131, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   PAGE HEADER - Premium Style
   ============================================ */

.page-header {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(10, 207, 131, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(10, 132, 255, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--ultra-light-bg) 100%) !important;
  position: relative;
  padding: 140px 0 60px !important;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(90deg,
      transparent,
      transparent 100px,
      rgba(232, 236, 240, 0.2) 100px,
      rgba(232, 236, 240, 0.2) 101px),
    repeating-linear-gradient(0deg,
      transparent,
      transparent 100px,
      rgba(232, 236, 240, 0.2) 100px,
      rgba(232, 236, 240, 0.2) 101px);
  pointer-events: none;
  opacity: 0.6;
}

.page-header h1 {
  background: linear-gradient(135deg, #1A1A1A 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-header p {
  position: relative;
  z-index: 1;
  max-width: 700px;
  font-size: 18px;
  color: var(--text-secondary);
}

.breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--neo-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--electric-blue);
}

.breadcrumb span {
  color: var(--text-muted);
}

.breadcrumb .current {
  color: var(--text-secondary);
}

/* ============================================
   FILTER BAR - Premium Glass
   ============================================ */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(20px) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.search-container {
  flex: 1;
  min-width: 250px;
  position: relative;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 14px 14px 14px 48px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  background: rgba(245, 247, 249, 0.8);
  border: 2px solid transparent;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  background: #fff;
  border-color: var(--neo-green);
  box-shadow: 0 0 0 4px rgba(10, 207, 131, 0.15);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-select {
  padding: 14px 40px 14px 16px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  background: rgba(245, 247, 249, 0.8);
  border: 2px solid transparent;
  border-radius: 12px;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: all 0.3s ease;
}

.filter-select:focus,
.filter-select:hover {
  background-color: #fff;
  border-color: var(--neo-green);
  box-shadow: 0 0 0 4px rgba(10, 207, 131, 0.15);
}

/* ============================================
   INFO BOXES - Premium Style
   ============================================ */

.info-box {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(15px) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  padding: 24px !important;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.info-box.warning {
  border-left: 4px solid var(--cta-orange) !important;
  background: linear-gradient(135deg, rgba(255, 149, 0, 0.08), rgba(255, 255, 255, 0.9)) !important;
}

.info-box.success {
  border-left: 4px solid var(--neo-green) !important;
  background: linear-gradient(135deg, rgba(10, 207, 131, 0.08), rgba(255, 255, 255, 0.9)) !important;
}

.info-box.info {
  border-left: 4px solid var(--electric-blue) !important;
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.08), rgba(255, 255, 255, 0.9)) !important;
}

.info-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.info-box-header svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.info-box-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.info-box p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   FEATURE CARDS / CRITERIA CARDS
   ============================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.feature-item,
.criteria-card {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(15px) !important;
  border-radius: 20px !important;
  padding: 32px !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  transition: all 0.4s ease !important;
}

.feature-item:hover,
.criteria-card:hover {
  transform: translateY(-6px) !important;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.08),
    0 8px 20px rgba(10, 207, 131, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

/* ============================================
   COMPARISON TABLE - Premium Style
   ============================================ */

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.comparison-table thead {
  background: linear-gradient(135deg, #1A1A1A, #2d2d2d);
}

.comparison-table th {
  padding: 20px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  white-space: nowrap;
}

.comparison-table th:first-child {
  border-radius: 20px 0 0 0;
}

.comparison-table th:last-child {
  border-radius: 0 20px 0 0;
}

.comparison-table td {
  padding: 18px 16px;
  font-size: 15px;
  border-bottom: 1px solid rgba(232, 236, 240, 0.6);
  transition: background 0.2s ease;
}

.comparison-table tbody tr:hover td {
  background: rgba(10, 207, 131, 0.05);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 20px;
}

.comparison-table tbody tr:last-child td:last-child {
  border-radius: 0 0 20px 0;
}

/* ============================================
   STICKY HEADER FOR COMPARISON
   ============================================ */

.comparison-table-wrapper {
  position: relative;
  overflow: auto;
  max-height: 70vh;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.comparison-table-wrapper .comparison-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
}

/* ============================================
   CONTENT SECTION STYLING
   ============================================ */

.content-section {
  max-width: 900px;
  margin: 0 auto;
}

.content-section article {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.content-section article h2 {
  font-size: 28px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(10, 207, 131, 0.2);
  position: relative;
}

.content-section article h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--neo-green), var(--electric-blue));
}

/* ============================================
   LEGAL COMPARISON TABLE
   ============================================ */

.legal-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.legal-table thead tr:first-child th:first-child {
  border-radius: 16px 0 0 0;
}

.legal-table thead tr:first-child th:last-child {
  border-radius: 0 16px 0 0;
}

.legal-table th.at-col {
  background: linear-gradient(135deg, #ed1c24, #ff4444);
  color: #fff;
}

.legal-table th.de-col {
  background: linear-gradient(135deg, #000, #333);
  color: #ffcc00;
}

.legal-table tbody tr:nth-child(odd) {
  background: rgba(245, 247, 249, 0.5);
}

.legal-table tbody tr:nth-child(even) {
  background: #fff;
}

/* ============================================
   ACCORDION STYLING
   ============================================ */

.accordion-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(10, 207, 131, 0.05);
}

.accordion-header svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header svg {
  transform: rotate(180deg);
  color: var(--neo-green);
}

.accordion-content {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}