/* ================================================
   BAMPAA  -  Pricing Page
   assets/pricing.css
   ================================================ */

.pricing-shell {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 28px;
}

.pricing-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #E8EAF0;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.pricing-subtitle {
  font-size: 0.92rem;
  color: rgba(200,205,220,0.6);
  line-height: 1.6;
}

/* ── Banner ──────────────────────────────────── */
.pricing-banner {
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-banner--success {
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #22c55e;
}

.pricing-banner--neutral {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(200,205,220,0.6);
}

/* ── Eyebrow ── */
.pricing-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6AA59C;
  margin-bottom: 10px;
}

/* ── Testimonial (compact inline row) ── */
.pricing-quote {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
  margin: 24px auto 0;
  padding: 16px 20px;
  border-left: 3px solid rgba(106,165,156,0.45);
  background: rgba(106,165,156,0.05);
  border-radius: 0 10px 10px 0;
}
.pricing-quote-text {
  font-size: 0.85rem;
  color: rgba(200,205,220,0.75);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}
.pricing-quote-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(200,205,220,0.4);
}

/* ── Cards grid ──────────────────────────────── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  gap: 20px;
  align-items: start;
  justify-content: center;
}

@media (max-width: 860px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(4px);
}

.price-card--featured {
  border-color: rgba(106,165,156,0.4);
  box-shadow: 0 0 0 1px rgba(106,165,156,0.2), 0 0 28px rgba(106,165,156,0.10);
  background: rgba(106,165,156,0.04);
  position: relative;
}

/* ── Card internals ──────────────────────────── */
.price-tier {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6AA59C;
}

.price-badge {
  display: inline-block;
  background: rgba(106,165,156,0.12);
  border: 1px solid rgba(106,165,156,0.3);
  color: #6AA59C;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #E8EAF0;
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 0.82rem;
  color: rgba(200,205,220,0.5);
}

/* ── Features list ───────────────────────────── */
.price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(200,205,220,0.85);
}

.price-check {
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
}

.price-cross {
  color: rgba(200,205,220,0.3);
  flex-shrink: 0;
}

/* ── Monthly / Annual toggle ─────────────────── */
.price-toggle-row {
  display: flex;
  gap: 6px;
}

.price-toggle-btn {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(200,205,220,0.5);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: border-color 120ms, color 120ms, background 120ms;
}

.price-toggle-btn.active,
.price-toggle-btn:hover {
  border-color: #6AA59C;
  color: #6AA59C;
  background: rgba(106,165,156,0.07);
}

/* ── CTAs ────────────────────────────────────── */
.price-cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
  white-space: nowrap;
}

a.price-cta,
button.price-cta {
  display: block;
  width: 100%;
  box-sizing: border-box;
  line-height: 2.2;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.95rem;
}

/* ── Outcome line ── */
.pricing-outcome {
  font-size: 0.78rem;
  color: #6AA59C;
  font-weight: 600;
  padding: 7px 11px;
  background: rgba(106,165,156,0.08);
  border-radius: 6px;
  border: 1px solid rgba(106,165,156,0.15);
}
.pricing-outcome-free {
  color: rgba(200,205,220,0.55);
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.07);
  font-weight: 500;
}

/* ── Free CTA ghost button override ── */
.price-card .btn-ghost {
  border-color: rgba(200,205,220,0.2);
  color: rgba(200,205,220,0.75);
  background: rgba(255,255,255,0.04);
}
.price-card .btn-ghost:hover {
  border-color: rgba(106,165,156,0.45);
  color: #6AA59C;
  background: rgba(106,165,156,0.07);
}

/* ── After-CTA line ── */
.pricing-after-cta {
  font-size: 0.72rem;
  color: rgba(200,205,220,0.35);
  text-align: center;
  margin-top: 6px;
}
