.hero-copy,
.page-hero-copy,
.welcome-copy,
.product-hero__copy {
  animation: fadeUp 0.9s ease both;
}

.hero-panel,
.page-hero-visual,
.welcome-card,
.product-hero__gallery {
  animation: floatIn 0.95s ease both;
}

.product-card,
.feature-card,
.value-card,
.contact-card,
.about-card,
.mini-card,
.content-card {
  animation: fadeUp 0.8s ease both;
}

.product-card:nth-child(2),
.feature-card:nth-child(2),
.value-card:nth-child(2),
.contact-card:nth-child(2),
.about-card:nth-child(2),
.mini-card:nth-child(2),
.content-card:nth-child(2) {
  animation-delay: 0.08s;
}

.product-card:nth-child(3),
.feature-card:nth-child(3),
.value-card:nth-child(3),
.contact-card:nth-child(3),
.about-card:nth-child(3),
.mini-card:nth-child(3),
.content-card:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}