
body {
  background: #111;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}
header {
  text-align: center;
  padding: 2rem 1rem 0.5rem;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.highlight {
  color: #4299e1;
}
.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.benefits span {
  background: #1a1a1a;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
}
.tiers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
}
.tier {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  flex: 1 1 280px;
  max-width: 300px;
  text-align: center;
  position: relative;
}
.tier.featured {
  border: 2px solid #3b82f6;
}
.badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: white;
  padding: 0.2rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
}
.tier h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.price {
  font-size: 2rem;
  font-weight: bold;
  color: #3b82f6;
}
.period {
  margin-bottom: 1rem;
}
.tier ul {
  text-align: left;
  margin-bottom: 1rem;
  list-style: none;
  padding: 0;
}
.tier ul li {
  margin: 0.3rem 0;
}
button {
  padding: 0.6rem 1.2rem;
  border: none;
  background: #3b82f6;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}
button:hover {
  background: #2563eb;
}
.faq {
  background: #181818;
  padding: 2rem;
  margin: 2rem auto;
  border-radius: 12px;
  max-width: 1000px;
}
.faq-item h4 {
  margin-bottom: 0.3rem;
}
.thankyou {
  background: linear-gradient(to right, #0f172a, #1e293b);
  padding: 2rem;
  text-align: center;
  margin: 2rem auto;
  border-radius: 10px;
  max-width: 1000px;
  border: 1px solid #1789fc;
}
