* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #ffffff;
  color: #1A4371;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1FB3C3, #1A4371);
  color: white;
  padding: 40px 20px 120px;
}

.top {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 42px;
}

.hero-content {
  max-width: 820px;
  margin: 90px auto 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero h1 span {
  color: #F78F29;
}

.hero p {
  font-size: 1.2rem;
  margin: 30px 0 40px;
}

/* BUTTONS */
.btn {
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.primary {
  background: #F78F29;
  color: white;
}

.secondary {
  border: 2px solid #F78F29;
  color: #F78F29;
}

.outline {
  border: 2px solid white;
  color: white;
}

.large {
  font-size: 1.1rem;
}

/* SECTIONS */
.steps, .features, .plans {
  padding: 90px 20px;
  max-width: 1100px;
  margin: auto;
}

.steps h2,
.features h2,
.plans h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 60px;
}

.step-grid,
.features-grid,
.plans-grid {
  display: grid;
  gap: 20px;
}

.step-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.plans-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.step,
.feature {
  background: #f8fafc;
  padding: 26px;
  border-radius: 18px;
  font-weight: 500;
}

/* PLANS */
.plan {
  border: 1px solid #e2e8f0;
  padding: 34px;
  border-radius: 22px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.plan li {
  margin-bottom: 12px;
}

.destaque {
  border: 3px solid #F78F29;
  position: relative;
}

.badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: #F78F29;
  color: white;
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 0.8rem;
}

/* CTA */
.final-cta {
  background: #0f172a;
  color: white;
  padding: 110px 20px;
  text-align: center;
}

.waitlist-form {
  max-width: 420px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.waitlist-form input {
  padding: 14px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
}

.form-note {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 14px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  color: #64748b;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* DARK MODE */
@media (prefers-color-scheme: dark) {
  body {
    background: #020617;
    color: #e5e7eb;
  }

  .step, .feature, .plan {
    background: #020617;
    border: 1px solid #1e293b;
  }
}
