/* ============================================================
   Pricing Page Styles
   ============================================================ */

/* ----- Pricing Card (Page) ----- */
.pricing-card {
    padding: 2rem;
}
.pricing-card-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.pricing-card-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cn-ink);
    margin-bottom: 1rem;
}
.pricing-card-unit {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--cn-gray);
}
.pricing-card-btn {
    padding: 0.75rem;
}
.pricing-card-icon {
    margin: 0 auto 1rem;
    background: var(--cn-red-light);
    color: var(--cn-red);
}
.pricing-card-icon-gold {
    margin: 0 auto 1rem;
    background: var(--cn-gold-light);
    color: var(--cn-gold-dark);
}
.pricing-card-icon-blue {
    margin: 0 auto 1rem;
    background: #E0F2FE;
    color: var(--cn-tech-blue);
}

/* ----- Pricing Card Names ----- */
.pricing-card-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cn-ink);
    margin-bottom: 0.5rem;
}
.pricing-card-sub {
    color: var(--cn-gray);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* ----- Pricing Badge ----- */
.pricing-badge-hot {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--cn-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

/* ----- Pricing Amount ----- */
.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cn-ink);
    margin-bottom: 0.5rem;
}
.pricing-price-sm {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cn-ink);
    margin-bottom: 0.25rem;
}
.price-amount-lg {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cn-ink);
    margin-bottom: 0.5rem;
}

/* ----- Pricing Feature List ----- */
.pricing-feature {
    font-size: 0.9rem;
    padding: 0.35rem 0;
}
.pricing-feature .bi-check {
    color: var(--cn-red);
    margin-right: 0.5rem;
}

/* ----- Other Services Table ----- */
.pricing-other {
    background: var(--cn-bg-alt);
    border-radius: 12px;
    padding: 2rem;
}
.pricing-other-title {
    font-weight: 700;
    margin-bottom: 1rem;
}
.pricing-other-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cn-border);
}
.pricing-other-price {
    font-weight: 700;
}
.pricing-note {
    color: var(--cn-gray);
    font-size: 0.85rem;
}
.pricing-note i {
    margin-right: 0.25rem;
}

/* ----- Numeric alignment (prices, stats) ----- */
.price-num {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
}

/* ----- Bundle savings note ----- */
.pricing-save-note {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cn-gold-dark);
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
}