/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */

.hero {
  padding: var(--space-xl) 0 var(--space-2xl);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  position: relative;
  min-height: 85vh;
}

.hero-content {
  flex: 1.2;
  position: relative;
  z-index: 2;
}

.hero-badge {
  background: rgba(42, 122, 224, 0.15);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(74, 158, 255, 0.25);
  animation: fadeInDown 0.8s ease both;
}

.hero-badge i {
  animation: leafWiggle 2s ease-in-out infinite;
}

@keyframes leafWiggle {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.hero-content h2 {
  font-size: var(--font-3xl);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(to right, #fff, #a8d8ff 40%, #64b4ff 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s 0.15s ease both;
  position: relative;
}

.hero-content p {
  font-size: var(--font-base);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s 0.3s ease both;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: var(--space-md);
  animation: fadeInUp 0.8s 0.45s ease both;
}

.stat-item {
  font-weight: 600;
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -12px;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(8px);
}

.stat-number-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  white-space: nowrap;
}

.stat-number {
  font-size: var(--font-2xl);
  font-weight: 900;
  color: var(--accent-light);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: var(--font-xs);
  color: var(--text-muted);
  margin-top: 4px;
}

/* CTA */
.hero-cta {
  margin-top: var(--space-lg);
  animation: fadeInUp 0.8s 0.6s ease both;
}

/* Hero graphic */
.hero-graphic {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInScale 1s 0.3s ease both;
  will-change: transform;
}

.hero-graphic::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 122, 224, 0.18) 0%, transparent 70%);
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.vape-card-img,
.vape-card-img-second,
.vape-card-img-three {
  max-width: 100%;
  height: auto;
  max-height: 1000px; 
  object-fit: contain; 
  filter: drop-shadow(0 12px 30px rgba(30, 100, 200, 0.5));
  animation: floatHero 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
  will-change: transform;
  scale: 180%;
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0) rotate(12deg); }
  25% { transform: translateY(-16px) rotate(14deg); }
  75% { transform: translateY(-8px) rotate(10deg); }
}

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

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

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