/* Modish subtle luxury motion — shared across pages */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

.hero-stats .hero-stat {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-stats.is-visible .hero-stat { opacity: 1; transform: translateY(0); }
.hero-stats.is-visible .hero-stat:nth-child(1) { transition-delay: 0.05s; }
.hero-stats.is-visible .hero-stat:nth-child(2) { transition-delay: 0.12s; }
.hero-stats.is-visible .hero-stat:nth-child(3) { transition-delay: 0.19s; }
.hero-stats.is-visible .hero-stat:nth-child(4) { transition-delay: 0.26s; }

.review-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

.btn-primary,
.btn-white {
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover {
  box-shadow: 0 8px 20px rgba(255, 0, 168, 0.28);
}

.service-card,
.service-item,
.action-card,
.faq-item,
.value-card,
.benefit-card,
.stat-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.25s ease;
}
.service-item:hover,
.action-card:hover,
.value-card:hover,
.benefit-card:hover {
  transform: translateY(-3px);
}

.tier {
  transition: background 0.25s ease, padding-left 0.25s ease;
}
.tier:hover { padding-left: 28px; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-stats .hero-stat {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-bg,
  .hero-content,
  .carousel-track,
  .page-hero-bg {
    animation: none !important;
  }
  .hero-bg { transform: none; }
  .hero-content { opacity: 1; transform: none; }
  .review-card:hover,
  .service-card,
  .service-item:hover,
  .action-card:hover,
  .value-card:hover,
  .btn-primary:hover,
  .btn-white:hover,
  .tier:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}
