/* ============================================================
   PricingCSS.css
   Styles for the pricing section: layout, card, badge,
   price figures, and supporting text.
   ============================================================ */

/* ── SECTION WRAPPER — top 64px (8×8), bottom 96px (8×12) ── */
.pricing-section {
  padding: 64px 48px 96px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ── PRICING CARD ── */
.pricing-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 48px;       /* 8×5 / 8×6 */
  display: flex;
  align-items: center;
  gap: 48px;                /* 8×6 */
  text-align: left;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05),
              0 8px 32px rgba(0, 74, 173, 0.08);
  margin-top: 32px;         /* 8×4 */
}

/* ── EARLY ACCESS BADGE — height 24px (8×3), H pad 8px (8×1) ── */
.pricing-badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  background: var(--blue-bg);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  margin-bottom: 16px;      /* 8×2 */
}

/* ── HEADING ── */
.pricing-left h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;      /* 8×3 */
  max-width: 300px;
}

/* ── PRICE ROW — gap 32px (8×4) ── */
.price-row {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;      /* 8×3 */
}

.price-item .amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.price-item .label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── SUPPORTING NOTE ── */
.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;      /* 8×3 */
  max-width: 320px;
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .pricing-section { padding: 48px 16px 64px; }
  .pricing-card    { flex-direction: column; padding: 32px 24px; gap: 24px; }
}