:root {
  --text-primary: #111827;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  color: var(--text-primary);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.bg-gradient-a {
  background: linear-gradient(135deg, #ffe5d9, #ffb997);
}

.bg-gradient-b {
  background: linear-gradient(135deg, #e0f7fa, #f8bbd0);
}

.hero-glow {
  background:
    radial-gradient(circle at 15% 20%, rgba(129, 140, 248, 0.35), transparent 40%),
    radial-gradient(circle at 85% 0%, rgba(59, 130, 246, 0.28), transparent 35%);
}

.panel-card {
  background: linear-gradient(165deg, rgba(37, 99, 235, 0.18), rgba(99, 102, 241, 0.16));
  border: 1px solid rgba(191, 219, 254, 0.38);
  border-radius: 1rem;
  padding: 1.25rem;
  backdrop-filter: blur(8px);
}

.panel-card-featured {
  background: linear-gradient(160deg, rgba(51, 65, 85, 0.8), rgba(30, 41, 59, 0.92));
}

.step-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(129, 140, 248, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  flex-shrink: 0;
}

.faq-item {
  border: 1px solid rgba(191, 219, 254, 0.3);
  border-radius: 0.75rem;
  background: rgba(30, 58, 138, 0.24);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
  cursor: pointer;
}

.faq-answer {
  margin: 0;
  color: #f8fafc;
  padding: 0 1rem 1rem;
  line-height: 1.6;
}

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

.animate-fadeIn {
  animation: fadeIn 0.5s ease-out;
}
