/* =========================
   PRICING – BASE
   ========================= */

.pricing-hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.pricing-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.pricing-hero p {
  font-size: 18px;
  color: #64748b;
}

/* =========================
   PRICING GRID
   ========================= */

.pricing-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* =========================
   CARD
   ========================= */

.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  position: relative;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price {
  font-size: 42px;
  font-weight: 700;
}

.price-note {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

/* FEATURES */

.features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.features li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* FREE */

.pricing-card.free {
  opacity: .9;
}

.current-plan {
  font-size: 14px;
  color: #10b981;
  font-weight: 600;
}

/* FEATURED */

.pricing-card.featured {
  border: 2px solid #2563eb;
  transform: scale(1.03);
}

.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
}

/* BUTTONS */

.btn-primary {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary:hover {
  background: #1e40af;
}

.btn-secondary {
  display: inline-block;
  background: #0f172a;
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

/* =========================
   BENEFITS
   ========================= */

.pricing-benefits {
  max-width: 900px;
  margin: 80px auto;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

/* =========================
   FAQ
   ========================= */

.pricing-faq {
  max-width: 700px;
  margin: 80px auto;
}

.pricing-faq details {
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 10px;
  background: #f8fafc;
}

/* =========================
   CTA
   ========================= */

.pricing-cta {
  text-align: center;
  padding: 80px 20px;
}
