* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: #0f172a;
  color: #f8fafc;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  padding: 60px 0 40px;
  text-align: center;
}

.badge {
  display: inline-block;
  background: #1e293b;
  color: #38bdf8;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid #334155;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

.subtitle {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 30px 0 40px;
}

.stat-card {
  background: #1e293b;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #334155;
}

.stat-card h3 {
  font-size: 2.2rem;
  color: #38bdf8;
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.cta-box {
  background: #1e293b;
  border: 2px solid #38bdf8;
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.cta-box h2 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 8px;
  text-align: center;
}

.cta-box > p {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 14px;
}

input, select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #475569;
  background: #0f172a;
  color: #ffffff;
  font-size: 1rem;
}

input:focus, select:focus {
  outline: none;
  border-color: #38bdf8;
}

.btn-primary {
  width: 100%;
  background: #0284c7;
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 6px;
}

.btn-primary:hover {
  background: #0369a1;
}

.privacy-note {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 12px;
  text-align: center;
}

.features {
  padding: 60px 0;
  background: #0b1120;
}

.features h2, .pricing-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

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

.card {
  background: #1e293b;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #334155;
  position: relative;
}

.step-num {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: #334155;
  color: #38bdf8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.card p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.pricing-section {
  padding: 60px 0;
}

.price-table {
  display: flex;
  justify-content: center;
}

.price-card {
  background: #1e293b;
  border: 2px solid #38bdf8;
  border-radius: 16px;
  padding: 36px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.plan-tag {
  color: #38bdf8;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin: 16px 0 24px;
  color: #ffffff;
}

.price span {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 400;
}

.price-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.price-card li {
  padding: 8px 0;
  color: #cbd5e1;
  font-size: 0.95rem;
}

footer {
  padding: 30px 0;
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
  border-top: 1px solid #1e293b;
}

.stats-note {
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 12px;
}

.faq-section {
  padding: 60px 0;
  background: #0b1120;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.faq-item {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item h3 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.faq-item p {
  color: #94a3b8;
  font-size: 0.95rem;
}
