@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;600;700&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Prompt', sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f4fbf7, #eefaf3);
  color: #111;
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px 60px;
}

.badge {
  display: inline-block;
  background: #e7f0ff;
  color: #3b6cff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin: 20px 0;
}

.hero h1 span {
  background: linear-gradient(90deg, #3b82f6, #d946ef);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  color: #555;
  max-width: 600px;
  margin: 0 auto 30px;
}

.primary-btn {
  display: inline-block;
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  color: white;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

/* FEATURES */
.features {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  width: 260px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 22px;
}

.icon.blue { background: #e0edff; }
.icon.green { background: #dcfce7; }
.icon.pink { background: #fce7f3; }

.card h3 {
  margin-bottom: 8px;
}

/* CTA */
.cta {
  margin: 60px auto;
  max-width: 900px;
  border-radius: 24px;
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(90deg, #3b82f6, #ec4899);
  color: white;
}

.white-btn {
  display: inline-block;
  background: white;
  color: #333;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
}
