/* ==========================================================================
   SCALE PRICING — light-premium pricing page + top-up cards
   Implements the approved Claude Design (project 4a7ed7b6…, screens 7a/7b/7c)
   exactly: layout, type scale, colors, spacing, radii, shadows, hovers.

   Scope:
     .sa-shell--pricing   — light shell override for the public /pricing/ page
     #sa-pr / .sa-pr-*    — the pricing page itself (7a mobile / 7b desktop)
     .sa-tpc / .sa-acc2-topups — top-up cards, shared with the customer
                            Billing page (7c) in the identical design language

   Loaded AFTER scale-auth.css and scale-theme.css so it wins the cascade.
   ========================================================================== */

/* ---- Light shell (pricing page only) ------------------------------------ */

.sa-shell--pricing {
    background: #fff;
    color: #0E1424;
    font-family: "Instrument Sans", "IBM Plex Sans Arabic", system-ui, -apple-system, sans-serif;
    line-height: 1.5;
}
.sa-shell--pricing::before { display: none; }   /* no film-grain on light */

/* Base typography reset inside the page (dark-theme styles must not leak). */
#sa-pr,
#sa-pr h1, #sa-pr h2, #sa-pr h3, #sa-pr h4, #sa-pr p {
    color: #0E1424;
    font-family: inherit;
    font-style: normal;
    text-transform: none;
}
#sa-pr {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
}
@media (max-width: 1100px) { #sa-pr { padding: 0 40px; } }
@media (max-width: 700px)  { #sa-pr { padding: 0 20px 110px; } } /* room for sticky bar */

/* Mode switching: everything dual-rendered, CSS shows the active mode.
   No JS text patching — the toggle just flips data-mode on the container. */
.sa-pr[data-mode="yr"] .sa-pr-mo-only { display: none !important; }
.sa-pr[data-mode="mo"] .sa-pr-yr-only { display: none !important; }

/* Copy that differs between the desktop (7b) and mobile (7a) frames. */
.sa-pr-mob { display: none; }
@media (max-width: 700px) {
    .sa-pr-mob { display: inline; }
    .sa-pr-dsk { display: none; }
}

/* Lucide icons render at their container size, stroke 1.75 (set inline). */
#sa-pr .sa-licon,
.sa-tpc .sa-licon {
    display: inline-flex;
    flex: none;
}
#sa-pr .sa-licon svg,
.sa-tpc .sa-licon svg { width: 100%; height: 100%; display: block; }

/* ---- Buttons (design recipe; overrides the dark .sa-btn theme) ---------- */

#sa-pr .sa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 48px;
    padding: 0 22px;
    border-radius: 13px;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
#sa-pr .sa-btn--full { width: 100%; }
#sa-pr .sa-btn--primary {
    background: #C42A63;
    color: #fff;
}
#sa-pr .sa-btn--primary:hover {
    background: #A82253;
    color: #fff;
    /* the dark theme's lift + pink glow must not leak onto the light design */
    transform: none;
    box-shadow: none;
}
#sa-pr .sa-btn--ghost {
    background: #fff;
    color: #0E1424;
    border: 1.5px solid #D8DDE5;
}
#sa-pr .sa-btn--ghost:hover { border-color: #0E1424; color: #0E1424; background: #fff; }
#sa-pr .sa-btn--dark {
    background: #0E1424;
    color: #fff;
}
#sa-pr .sa-btn--dark:hover { background: #1C2438; color: #fff; }
#sa-pr .sa-btn--disabled,
#sa-pr .sa-btn--disabled:hover {
    background: #F4F5F8;
    color: #8A93A5;
    border: none;
    cursor: default;
    opacity: 1;
}
#sa-pr .sa-btn .sa-licon { width: 15px; height: 15px; }
@media (max-width: 700px) {
    #sa-pr .sa-btn { height: 46px; border-radius: 12px; }
}

/* AJAX message area (dark-theme colors are unreadable on white) */
#sa-pr .sa-msg--center { text-align: center; margin: 18px auto 0; }
#sa-pr .sa-msg.is-error   { color: #C42A63; }
#sa-pr .sa-msg.is-success { color: #1E8F57; }

/* ==========================================================================
   HERO
   ========================================================================== */

.sa-pr-hero {
    position: relative;
    padding: 88px 0 0;
    text-align: center;
}
.sa-pr-hero::before {
    /* soft pink→violet radial glow behind the headline */
    content: "";
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    max-width: 100vw;
    height: 420px;
    background: radial-gradient(ellipse at center, rgba(255, 91, 141, .10), rgba(139, 92, 214, .07) 45%, transparent 72%);
    pointer-events: none;
}
.sa-pr-hero__in {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}
.sa-pr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #EFE3EA;
    color: #C42A63;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.sa-pr-hero__title {
    margin: 22px 0 0;
    font-size: 68px;
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: -.04em;
}
.sa-pr-hero__sub {
    margin: 22px auto 0;
    max-width: 560px;
    font-size: 18px;
    line-height: 1.6;
    color: #5A6478;
}
.sa-pr-toggle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
}
#sa-pr .sa-billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: #F4F5F8;
    border: none;
    border-radius: 999px;
}
#sa-pr .sa-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 22px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #5A6478;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
#sa-pr .sa-toggle-btn:hover { color: #0E1424; }
#sa-pr .sa-toggle-btn.active {
    background: #fff;
    color: #0E1424;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(14, 20, 36, .09);
}
.sa-pr-gift {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #7B54C9;
}
.sa-pr-gift .sa-licon { width: 14px; height: 14px; }
.sa-pr-hero__checks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 34px;
    font-size: 12px;
    color: #8A93A5;
}
.sa-pr-hero__checks span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sa-pr-hero__checks .sa-licon { width: 13px; height: 13px; color: #1E8F57; }

@media (max-width: 700px) {
    .sa-pr-hero { padding: 40px 4px 0; }
    .sa-pr-eyebrow {
        padding: 5px 12px;
        border: none;
        background: #FBF1F5;
        letter-spacing: .04em;
    }
    .sa-pr-hero__title {
        margin-top: 16px;
        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -.035em;
    }
    .sa-pr-hero__sub { margin-top: 14px; font-size: 15px; }
    .sa-pr-toggle-row { flex-direction: column; gap: 10px; margin-top: 24px; }
    #sa-pr .sa-toggle-btn { height: 34px; padding: 0 16px; font-size: 13px; }
    .sa-pr-gift { font-size: 12px; }
    #sa-pr .sa-pr-gift .sa-licon { display: none; }
    .sa-pr-hero__checks { gap: 18px; margin-top: 26px; font-size: 11px; }
    .sa-pr-hero__checks .sa-licon { width: 12px; height: 12px; }
    /* 7a shows only the first two reassurance chips */
    .sa-pr-hero__checks span:nth-child(n+3) { display: none; }
}

/* ==========================================================================
   PLAN CARDS
   ========================================================================== */

.sa-pr-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    margin-top: 56px;
}
@media (max-width: 1100px) { .sa-pr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .sa-pr-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; } }

