:root {
  --bg: #fff;
  --highlight: #6b46ff;
  --highlight-light: #f0ebff;
  --border: #e5e7eb;
  --muted: #6b7280;
}

body {
  font-family: "Inter", Arial, sans-serif;
}

.pricing-section {
  padding: 60px 20px;
  background: var(--bg);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.pricing-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

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

/* card */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.card-highlight {
  border: 2px solid var(--highlight);
  background: #faf9ff;
  position: relative;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--highlight);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 20px;
}

.plan-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.plan-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
}

.plan-desc .note {
  color: var(--highlight);
  font-size: 12px;
  font-weight: 600;
}

.plan-price {
  font-size: 16px;
  margin: 16px 0;
  line-height: 1.4;
}

.plan-price strong {
  font-size: 18px;
}

.btn {
  display: inline-block;
  margin: 12px auto 20px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  min-width: 140px;
}

.btn-primary {
  background: var(--highlight);
  color: #fff;
  border: none;
}

.btn-outline {
  border: 1px solid var(--highlight);
  color: var(--highlight);
  background: transparent;
}

.features {
  text-align: left;
  font-size: 14px;
  color: #333;
  margin: 0;
  padding: 0;
  list-style: none;
}

.features li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-size: 12px;
}

.disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
