/* ============================================
   Nadavasan Lights — Benefits Page Styles
   Keep it minimal and complementary to base.css
   ============================================ */

.hero-benefits {
  color: var(--color-text-inverse);
  position: relative;
}

.hero-benefits .container {
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* Grid tuning */
.benefits-grid .card {
  height: 100%;
}

/* Progressive reveal for cards */
.js-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition-slow) var(--easing-out), transform var(--transition-slow) var(--easing-out);
}

.js-reveal.in-view {
  opacity: 1;
  transform: none;
}

/* CTA layout on smaller screens */
@media (max-width: 1024px) {
  .cta-wrap { flex-direction: column; align-items: flex-start; }
}
