/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.products-grid .product-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.products-grid .product-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.products-grid .product-card.reveal:nth-child(4) { transition-delay: 0.1s; }
.products-grid .product-card.reveal:nth-child(5) { transition-delay: 0.2s; }
.products-grid .product-card.reveal:nth-child(6) { transition-delay: 0.3s; }

.why-grid .why-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.why-grid .why-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.why-grid .why-card.reveal:nth-child(4) { transition-delay: 0.3s; }

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

.hero-badge {
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-title {
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-subtitle {
  animation: fadeInUp 0.6s ease 0.6s both;
}

.hero-ctas {
  animation: fadeInUp 0.6s ease 0.8s both;
}

.hero-stats {
  animation: fadeInUp 0.6s ease 1s both;
}
