/* ─── Magic UI — Blur Fade In ────────────────────────────────────────────── */
@keyframes blur-fade-in {
  0%   { opacity: 0; filter: blur(12px); transform: translateY(10px); }
  100% { opacity: 1; filter: blur(0px);  transform: translateY(0px);  }
}
.blur-fade { animation: blur-fade-in 0.7s ease forwards; }
.blur-fade-d1 { animation-delay: 0.10s; opacity: 0; }
.blur-fade-d2 { animation-delay: 0.22s; opacity: 0; }
.blur-fade-d3 { animation-delay: 0.36s; opacity: 0; }
.blur-fade-d4 { animation-delay: 0.50s; opacity: 0; }

/* ─── Magic UI — Marquee ─────────────────────────────────────────────────── */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Magic UI — Shimmer Button ──────────────────────────────────────────── */
.btn-shimmer {
  position: relative;
  overflow: hidden;
  background: #16a34a;
  color: #fff;
  transition: box-shadow 0.2s;
}
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: shimmer-pass 2.4s ease-in-out infinite;
}
@keyframes shimmer-pass {
  0%   { left: -75%; }
  100% { left: 125%;  }
}

/* ─── Magic UI — Magic Card glow on hover ────────────────────────────────── */
.magic-card {
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.magic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(22,163,74,0.12);
}

/* ─── Number Ticker ──────────────────────────────────────────────────────── */
@keyframes count-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.ticker-digit { display: inline-block; overflow: hidden; }
.ticker-digit span {
  display: block;
  animation: count-up 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* ─── FAQ Accordion ──────────────────────────────────────────────────────── */
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-body.open { max-height: 400px; }
.faq-icon { transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ─── Gradient text ──────────────────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, #16a34a 0%, #4ade80 50%, #16a34a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s linear infinite;
}
@keyframes gradient-shift {
  0%   { background-position: 0% center;   }
  100% { background-position: 200% center; }
}

/* ─── Hero dot grid background ───────────────────────────────────────────── */
.hero-dots {
  background-image: radial-gradient(circle, #d1fae5 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ─── Badge pill ────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
