/* ============================================================
   Pricing page — bespoke styles only.
   Everything else comes from css/bcm.css.
   ============================================================ */

/* ---------- hero VAT note ---------- */
.page-hero__note {
    margin-top: 14px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-on-dark-faint);
}

/* ---------- plans ---------- */
.plans-grid,
.addons-grid,
.sms-card {
    max-width: 920px;
    margin-inline: auto;
}

/* push CTA + footnote to the card base so both plans align */
.plan__features { flex: 1 1 auto; }

/* per-unit fee note (not part of the shared .plan component) */
.plan__unitfee {
    margin-top: 16px;
    padding: 12px 16px;
    border-left: 3px solid var(--azure-500);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    background: var(--azure-050);
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-muted);
}
.plan__unitfee strong {
    color: var(--azure-700);
    font-weight: 600;
}
.plan--featured .plan__unitfee {
    background: rgba(77, 195, 247, 0.08);
    color: var(--text-on-dark-muted);
}
.plan--featured .plan__unitfee strong { color: var(--azure-300); }

/* ---------- add-on service cards ---------- */
.addon__rate {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 6px 0 12px;
}
.addon__rate .num {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-strong);
    line-height: 1;
}
.addon__rate span:last-child {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ---------- SMS credits card ---------- */
.sms-card { margin-top: 24px; }
.sms-card__head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 26px;
}
.sms-card__head .icon-chip { margin-bottom: 0; }
.sms-card__sub {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.sms-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 16px;
}
.sms-tier {
    position: relative;
    padding: 26px 20px 22px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--paper);
    text-align: center;
}
.sms-tier__qty {
    font-family: var(--font-display);
    font-variant-numeric: tabular-nums;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--text-strong);
}
.sms-tier__label {
    display: block;
    margin: 4px 0 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
}
.sms-tier__rate {
    font-family: var(--font-display);
    font-variant-numeric: tabular-nums;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--azure-600);
}
.sms-tier__per {
    display: block;
    margin-top: 4px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.sms-tier--best {
    background: linear-gradient(180deg, var(--ink-900), var(--navy-850));
    border-color: var(--navy-600);
}
.sms-tier--best .sms-tier__qty { color: #fff; }
.sms-tier--best .sms-tier__label { color: var(--text-on-dark-faint); }
.sms-tier--best .sms-tier__rate { color: var(--azure-400); }
.sms-tier--best .sms-tier__per { color: var(--text-on-dark-muted); }
.sms-tier__pill {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    border-radius: var(--r-full);
    background: linear-gradient(180deg, #2FAAEA, #1487CE);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: var(--sh-azure);
}

/* ---------- enterprise band ---------- */
.cta-band .eyebrow {
    color: var(--azure-400);
    justify-content: center;
}
.cta-band .eyebrow__num { color: var(--text-on-dark-faint); }
.ent-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 720px;
    margin: 0 auto 32px;
}
.ent-chips .pill--dark {
    padding: 7px 14px;
    border: 1px solid var(--border-dark-soft);
}
.ent-chips .pill--dark svg { color: var(--azure-400); }

/* ---------- stats band ---------- */
.stats-band { border-top: 1px solid var(--border-dark-soft); }
