/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid children */
.services-grid .service-card:nth-child(2) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.10s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.20s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(7) { transition-delay: 0.30s; }
.services-grid .service-card:nth-child(8) { transition-delay: 0.35s; }

.testi-grid .testi-card:nth-child(2) { transition-delay: 0.06s; }
.testi-grid .testi-card:nth-child(3) { transition-delay: 0.12s; }
.testi-grid .testi-card:nth-child(4) { transition-delay: 0.18s; }
.testi-grid .testi-card:nth-child(5) { transition-delay: 0.24s; }
.testi-grid .testi-card:nth-child(6) { transition-delay: 0.30s; }

/* ── HERO ENTRANCE ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .label     { animation: fadeUp 0.7s 0.2s both; }
.hero-content h1         { animation: fadeUp 0.7s 0.35s both; }
.hero-content .gold-line { animation: fadeUp 0.7s 0.5s both; }
.hero-content .hero-tagline { animation: fadeUp 0.7s 0.6s both; }
.hero-content .hero-btns { animation: fadeUp 0.7s 0.75s both; }
.hero-stats .stat-card:nth-child(1) { animation: fadeUp 0.7s 0.9s both; }
.hero-stats .stat-card:nth-child(2) { animation: fadeUp 0.7s 1.0s both; }
.hero-stats .stat-card:nth-child(3) { animation: fadeUp 0.7s 1.1s both; }

/* ── NAV SCROLL SHRINK ── (handled in JS) */
