/* =======================
   PRICING PAGE
======================= */

.pricing-header {
  margin-bottom: 40px;
}

.pricing-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.pricing-sub {
  font-size: 15px;
  color: #b5b5b5;
  line-height: 1.6;
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}

.pricing-feature-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 20px;
}

.pricing-feature-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.pricing-feature-card p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}

.plan-card {
  background: #0b0b0b;
  border: 1px solid #222;
  border-radius: 18px;
  padding: 26px 20px;
  text-align: center;
}

.plan-card.highlight {
  border: 2px solid #3b82f6;
  box-shadow: 0 0 0 1px rgba(59,130,246,0.25);
}

.plan-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #3b82f6;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.plan-card ul li {
  font-size: 13px;
  color: #cfcfcf;
  margin-bottom: 6px;
}

.plan-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid #334155;
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

.plan-btn.primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: none;
  color: #fff;
}

.pricing-examples h3 {
  font-size: 18px;
  margin-bottom: 14px;
}

.example-box {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 14px;
  font-size: 14px;
  margin-bottom: 10px;
}

.pricing-final-cta {
  margin-top: 60px;
  text-align: center;
}

.final-cta-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 900px) {
  .pricing-features,
  .pricing-plans {
    grid-template-columns: 1fr;
  }
}


/* =======================
   PRICING CORE
======================= */

.pricing-core {
  text-align: center;
  margin: 50px 0;
}

.price-main {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.price-amount {
  font-size: 42px;
  font-weight: 900;
  color: #3b82f6;
}

.price-unit {
  font-size: 18px;
  color: #cfcfcf;
}

.price-desc {
  font-size: 14px;
  color: #b5b5b5;
  margin-bottom: 16px;
  line-height: 1.5;
}

.price-notice {
  font-size: 13px;
  color: #d1d5db;
  background: #111;
  border: 1px dashed #333;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 22px;
}

.charge-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(34,197,94,0.35);
}

.charge-btn:hover {
  transform: translateY(-2px);
}

.price-point-note {
  margin: 8px 0 14px;
  font-size: 13px;
  color: #cbd5f5;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
}