.sa-pr-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 26px;
    border: 1.5px solid #E6E9EF;
    border-radius: 22px;
    background: #fff;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}
.sa-pr-card:hover {
    box-shadow: 0 16px 40px rgba(14, 20, 36, .09);
    transform: translateY(-3px);
}
.sa-pr-card--featured {
    border: 2px solid #FF5B8D;
    box-shadow: 0 20px 52px rgba(196, 42, 99, .14);
}
.sa-pr-card--featured:hover {
    box-shadow: 0 20px 52px rgba(196, 42, 99, .14);
    transform: none;
}
.sa-pr-card--current { border-color: #1E8F57; }

.sa-pr-badge {
    position: absolute;
    top: -12px;
    inset-inline-start: 26px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 24px;
    padding: 0 12px;
    border-radius: 999px;
    background: #C42A63;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    white-space: nowrap;
}
.sa-pr-badge--current { background: #1E8F57; }

.sa-pr-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sa-pr-card__icon {
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: 11px;
    background: #F4F5F8;
    color: #5A6478;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sa-pr-card__icon .sa-licon { width: 16px; height: 16px; }
.sa-pr-card--featured .sa-pr-card__icon { background: #FBF1F5; color: #C42A63; }
.sa-pr-card--ent .sa-pr-card__icon { background: #F1ECFB; color: #7B54C9; }
.sa-pr-card__name {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.015em;
}
.sa-pr-card__tagline {
    margin: 14px 0 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: #5A6478;
    min-height: 42px;
}
.sa-pr-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-top: 26px;
}
.sa-pr-price__amount {
    font-size: 46px;
    font-weight: 600;
    letter-spacing: -.04em;
    font-variant-numeric: tabular-nums;
}
.sa-pr-price__unit {
    font-size: 15px;
    font-weight: 600;
    color: #5A6478;
}
.sa-pr-price--talk .sa-pr-price__amount {
    font-size: 26px;
    letter-spacing: -.03em;
}
.sa-pr-price-meta {
    margin-top: 6px;
    font-size: 12.5px;
    color: #8A93A5;
    font-variant-numeric: tabular-nums;
}
.sa-pr-price-save {
    margin-top: 4px;
    font-size: 12.5px;
    font-weight: 600;
    color: #1E8F57;
    font-variant-numeric: tabular-nums;
}
.sa-pr-msgs {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    padding: 14px 16px;
    background: #FAFBFC;
    border-radius: 14px;
}
.sa-pr-msgs .sa-licon { width: 16px; height: 16px; color: #C42A63; }
.sa-pr-msgs strong {
    font-size: 15px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.sa-pr-msgs span { font-size: 13px; color: #5A6478; }
.sa-pr-card--featured .sa-pr-msgs { background: #FDF6F9; }

.sa-pr-card__spacer { flex: 1; }
.sa-pr-cta { margin-top: 24px; }
.sa-pr-card__inc {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #F1F3F6;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}
.sa-pr-card__inc .sa-licon { width: 15px; height: 15px; color: #1E8F57; }
.sa-pr-card__note {
    margin-top: 8px;
    font-size: 11.5px;
    color: #8A93A5;
}

/* Owner-set promotions inside a card (self-expiring) */
#sa-pr .sa-price-card__was {
    margin-inline-end: 2px;
    color: #8A93A5;
    font-size: 16px;
    font-weight: 600;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
#sa-pr .sa-price-card__save-badge {
    display: inline-block;
    align-self: flex-start;
    margin-top: 10px;
    padding: 4px 10px;
    border: none;
    border-radius: 999px;
    background: #FBF1F5;
    color: #C42A63;
    font-size: 12px;
    font-weight: 600;
}
#sa-pr .sa-price-card__countdown {
    display: inline-block;
    align-self: flex-start;
    margin-top: 6px;
    margin-bottom: 0;
    padding: 4px 10px;
    border-radius: 999px;
    background: #F4F5F8;
    border: none;
    color: #5A6478;
    font-size: 11.5px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    direction: ltr;
}
#sa-pr .sa-price-card__countdown:empty { display: none; }
#sa-pr .sa-price-card__swap-note {
    margin: 0 0 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #FDF3E7;
    border: 1px solid #F2E3CC;
    color: #A9690C;
    font-size: 12px;
    line-height: 1.5;
}
#sa-pr .sa-price-card__swap-note strong { color: #A9690C; }

/* Enterprise as a 5th stacked card — mobile only (7a) */
.sa-pr-card--ent {
    background: linear-gradient(160deg, #FBFAFE, #F7F8FB);
    display: none;
}
.sa-pr-card--ent .sa-pr-price { margin-top: 20px; }

/* Enterprise strip under the grid — desktop only (7b) */
.sa-pr-entstrip {
    margin-top: 20px;
    border: 1.5px solid #E6E9EF;
    border-radius: 22px;
    background: linear-gradient(120deg, #FBFAFE, #FAFBFC 60%);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.sa-pr-entstrip__icon {
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: 14px;
    background: #F1ECFB;
    color: #7B54C9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sa-pr-entstrip__icon .sa-licon { width: 20px; height: 20px; }
.sa-pr-entstrip__body { min-width: 0; }
.sa-pr-entstrip__title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.015em;
}
.sa-pr-entstrip__sub {
    margin-top: 4px;
    font-size: 13.5px;
    color: #5A6478;
}
.sa-pr-entstrip__spacer { flex: 1; }
.sa-pr-entstrip .sa-btn { height: 44px; padding: 0 20px; border-radius: 12px; flex: none; }

@media (max-width: 700px) {
    .sa-pr-card { padding: 24px 22px; border-radius: 20px; }
    .sa-pr-card:hover { box-shadow: none; transform: none; }
    .sa-pr-card--featured { padding: 26px 22px 24px; box-shadow: 0 14px 40px rgba(196, 42, 99, .13); }
    .sa-pr-card--featured:hover { box-shadow: 0 14px 40px rgba(196, 42, 99, .13); }
    .sa-pr-badge { top: -11px; inset-inline-start: 22px; height: 22px; padding: 0 11px; letter-spacing: .05em; }
    .sa-pr-card__head { gap: 9px; }
    .sa-pr-card__icon { width: 32px; height: 32px; border-radius: 10px; }
    .sa-pr-card__icon .sa-licon { width: 15px; height: 15px; }
    .sa-pr-card__name { font-size: 16px; letter-spacing: -.01em; }
    .sa-pr-card__tagline { margin-top: 12px; font-size: 13px; min-height: 0; }
    .sa-pr-price { gap: 6px; margin-top: 20px; }
    .sa-pr-price__amount { font-size: 38px; letter-spacing: -.035em; }
    .sa-pr-price__unit { font-size: 14px; }
    .sa-pr-price-meta { margin-top: 5px; font-size: 12px; }
    /* 7a folds the savings into the "billed yearly" line, muted */
    .sa-pr-price-save { display: inline; margin-top: 0; font-size: 12px; color: #8A93A5; font-weight: 400; }
    .sa-pr-price-meta { display: inline; }
    .sa-pr-price-lines { margin-top: 5px; }
    .sa-pr-price-save::before { content: "· "; color: #8A93A5; font-weight: 400; }
    .sa-pr-msgs { gap: 8px; margin-top: 18px; padding: 12px 14px; border-radius: 12px; }
    .sa-pr-msgs .sa-licon { width: 15px; height: 15px; }
    .sa-pr-msgs strong { font-size: 14px; }
    .sa-pr-cta { margin-top: 18px; }
    .sa-pr-card__inc { margin-top: 14px; padding-top: 0; border-top: none; font-size: 12px; font-weight: 500; }
    .sa-pr-card__inc .sa-licon { width: 14px; height: 14px; }
    .sa-pr-card__note { display: none; }
    .sa-pr-card--ent { display: flex; }
    .sa-pr-entstrip { display: none; }
}
@media (min-width: 701px) {
    .sa-pr-price-lines { display: contents; }
}

/* ==========================================================================
   SECTION HEADINGS (shared)
   ========================================================================== */

.sa-pr-kicker {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8A93A5;
}
.sa-pr-h2 {
    margin: 16px 0 0;
    font-size: 44px;
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.1;
}
.sa-pr-sub {
    margin: 16px auto 0;
    max-width: 560px;
    font-size: 16px;
    line-height: 1.6;
    color: #5A6478;
}
.sa-pr-sechead { text-align: center; }
@media (max-width: 700px) {
    .sa-pr-kicker { letter-spacing: .06em; }
    .sa-pr-h2 { margin-top: 12px; font-size: 26px; letter-spacing: -.03em; line-height: 1.2; }
    .sa-pr-sub { margin-top: 10px; font-size: 14px; }
}

/* ==========================================================================
   EVERYTHING INCLUDED — feature-group cards
   ========================================================================== */

.sa-pr-all { padding-top: 96px; }
.sa-pr-groups {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sa-pr-group {
    border: 1px solid #EDEFF3;
    border-radius: 20px;
    padding: 28px 26px;
    background: #fff;
}
.sa-pr-group__icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F4F5F8;
    color: #5A6478;
}
.sa-pr-group__icon .sa-licon { width: 18px; height: 18px; }
.sa-pr-group--sparkles .sa-pr-group__icon { background: #FBF1F5; color: #C42A63; }
.sa-pr-group--chat     .sa-pr-group__icon { background: #EAF6EF; color: #1E8F57; }
.sa-pr-group--users    .sa-pr-group__icon { background: #F1ECFB; color: #7B54C9; }
.sa-pr-group--calendar .sa-pr-group__icon { background: #FDF3E7; color: #A9690C; }
.sa-pr-group--cart     .sa-pr-group__icon { background: #EAF1FB; color: #2A63B8; }
.sa-pr-group--globe    .sa-pr-group__icon { background: #F4F5F8; color: #5A6478; }
.sa-pr-group__name {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.015em;
}
.sa-pr-group__desc {
    margin: 8px 0 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: #5A6478;
}
.sa-pr-group__items {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 18px;
    font-size: 13.5px;
    color: #374151;
}
.sa-pr-group__items span {
    display: flex;
    align-items: center;
    gap: 9px;
}
.sa-pr-group__items .sa-licon { width: 14px; height: 14px; color: #1E8F57; }
@media (max-width: 1100px) { .sa-pr-groups { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) {
    .sa-pr-all { padding-top: 32px; }
    .sa-pr-groups { margin-top: 24px; grid-template-columns: 1fr; gap: 12px; }
    .sa-pr-group { border-radius: 18px; padding: 20px; }
    .sa-pr-group__icon { width: 34px; height: 34px; border-radius: 11px; }
    .sa-pr-group__icon .sa-licon { width: 16px; height: 16px; }
    .sa-pr-group__name { margin-top: 12px; font-size: 15px; letter-spacing: 0; }
    .sa-pr-group__desc { margin-top: 6px; font-size: 13px; line-height: 1.55; }
    .sa-pr-group__items { gap: 7px; margin-top: 12px; font-size: 13px; }
    .sa-pr-group__items span { gap: 8px; }
    .sa-pr-group__items .sa-licon { width: 13px; height: 13px; }
}

/* ==========================================================================
   WHICH VOLUME FITS YOU — comparison cards (desktop/tablet only, per design)
   ========================================================================== */

.sa-pr-compare { padding-top: 96px; }
.sa-pr-vols {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
@media (max-width: 1100px) { .sa-pr-vols { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }
.sa-pr-vol {
    border: 1px solid #EDEFF3;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}
.sa-pr-vol--featured {
    border: 2px solid #FF5B8D;
    box-shadow: 0 14px 36px rgba(196, 42, 99, .12);
}
.sa-pr-vol--ent {
    border: 1px solid #E8E2F5;
    background: linear-gradient(170deg, #FBFAFE, #F8F7FC);
}
.sa-pr-vol__head { padding: 20px 20px 16px; }
.sa-pr-vol__name-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sa-pr-vol__name { font-size: 15px; font-weight: 600; }
.sa-pr-vol--ent .sa-pr-vol__name { color: #5B3D9E; }
.sa-pr-vol__pop {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #C42A63;
    background: #FBF1F5;
    border-radius: 999px;
    padding: 2px 8px;
}
.sa-pr-vol__who { margin-top: 4px; font-size: 12px; color: #8A93A5; }
.sa-pr-vol__row {
    padding: 14px 20px;
    border-top: 1px solid #F4F5F8;
}
.sa-pr-vol--ent .sa-pr-vol__row { border-top-color: #EFEBFA; }
.sa-pr-vol__label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #8A93A5;
}
.sa-pr-vol__msgs {
    margin-top: 3px;
    font-size: 16px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.sa-pr-vol__val {
    margin-top: 3px;
    font-size: 14px;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}
.sa-pr-vol__all {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}
.sa-pr-vol__all .sa-licon { width: 14px; height: 14px; color: #1E8F57; }
.sa-pr-vol--ent .sa-pr-vol__all .sa-licon { color: #7B54C9; }
.sa-pr-compare__note {
    margin-top: 16px;
    text-align: center;
    font-size: 12px;
    color: #8A93A5;
}
@media (max-width: 700px) {
    /* The mobile design (7a) omits this section entirely — no horizontal
       scrolling, no stacked duplicate of the plan cards above it. */
    .sa-pr-compare { display: none; }
}

/* ==========================================================================
   EVERY MESSAGE COUNTS AS ONE
   ========================================================================== */

.sa-pr-count {
    margin-top: 96px;
    background: #FAFBFC;
    border: 1px solid #EDEFF3;
    border-radius: 26px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.sa-pr-count::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 91, 141, .10), transparent 70%);
    pointer-events: none;
}
.sa-pr-count__copy { position: relative; }
.sa-pr-count__copy .sa-pr-h2 { font-size: 38px; letter-spacing: -.035em; line-height: 1.12; }
.sa-pr-count__p {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 1.65;
    color: #5A6478;
}
.sa-pr-count__facts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
}
.sa-pr-fact {
    display: flex;
    align-items: center;
    gap: 11px;
    background: #fff;
    border: 1px solid #EDEFF3;
    border-radius: 14px;
    padding: 14px 18px;
}
.sa-pr-fact .sa-licon { width: 17px; height: 17px; }
.sa-pr-fact--team .sa-licon { color: #7B54C9; }
.sa-pr-fact--contacts .sa-licon { color: #1E8F57; }
.sa-pr-fact--meter .sa-licon { color: #C42A63; }
.sa-pr-fact strong { font-size: 14px; font-weight: 600; }
.sa-pr-fact i { flex: 1; }
.sa-pr-fact em {
    font-style: normal;
    font-size: 13px;
    color: #8A93A5;
}
.sa-pr-count__viz {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}
.sa-pr-count__chips {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    width: 100%;
}
.sa-pr-chip {
    background: #fff;
    border: 1px solid #E6E9EF;
    border-radius: 16px;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}
.sa-pr-chip--ai { border-color: #EFE3EA; }
.sa-pr-chip__icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: #F4F5F8;
    color: #5A6478;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sa-pr-chip__icon .sa-licon { width: 16px; height: 16px; }
.sa-pr-chip--ai .sa-pr-chip__icon { background: #FBF1F5; color: #C42A63; }
.sa-pr-chip span:last-child { font-size: 12.5px; font-weight: 500; }
.sa-pr-count__div {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}
.sa-pr-count__div i { flex: 1; height: 1px; }
.sa-pr-count__div i:first-child { background: linear-gradient(90deg, transparent, #DDE1E8); }
.sa-pr-count__div i:last-child  { background: linear-gradient(270deg, transparent, #DDE1E8); }
.sa-pr-count__div .sa-licon { width: 18px; height: 18px; color: #8A93A5; }
.sa-pr-pillrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}
.sa-pr-pillrow > i { display: none; flex: 1; height: 1px; background: #E6E9EF; }
.sa-pr-count__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 30px;
    border-radius: 999px;
    background: #0E1424;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.02em;
    box-shadow: 0 12px 30px rgba(14, 20, 36, .18);
    white-space: nowrap;
}
.sa-pr-count__pill .sa-licon { width: 18px; height: 18px; color: #FF8FB3; }

@media (max-width: 1100px) {
    .sa-pr-count { padding: 40px; gap: 40px; grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .sa-pr-count {
        margin-top: 36px;
        border-radius: 20px;
        padding: 26px 22px;
        gap: 0;
    }
    .sa-pr-count__copy .sa-pr-h2 { margin-top: 10px; font-size: 24px; letter-spacing: -.03em; line-height: 1.22; }
    .sa-pr-count__p { margin-top: 9px; font-size: 13px; line-height: 1.6; }
    .sa-pr-count__viz { margin-top: 18px; gap: 16px; }
    .sa-pr-count__chips { grid-template-columns: 1fr 1fr; gap: 8px; }
    .sa-pr-chip {
        flex-direction: row;
        border-color: #EDEFF3;
        border-radius: 11px;
        padding: 10px 12px;
        gap: 8px;
    }
    .sa-pr-chip__icon {
        width: 14px;
        height: 14px;
        border-radius: 0;
        background: transparent !important;
    }
    .sa-pr-chip--ai .sa-pr-chip__icon { color: #C42A63; }
    .sa-pr-chip__icon .sa-licon { width: 14px; height: 14px; }
    .sa-pr-chip span:last-child { font-size: 12px; }
    .sa-pr-count__div { display: none; }
    .sa-pr-pillrow > i { display: block; }
    .sa-pr-count__pill {
        height: 38px;
        padding: 0 16px;
        gap: 8px;
        font-size: 13px;
        letter-spacing: 0;
        box-shadow: none;
    }
    #sa-pr .sa-pr-count__pill .sa-licon { display: none; }
    .sa-pr-count__facts { margin-top: 16px; gap: 0; }
    .sa-pr-fact { padding: 12px 14px; border-radius: 12px; gap: 9px; }
    .sa-pr-fact .sa-licon { width: 15px; height: 15px; }
    .sa-pr-fact strong { font-size: 13px; }
    .sa-pr-fact em { font-size: 12px; }
    /* 7a keeps only the team-size fact */
    .sa-pr-fact--contacts, .sa-pr-fact--meter { display: none; }
    /* facts render after the viz on mobile, like the design */
    .sa-pr-count__copy { display: contents; }
    .sa-pr-count__copy > .sa-pr-kicker { order: 1; }
    .sa-pr-count__copy > .sa-pr-h2 { order: 2; }
    .sa-pr-count__copy > .sa-pr-count__p { order: 3; }
    .sa-pr-count__viz { order: 4; }
    .sa-pr-count__copy > .sa-pr-count__facts { order: 5; }
}

/* ==========================================================================
   TOP-UP CARDS (.sa-tpc) — shared component: pricing page (7b/7a) and
   customer Billing page (7c). 7c sizing is the base; the pricing page
   applies the larger 7b scale.
   ========================================================================== */

.sa-tpc {
    position: relative;
    display: block;
    border: 1.5px solid #E6E9EF;
    border-radius: 20px;
    padding: 24px;
    background: #fff;
    color: #0E1424;
    font-family: "Instrument Sans", "IBM Plex Sans Arabic", system-ui, sans-serif;
    line-height: 1.5;
    text-decoration: none;
    transition: box-shadow .2s, transform .2s;
}
.sa-tpc:hover {
    box-shadow: 0 16px 40px rgba(14, 20, 36, .09);
    transform: translateY(-3px);
    color: #0E1424;
}
.sa-tpc--featured {
    border: 2px solid #FF5B8D;
    box-shadow: 0 16px 44px rgba(196, 42, 99, .13);
}
.sa-tpc--featured:hover {
    box-shadow: 0 16px 44px rgba(196, 42, 99, .13);
    transform: none;
}
.sa-tpc__badge {
    position: absolute;
    top: -12px;
    inset-inline-start: 24px;
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 12px;
    border-radius: 999px;
    background: #C42A63;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    white-space: nowrap;
}
.sa-tpc__head {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sa-tpc__icon {
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: 11px;
    background: #F4F5F8;
    color: #5A6478;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sa-tpc__icon .sa-licon { width: 15px; height: 15px; }
.sa-tpc--featured .sa-tpc__icon { background: #FBF1F5; color: #C42A63; }
.sa-tpc__title {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}
.sa-tpc__name {
    font-size: 15px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    /* never widen the card past its grid track — ellipsize instead */
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sa-tpc__flag {
    display: none;
    font-size: 10px;
    font-weight: 600;
    color: #C42A63;
    background: #FBF1F5;
    border-radius: 999px;
    padding: 1px 7px;
    white-space: nowrap;
}
.sa-tpc__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 20px;
}
.sa-tpc__price strong {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -.035em;
    font-variant-numeric: tabular-nums;
}
.sa-tpc__price em {
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
    color: #5A6478;
}
.sa-tpc__rate {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #8A93A5;
    font-variant-numeric: tabular-nums;
}
.sa-tpc__cta {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border-radius: 12px;
    border: 1.5px solid #D8DDE5;
    font-size: 13.5px;
    font-weight: 600;
    transition: border-color .2s ease, background .2s ease;
}
.sa-tpc:hover .sa-tpc__cta { border-color: #0E1424; }
.sa-tpc--featured .sa-tpc__cta {
    border: none;
    background: #C42A63;
    color: #fff;
}
.sa-tpc--featured:hover .sa-tpc__cta { background: #A82253; }

/* Pricing-page scale (7b) */
.sa-pr-topups { padding-top: 96px; }
.sa-pr-topups__head {
    display: flex;
    align-items: flex-end;
    gap: 32px;
}
.sa-pr-topups__head .sa-pr-h2 { font-size: 38px; letter-spacing: -.035em; }
.sa-pr-topups__p {
    margin: 0 0 6px;
    flex: 1;
    max-width: 420px;
    font-size: 15px;
    line-height: 1.6;
    color: #5A6478;
}
.sa-pr-topups__grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sa-pr-topups .sa-tpc { padding: 28px; }
.sa-pr-topups .sa-tpc__icon { width: 36px; height: 36px; border-radius: 12px; }
.sa-pr-topups .sa-tpc__icon .sa-licon { width: 16px; height: 16px; }
.sa-pr-topups .sa-tpc__head { gap: 11px; }
.sa-pr-topups .sa-tpc__name { font-size: 16px; }
.sa-pr-topups .sa-tpc__price { gap: 7px; margin-top: 22px; }
.sa-pr-topups .sa-tpc__price strong { font-size: 34px; }
.sa-pr-topups .sa-tpc__price em { font-size: 14px; }
.sa-pr-topups .sa-tpc__rate { font-size: 12.5px; }
.sa-pr-topups .sa-tpc__cta { margin-top: 22px; height: 44px; font-size: 14px; }
.sa-pr-topups .sa-tpc__badge { inset-inline-start: 28px; }

@media (max-width: 1100px) {
    .sa-pr-topups__grid { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 700px) {
    .sa-pr-topups { padding-top: 36px; }
    .sa-pr-topups__head { display: block; }
    .sa-pr-topups__head .sa-pr-h2 { margin-top: 10px; font-size: 24px; letter-spacing: -.03em; }
    .sa-pr-topups__p { margin: 9px 0 0; max-width: none; font-size: 13px; }
    .sa-pr-topups__grid { margin-top: 18px; gap: 12px; max-width: none; }

    /* 7a: compact row cards — icon | name + rate | price */
    .sa-pr-topups .sa-tpc {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "icon head price"
            "icon rate price";
        align-items: center;
        column-gap: 14px;
        row-gap: 0;
        padding: 18px 20px;
        border-radius: 16px;
        border-width: 1px;
    }
    .sa-pr-topups .sa-tpc--featured { border-width: 1.5px; box-shadow: 0 8px 24px rgba(196, 42, 99, .1); }
    .sa-pr-topups .sa-tpc__head { display: contents; }
    .sa-pr-topups .sa-tpc__title { grid-area: head; align-self: end; }
    .sa-pr-topups .sa-tpc__icon { grid-area: icon; }
    .sa-pr-topups .sa-tpc__name { font-size: 15px; }
    .sa-pr-topups .sa-tpc__flag { display: inline-block; }
    .sa-pr-topups .sa-tpc__badge { display: none; }
    .sa-pr-topups .sa-tpc__price {
        grid-area: price;
        display: block;
        margin-top: 0;
        text-align: end;
    }
    .sa-pr-topups .sa-tpc__price strong { display: block; font-size: 17px; letter-spacing: 0; }
    .sa-pr-topups .sa-tpc__price em { display: block; font-size: 11px; font-weight: 400; color: #8A93A5; }
    .sa-pr-topups .sa-tpc__rate { grid-area: rate; margin-top: 0; }
    .sa-pr-topups .sa-tpc__cta { display: none; }
    .sa-pr-topups .sa-tpc:hover { box-shadow: none; transform: none; }
}

/* Billing page (7c) container */
.sa-acc2-topups { text-align: start; }
.sa-acc2-topups,
.sa-acc2-topups * { font-family: "Instrument Sans", "IBM Plex Sans Arabic", system-ui, sans-serif; }
.sa-acc2-topups__head {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}
.sa-acc2-topups__kicker {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8A93A5;
}
.sa-acc2-topups__title {
    margin-top: 8px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.025em;
    color: #0E1424; /* light dashboard shell */
}
.sa-shell .sa-acc2-topups__title { color: #fff; } /* dark account page */
.sa-acc2-topups__sub {
    margin: 0 0 4px;
    flex: 1;
    font-size: 13.5px;
    color: #8A93A5;
    line-height: 1.5;
}
.sa-acc2-topups__grid {
    margin-top: 22px;
    display: grid;
    /* auto-fit, shrinkable columns: the Billing panel's width is set by the
       app shell, not the viewport, so a rigid 3×1fr grid overflowed it.
       Cards wrap to 2+1 / stacked on their own when the panel is narrow. */
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 16px;
}
.sa-acc2-topups__grid .sa-tpc { min-width: 0; }
@media (max-width: 700px) {
    .sa-acc2-topups__head { display: block; }
    .sa-acc2-topups__sub { margin-top: 6px; }
    .sa-acc2-topups__grid { grid-template-columns: 1fr; margin-top: 18px; }
}

/* ==========================================================================
   ENTERPRISE
   ========================================================================== */

.sa-pr-ent {
    margin-top: 96px;
    border: 1px solid #EDEFF3;
    border-radius: 28px;
    overflow: hidden;
    background: #FAFBFC;
    padding: 48px 56px;
    position: relative;
}
.sa-pr-ent::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -60px;
    width: 520px;
    height: 420px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 214, .09), transparent 70%);
    pointer-events: none;
}
.sa-pr-ent__head {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 40px;
}
.sa-pr-ent__copy { max-width: 520px; }
.sa-pr-ent__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 13px;
    border-radius: 999px;
    background: #F1ECFB;
    color: #7B54C9;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.sa-pr-ent__title {
    margin: 20px 0 0;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.12;
}
.sa-pr-ent__p {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 1.65;
    color: #5A6478;
}
.sa-pr-ent__spacer { flex: 1; }
.sa-pr-ent__ctas { display: flex; gap: 12px; flex: none; }
.sa-pr-ent__ctas .sa-btn { height: 48px; padding: 0 22px; border-radius: 13px; font-size: 15px; }
.sa-pr-ent__points {
    display: none;
    flex-direction: column;
    gap: 9px;
    margin-top: 18px;
    font-size: 13px;
    color: #374151;
    list-style: none;
    padding: 0;
}
.sa-pr-ent__points li {
    display: flex;
    align-items: center;
    gap: 9px;
}
.sa-pr-ent__points .sa-licon { width: 14px; height: 14px; color: #7B54C9; }
.sa-pr-ent__grid {
    position: relative;
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
@media (max-width: 1100px) { .sa-pr-ent__grid { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); } }
.sa-pr-ent__cell {
    background: #fff;
    border: 1px solid #EDEFF3;
    border-radius: 16px;
    padding: 20px;
}
.sa-pr-ent__cell-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: #F1ECFB;
    color: #7B54C9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sa-pr-ent__cell-icon .sa-licon { width: 16px; height: 16px; }
.sa-pr-ent__cell strong {
    display: block;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
}
/* Dedicated class: a bare `.sa-pr-ent__cell span` selector also matches the
   icon-chip spans and knocks the icon out of center (display/margin leak). */
.sa-pr-ent__cell-desc {
    display: block;
    margin-top: 5px;
    font-size: 12.5px;
    line-height: 1.55;
    color: #5A6478;
}
.sa-pr-ent__mcta { display: none; margin-top: 20px; }
@media (max-width: 700px) {
    .sa-pr-ent {
        margin-top: 36px;
        border-radius: 22px;
        padding: 28px 22px;
    }
    .sa-pr-ent::before {
        top: -60px;
        right: -50px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 91, 141, .10), transparent 70%);
    }
    .sa-pr-ent__head { display: block; }
    .sa-pr-ent__badge { padding: 4px 11px; font-size: 10px; letter-spacing: .06em; }
    .sa-pr-ent__title { margin-top: 14px; font-size: 25px; letter-spacing: -.03em; line-height: 1.2; }
    .sa-pr-ent__p { margin-top: 10px; font-size: 13px; line-height: 1.6; }
    .sa-pr-ent__ctas { display: none; }
    .sa-pr-ent__points { display: flex; }
    .sa-pr-ent__grid { display: none; }
    .sa-pr-ent__mcta { display: block; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.sa-pr-faq {
    padding-top: 96px;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 72px;
    align-items: start;
}
.sa-pr-faq__intro .sa-pr-h2 { font-size: 38px; letter-spacing: -.035em; line-height: 1.12; }
.sa-pr-faq__p {
    margin: 16px 0 0;
    font-size: 15px;
    line-height: 1.6;
    color: #5A6478;
}
.sa-pr-faq__talk {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 600;
    color: #C42A63;
    text-decoration: none;
}
.sa-pr-faq__talk:hover { color: #9E1F4E; }
.sa-pr-faq__talk .sa-licon { width: 14px; height: 14px; }
.sa-pr-faq__list { border-top: 1px solid #EDEFF3; }
.sa-pr-faq__item {
    border-bottom: 1px solid #EDEFF3;
}
.sa-pr-faq__item summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 26px 0;
    cursor: pointer;
    list-style: none;
}
.sa-pr-faq__item summary::-webkit-details-marker { display: none; }
.sa-pr-faq__q {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.015em;
    transition: color .15s ease;
}
.sa-pr-faq__item summary:hover .sa-pr-faq__q { color: #C42A63; }
.sa-pr-faq__ico { width: 18px; height: 18px; flex: none; color: #8A93A5; }
.sa-pr-faq__ico--open { display: none; color: #C42A63; }
.sa-pr-faq__item[open] .sa-pr-faq__ico--closed { display: none; }
.sa-pr-faq__item[open] .sa-pr-faq__ico--open { display: inline-flex; }
.sa-pr-faq__item[open] summary { padding-bottom: 0; }
.sa-pr-faq__item p {
    margin: 14px 0 0;
    padding-bottom: 26px;
    max-width: 680px;
    font-size: 15px;
    line-height: 1.7;
    color: #5A6478;
    animation: saPrFade .25s ease;
}
@keyframes saPrFade {
    from { opacity: 0; transform: translateY(-3px); }
    to   { opacity: 1; transform: none; }
}
@media (max-width: 1100px) {
    .sa-pr-faq { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 700px) {
    .sa-pr-faq { padding-top: 36px; gap: 16px; }
    .sa-pr-faq__intro .sa-pr-kicker,
    .sa-pr-faq__p,
    .sa-pr-faq__talk { display: none; }
    .sa-pr-faq__intro .sa-pr-h2 { margin-top: 0; font-size: 24px; letter-spacing: -.03em; }
    .sa-pr-faq__item summary { gap: 12px; padding: 16px 0; }
    .sa-pr-faq__q { font-size: 14px; letter-spacing: 0; }
    .sa-pr-faq__ico { width: 16px; height: 16px; }
    .sa-pr-faq__item p { margin-top: 10px; padding-bottom: 16px; font-size: 13px; line-height: 1.65; }
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.sa-pr-final {
    position: relative;
    padding: 110px 0 96px;
    text-align: center;
    overflow: hidden;
}
.sa-pr-final::before {
    content: "";
    position: absolute;
    bottom: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 880px;
    max-width: 100vw;
    height: 420px;
    background: radial-gradient(ellipse at center, rgba(255, 91, 141, .11), rgba(139, 92, 214, .07) 45%, transparent 72%);
    pointer-events: none;
}
.sa-pr-final__in {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}
.sa-pr-final__title {
    margin: 0;
    font-size: 52px;
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 1.06;
}
.sa-pr-final__sub {
    margin: 20px auto 0;
    max-width: 480px;
    font-size: 17px;
    line-height: 1.6;
    color: #5A6478;
}
.sa-pr-final__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}
.sa-pr-final__actions .sa-btn {
    height: 52px;
    padding: 0 26px;
    border-radius: 14px;
    font-size: 16px;
}
#sa-pr .sa-pr-final__actions .sa-btn--primary,
#sa-pr .sa-pr-final__actions .sa-btn--primary:hover {
    box-shadow: 0 12px 30px rgba(196, 42, 99, .24);
}
.sa-pr-final__actions .sa-btn .sa-licon { width: 16px; height: 16px; }
.sa-pr-final__note {
    margin-top: 18px;
    font-size: 13px;
    color: #8A93A5;
}
@media (max-width: 700px) {
    .sa-pr-final { padding: 44px 0 40px; }
    .sa-pr-final__title { font-size: 28px; letter-spacing: -.035em; line-height: 1.15; }
    .sa-pr-final__sub { margin-top: 12px; font-size: 14px; }
    .sa-pr-final__actions { margin-top: 22px; }
    #sa-pr .sa-pr-final__actions .sa-btn--primary,
    #sa-pr .sa-pr-final__actions .sa-btn--primary:hover {
        width: 100%;
        height: 50px;
        border-radius: 13px;
        font-size: 15px;
        box-shadow: none;
    }
    .sa-pr-final__actions .sa-btn--primary .sa-licon { width: 15px; height: 15px; }
    #sa-pr .sa-pr-final__actions .sa-btn--ghost { display: none; }
    .sa-pr-final__note { margin-top: 14px; font-size: 12px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.sa-pr-footer {
    border-top: 1px solid #F1F3F6;
    padding: 28px 0;
    display: flex;
    align-items: center;
    gap: 24px;
}
/* The brand PNG is a 1000×1000 canvas whose wordmark occupies only the middle
   band (x 98–902, y 396–604) — scaling the whole square to a 28px height left
   a tiny mark surrounded by transparent padding. The brand cell crops to the
   wordmark's own box so the logo renders at its real size. */
.sa-pr-footer__brand {
    position: relative;
    width: 132px;
    height: 34px;
    overflow: hidden;
    flex: none;
}
.sa-pr-footer__logo {
    position: absolute;
    height: 164px;
    width: auto;
    max-width: none;
    top: -65px;
    /* PHYSICAL left on purpose: the crop offset tracks the wordmark's position
       inside the PNG, which does not mirror in RTL. inset-inline-start would
       flip it and show the wrong slice of the image on the Arabic page. */
    left: -16px;
    display: block;
}
.sa-pr-footer__spacer { flex: 1; }
.sa-pr-footer__links {
    display: flex;
    gap: 22px;
    font-size: 13px;
}
.sa-pr-footer__links a {
    color: #8A93A5;
    text-decoration: none;
    transition: color .15s ease;
}
.sa-pr-footer__links a:hover { color: #0E1424; }
@media (max-width: 700px) {
    .sa-pr-footer { padding: 22px 0; gap: 16px; }
    .sa-pr-footer__brand { width: 116px; height: 30px; }
    .sa-pr-footer__logo { height: 144px; top: -57px; left: -14px; }
}

/* ==========================================================================
   MOBILE STICKY BAR (7a)
   ========================================================================== */

.sa-pr-sticky {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9990;
    background: rgba(255, 255, 255, .94);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-top: 1px solid #EDEFF3;
    padding: 12px 20px 22px;
    align-items: center;
    gap: 12px;
    font-family: "Instrument Sans", "IBM Plex Sans Arabic", system-ui, sans-serif;
}
.sa-pr-sticky__info { flex: 1; min-width: 0; }
.sa-pr-sticky__plan {
    font-size: 13px;
    font-weight: 600;
    color: #0E1424;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sa-pr-sticky__price {
    font-size: 11px;
    color: #8A93A5;
    font-variant-numeric: tabular-nums;
}
.sa-pr-sticky__btn {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 20px;
    border-radius: 12px;
    background: #C42A63;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    flex: none;
}
.sa-pr-sticky__btn:hover { background: #A82253; color: #fff; }
@media (max-width: 700px) {
    .sa-pr-sticky { display: flex; }
}

/* ==========================================================================
   ACCESSIBILITY + MOTION
   ========================================================================== */

#sa-pr .sa-btn:focus-visible,
#sa-pr .sa-toggle-btn:focus-visible,
#sa-pr summary:focus-visible,
#sa-pr a:focus-visible,
.sa-tpc:focus-visible {
    outline: 2px solid #C42A63;
    outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
    .sa-pr-card, .sa-tpc, #sa-pr .sa-btn, #sa-pr .sa-toggle-btn { transition: none; }
    .sa-pr-card:hover, .sa-tpc:hover { transform: none; }
    .sa-pr-faq__item p { animation: none; }
}
