/* === ENHANCED STYLES === */

/* Animated counter */
.hero-stats .stat b {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* Parallax orbs follow cursor */
.orb {
  transition: transform 0.3s ease-out;
  will-change: transform;
}

/* Product card hover glow */
.product-card {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,229,255,0.4), rgba(255,61,138,0.4), rgba(0,229,255,0.4));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
  filter: blur(8px);
}
.product-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,229,255,0.15), 0 0 40px rgba(0,229,255,0.08);
  border-color: rgba(0,229,255,0.3);
}
.product-card:hover::before {
  opacity: 1;
}
.product-card:hover .product-emoji {
  transform: scale(1.2) rotate(-5deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Button gradient border on hover */
.btn-primary {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #00e5ff, #ff3d8a, #00e5ff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover::before {
  opacity: 1;
}

/* Pulse CTA */
.cta-section .btn-primary {
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,229,255,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(0,229,255,0); }
}

/* Countdown timer */
.countdown-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}
.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 60px;
}
.countdown-block .num {
  font-size: 28px;
  font-weight: 800;
  color: #00e5ff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.countdown-block .label {
  font-size: 10px;
  color: #a0a0b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.countdown-sep {
  font-size: 24px;
  color: #00e5ff;
  font-weight: 700;
  opacity: 0.5;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* Why Us section */
.why-section {
  padding: 80px 0;
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: rgba(18, 18, 26, 0.7);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}
.why-card:hover {
  border-color: rgba(0,229,255,0.2);
  background: rgba(18, 18, 26, 0.9);
  transform: translateY(-4px);
}
.why-card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.why-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: #f0f0f5;
}
.why-card p {
  margin: 0;
  color: #a0a0b8;
  font-size: 14px;
  line-height: 1.6;
}
.why-compare {
  margin-top: 48px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}
.why-compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.why-compare th, .why-compare td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.why-compare th {
  background: rgba(0,229,255,0.06);
  color: #00e5ff;
  font-weight: 600;
}
.why-compare td:first-child {
  text-align: left;
  color: #a0a0b8;
}
.why-compare .us {
  color: #00e5ff;
  font-weight: 700;
}
.why-compare .them {
  color: #ff3d8a;
}

/* Reviews auto-scroll */
.reviews-track {
  display: flex;
  gap: 20px;
  animation: scrollReviews 30s linear infinite;
  width: max-content;
}
.reviews-track:hover {
  animation-play-state: paused;
}
@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Smooth section transitions */
section {
  will-change: opacity;
}

/* Hero title glow */
.hero-title {
  text-shadow: 0 0 80px rgba(0,229,255,0.15);
}

/* Floating badge animation */
.hero-badge {
  animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Product badge shimmer */
.product-badge {
  position: relative;
  overflow: hidden;
}
.product-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Mobile responsive for new elements */
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .countdown-block { min-width: 50px; padding: 8px 10px; }
  .countdown-block .num { font-size: 22px; }
  .why-compare { font-size: 12px; }
  .why-compare th, .why-compare td { padding: 10px 8px; }
}
