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

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes spinOnce {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.5s ease both;
}

.animate-slideInDown {
  animation: slideInDown 0.5s ease both;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.hero-title {
  animation: slideInDown 0.6s ease both;
}

.hero-desc {
  animation: fadeInUp 0.6s 0.15s ease both;
}

.hero-stats {
  animation: fadeInUp 0.6s 0.25s ease both;
}

.hero-actions {
  animation: fadeInUp 0.6s 0.35s ease both;
}

.site-header {
  animation: slideInDown 0.4s ease both;
}

.sticky-widget {
  animation: slideInDown 0.4s 0.5s ease both;
}

.hero-badge {
  animation: fadeInUp 0.5s ease both;
}

.faq-section {
  scroll-margin-top: 80px;
}

.faq-item {
  background: var(--c-surface, #1e2124);
  border: 1px solid var(--c-border, #2e3338);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open {
  border-color: rgba(187, 235, 0, 0.4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}

.faq-question-text {
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #e8eaed;
  line-height: 1.4;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbeb00;
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-answer {
  padding: 0 20px;
  color: #8b949e;
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-answer-inner {
  padding-bottom: 16px;
}

.faq-answer a {
  color: #bbeb00;
}
