/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL */
body {
  font-family: system-ui, sans-serif;
  background: #05070d;
  color: #e5e7eb;
  line-height: 1.7;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

.fade {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

/* HERO */
.hero {
  text-align: center;
  padding: 7rem 1.5rem 6rem;
  background: radial-gradient(
    ellipse at top,
    #1a2333 0%,
    #111827 35%,
    #0b0f19 70%,
    #05070d 100%
  );
  position: relative;
  overflow: hidden;
  animation: fadeIn 1.2s ease forwards;
}
/* Animated glow */
.hero::after {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: rgba(34, 197, 94, 0.18);
  filter: blur(160px);
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  animation: fadeUp 0.8s ease forwards;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #b8c2d6;
  animation: fadeUp 1s ease forwards;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #05070d;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: 0.25s ease;
  animation: fadeUp 1.2s ease forwards;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.25);
}

.btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.35);
}

/* MAIN CONTENT */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.section {
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.section:nth-child(1) { animation-delay: 0.2s; }
.section:nth-child(2) { animation-delay: 0.4s; }
.section:nth-child(3) { animation-delay: 0.6s; }
.section:nth-child(4) { animation-delay: 0.8s; }
.section:nth-child(5) { animation-delay: 1s; }

h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

/* STEPS */
.steps {
  display: grid;
  gap: 1.2rem;
}

.step {
  background: #111827;
  padding: 1.2rem;
  border-radius: 10px;
  border: 1px solid #1f2937;
  transition: 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  background: #1a2333;
  border-color: #22c55e;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.15);
}

/* PRICING */
.pricing-box {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
}

.pricing-box div {
  background: #111827;
  padding: 1.2rem 1.6rem;
  border-radius: 10px;
  font-size: 1.25rem;
  border: 1px solid #1f2937;
  transition: 0.3s ease;
  font-weight: 600;
}

.pricing-box div:hover {
  transform: translateY(-6px);
  background: #1a2333;
  border-color: #22c55e;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.15);
}

/* FAQ */
.faq p {
  margin-bottom: 1.2rem;
  background: #111827;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #1f2937;
  transition: 0.3s ease;
}

.faq p:hover {
  transform: translateY(-4px);
  background: #1a2333;
  border-color: #22c55e;
}

/* LINKS */
.links a {
  color: #22c55e;
  text-decoration: none;
  transition: 0.2s;
  font-weight: 600;
}

.links a:hover {
  color: #16a34a;
  text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #1f2937;
  color: #6b7280;
  animation: fadeIn 1.5s ease forwards;
  font-size: 0.95rem;
}
