/* ═══════════════════════════════════════════════════════════════
   MANI GLOBALS LTR — Shared Animations + Button System
   File: /static/css/shell/mani-globals-ltr.css

   STRUCTURE:
   1. Shared Animations
   2. Shared Button System (mni-btn)
   3. Shared Components (Client Logos, etc.)

   RULES:
   — This file must stay small and stable.
   — Only add here if the style is used across 2+ pages.
   — Page-specific styles go in mani-[page]-ltr.css
   ═══════════════════════════════════════════════════════════════ */

html {
    scroll-behavior: smooth;
}

/* ═══ 1. SHARED ANIMATIONS ═══ */
@keyframes mni-rise {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes mni-logo-scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes mni-pulse {

    0%,
    100% {
        opacity: .55
    }

    50% {
        opacity: 1
    }
}

.mni-ri {
    animation: mni-rise .6s cubic-bezier(.22, 1, .36, 1) both
}

.mni-d1 {
    animation-delay: .06s
}

.mni-d2 {
    animation-delay: .12s
}

.mni-d3 {
    animation-delay: .18s
}

.mni-d4 {
    animation-delay: .24s
}

.mni-d5 {
    animation-delay: .30s
}


.mni-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    gap: 10px;
    height: 48px;
    padding: 0 32px;
    background: var(--btn-bg);
    color: var(--white) !important;
    border-radius: var(--r-m);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    overflow: hidden;
    z-index: 0;
    isolation: isolate;
    transition: filter 0.4s ease;
    filter: brightness(1.12);
}

.mni-btn::after {
    content: '';
    position: absolute;
    left: -60%;
    bottom: -15%;
    width: 220%;
    height: 100%;
    background: linear-gradient(180deg, var(--btn-grad-top) 0%, var(--btn-grad-bot) 100%);
    border-radius: 45% 45% 0 0;
    z-index: -1;
    pointer-events: none;

    transform: translateY(108%);
    animation: wave-calm 4s infinite ease-in-out;

    opacity: 0.75;
    filter: brightness(0.95);

    transition:
        bottom 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.4s ease,
        filter 0.4s ease;
}


.mni-btn:hover {
    filter: brightness(1.2);
}

.mni-btn:hover::after {
    bottom: -5%;
    transform: translateY(88%);
    opacity: 1;
    filter: brightness(1.1);
}

.mni-btn:hover i,
.mni-btn:hover span {
    transform: translateX(4px);
}

.mni-btn i,
.mni-btn span {
    position: relative;
    z-index: 1;
    font-size: inherit;
    font-weight: 800;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes wave-calm {
    0% {
        border-radius: 45% 55% 0 0;
        transform: scaleX(1);
    }
    50% {
        border-radius: 55% 45% 0 0;
        transform: scaleX(1.04);
    }
    100% {
        border-radius: 45% 55% 0 0;
        transform: scaleX(1);
    }
}

.mni-btn--outline {
    background: var(--white);
    color: var(--blue) !important;
    border: 2px solid var(--blue) !important;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, transform 0.3s ease;
    filter: none !important;
}

.mni-btn--outline::after {
    content: '';
    position: absolute;
    left: -50%;
    bottom: -5%;
    width: 200%;
    height: 95%;
    background: rgba(var(--blue-rgb), 0.08);
    border-radius: 40% 40% 0 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(90%);
}

.mni-btn--outline:hover {
    background: var(--white);
    color: var(--blue) !important;
    border-color: var(--blue) !important;
    box-shadow: none;
    filter: none !important;
}

.mni-btn--outline:hover::after {
    transform: translateY(0%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    animation: wave-sway 2s infinite ease-in-out;
}

.mni-btn--white {
    background: var(--white);
    border: 2px solid var(--white);
    color: var(--mnx-ink) !important;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    filter: none !important;
}

.mni-btn--white::after {
    content: '';
    position: absolute;
    left: -50%;
    bottom: -5%;
    width: 200%;
    height: 95%;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 40% 40% 0 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(90%);
}

.mni-btn--white:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    border: 2px solid var(--white) !important;
    color: var(--mnx-ink) !important;
    animation: none;
    filter: none !important;
}

.mni-btn--white:hover::after {
    transform: translateY(0%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    animation: wave-sway 2s infinite ease-in-out;
}

/* Primary — alias of the base button (kept so `mni-btn mni-btn--primary`
   in the templates is not a silent no-op). */
.mni-btn--primary {
    background: var(--btn-bg);
    color: var(--white) !important;
}

/* Large */
.mni-btn--lg {
    height: 54px;
    padding: 0 40px;
    font-size: 19px;
    border-radius: var(--r-l);
}

/* Small */
.mni-btn--sm {
    height: 40px;
    padding: 0 24px;
    font-size: 13px;
    border-radius: var(--r-s);
}

/* Ad-hoc page link-buttons — they inherit the shared small-button metrics
   here instead of redeclaring their own heights/radii. Only their colour
   treatment stays in the page stylesheet.
   (Globals loads before page CSS, so the page rules were stripped of geometry.) */
.frag-learn .vd-back-btn,
.frag-learn .vd-watch-btn,
.frag-learn .vd-load-more-btn,
.uc-filter-btn,
.blg-vote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 0 24px;
    border-radius: var(--r-s);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
}

/* pill-shaped variants of the same metrics */
.uc-filter-btn,
.blg-vote-btn {
    border-radius: var(--r-round);
}

/* Ghost — for dark backgrounds */
.mni-btn--ghost {
    background: transparent;
    color: var(--btn-text);
    box-shadow: none;
    border: 2px solid var(--btn-bg);
}

.mni-btn--ghost:hover {
    border: 2px solid var(--blue-h);
    color: var(--btn-text);
}

@keyframes wave-sway {
    0% {
        left: -50%;
        border-radius: 40% 60% 0 0;
    }

    50% {
        left: -55%;
        border-radius: 60% 40% 0 0;
    }

    100% {
        left: -50%;
        border-radius: 40% 60% 0 0;
    }
}

.lgl-nav-strip {
    z-index: 1 !important;
}

/* ═══ SHARED PAGE COMPONENTS (were duplicated verbatim across 2-4 files) ═══ */

/* Sticky sub-nav strip */
.mni-nav-strip,
.aff-nav-strip, .sup-nav-strip {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-block-end: 1px solid var(--mist);
    padding: 0 24px;
}

/* Sub-nav pill */
.mni-nav-pill,
.aff-nav-pill, .prt-nav-pill, .sup-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: var(--r-round);
    font-size: 13px;
    font-weight: 700;
    color: var(--slate);
    white-space: nowrap;
    transition: .2s;
    flex-shrink: 0;
}

/* Callout row */
.mni-callout,
.aff-callout, .prt-callout, .sup-callout {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border-radius: var(--r-xl);
    border: 2px solid var(--mist);
    margin-block-end: 16px;
}

/* Three-up stats strip */
.mni-stats,
.aff-stats, .sup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--snow);
    border: 2px solid var(--mist);
    border-radius: var(--r-xl);
    overflow: hidden;
    margin-block-end: 40px;
}

/* Page-root reset (was .frag-aff / .frag-prt / .frag-sup / .frag-wim, identical) */
.mni-page,
.frag-aff, .frag-prt, .frag-sup {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--ink2);
    line-height: 1.6;
    background: var(--white);
}

/* Gradient <em> inside a hero h1 */
.mni-grad-em,
.hom-hero h1 em, .prt-hero h1 em, .plt-hero h1 em {
    background: linear-gradient(90deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero decoration — grid overlay + radial glow.
   Was cloned verbatim in learn / pricing / seo-landing. */
.mni-hero::after,
.frag-learn .vd-hero::after,
.frag-pricing .pr-hero::after,
.frag-seo-landing .sl-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(226, 232, 240, .38) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 232, 240, .38) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, #000 15%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, #000 15%, transparent);
}

.mni-hero::before,
.frag-learn .vd-hero::before,
.frag-pricing .pr-hero::before,
.frag-seo-landing .sl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 68% 52% at 50% -8%, rgba(var(--blue-rgb), .08), transparent 68%);
    pointer-events: none;
}

/* Text Link — low-priority navigation */
.mni-btn--text {
    background: transparent;
    color: var(--blue) !important;
    border: none;
    padding: 0;
    height: auto;
    font-size: 15px;
    font-weight: 700;
    gap: 6px;
}

.mni-btn--text:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
    text-decoration: underline;
    color: var(--blue) !important;
}

/* ═══ ONE EYEBROW · ONE SECTION HEAD · ONE SECTION SUB ═══
   Single source for the eyebrow/h2/sub rhythm. Spec = the .appx-eyebrow one
   (13px / 700 / .5px tracking / uppercase) that 7 app pages already use.
   Legacy per-page names are aliases so the templates keep working. */
.mni-eye,
.appx-eyebrow, .au-eyebrow, .plat-eye,
.hm-eye, .impl-eye, .in-eye, .mp-eye, .mb-eye {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--app-accent, var(--blue));
    margin-block-end: 10px;
}

.mni-sh,
.appx-h2, .au-h2,
.hm-sh, .impl-sh, .in-sh, .mp-sh, .mb-sh {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.5px;
    line-height: 1.2;
    margin: 0 0 12px;
}

.mni-sp,
.hm-sp, .impl-sp, .in-sp, .mb-sp {
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--slate);
    max-width: 700px;
    margin: 0 auto 44px;
    line-height: 1.7;
}

/* ═══ 3. SHARED COMPONENTS (Fragments) ═══
   Components loaded globally across multiple views.
   ─────────────────────────────────────────────────────────────── */

.hm-clients-link {
    text-align: center;
    margin-top: 22px;
}

/* Client Logos Slideshow */
.mnx-client-logos {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    mask-image: linear-gradient(to right,
            transparent,
            black 20%,
            black 80%,
            transparent),
        linear-gradient(to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent);
    mask-composite: intersect;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.92) 15%,
            rgba(255, 255, 255, 0.92) 85%,
            transparent) !important;
}

/* Fading edges for a premium enterprise look */
.mnx-client-logos::before,
.mnx-client-logos::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.mnx-client-logos::before {
    left: 0;
}

.mnx-client-logos::after {
    right: 0;
}

.mnx-logos-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: mni-logo-scroll 45s linear infinite;
}

/* Pause animation on hover */
.mnx-logos-track:hover {
    animation-play-state: paused;
}

.mnx-logos-track img {
    height: 50px;
    width: auto;
    margin: 0 35px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.3s ease;
    display: block;
}

.mnx-logos-track img:hover {
    filter: grayscale(0%) opacity(1);
}
/* ═══ Shared App-Page component (.appx-*) — used by store/delivery/pos/booking ═══
   Accent per page via --app-accent on the page root (.pg-store, .pg-delivery, ...).
   Logical properties → RTL-safe. */
.appx { --app-accent: var(--blue); --appx-ink: var(--ink); --appx-slate: var(--slate); --appx-line: var(--mist); font-family: 'Plus Jakarta Sans', system-ui, sans-serif; color: var(--appx-ink); line-height: 1.6; }
.appx a { text-decoration: none; color: inherit; }
.appx img { max-width: 100%; display: block; }
.appx-mx { max-width: 1180px; margin: 0 auto; padding-inline: 24px; }
.appx-section { padding-block: var(--sec-y); }
.appx-section--tint { background: var(--snow); }
.appx-head { max-width: 760px; margin-inline: auto; text-align: center; margin-block-end: 40px; }
.appx-sub { font-size: 17px; font-weight: 600; color: var(--appx-slate); margin: 0; }
.appx-hero { padding-block: 84px 64px; background: linear-gradient(180deg, color-mix(in srgb, var(--app-accent) 8%, var(--white)), var(--white)); border-block-end: 1px solid var(--appx-line); }
.appx-hero-inner { max-width: 820px; margin-inline: auto; text-align: center; }
.appx-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid color-mix(in srgb, var(--app-accent) 25%, var(--white)); color: var(--app-accent); font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 100px; margin-block-end: 18px; }
.appx-h1 { font-size: 40px; font-weight: 800; line-height: 1.12; letter-spacing: -.5px; margin: 0 0 16px; }
.appx-hero-sub { font-size: 19px; font-weight: 400; color: var(--appx-slate); margin: 0 auto 28px; max-width: 620px; }
.appx-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.appx-note { margin-block-start: 16px; font-size: 14px; color: var(--appx-slate); }
.appx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.appx-card { padding: 22px; }
/* ═══ THE ONE CARD ═══ single source for every content card on the site.
   background: var(--snow) · border: 2px solid var(--mist) · border-radius: var(--r-xl)
   Legacy per-page class names are kept as aliases so the templates keep working. */
.mni-card,
.appx-card, .appx-biz-card,
.au-biz-card, .au-step,
.hm-ecard, .hm-jcard, .hm-ben-item, .hm-flow-card,
.hm-app-card, .hm-sim-card, .hm-impl-card {
    background: var(--snow);
    border: 2px solid var(--mist);
    border-radius: var(--r-xl);
}

.appx-card i { color: var(--app-accent); font-size: 22px; margin-block-end: 12px; }
.appx-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.appx-card p { font-size: 14px; color: var(--appx-slate); margin: 0; }
.appx-biz { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.appx-biz-card { padding: 24px; }
.appx-biz-card h3 { font-size: 20px; font-weight: 700; margin: 0 0 6px; }
.appx-biz-card p { font-size: 15px; color: var(--appx-slate); margin: 0; }
@media (max-width: 900px) { .appx-grid, .appx-biz { grid-template-columns: 1fr; } .appx-h1 { font-size: 34px; } .appx-h2 { font-size: 28px; } .appx-section, .plat-band { padding-block: 52px; } }

/* ═══ Shared cross-link strip (.plat-*) — platform apps, self-contained ═══ */
.plat-band { padding-block: var(--sec-y); background: var(--snow); }
/* ── Shared section container ──
   THE convention, matching every mani-<page>-ltr.css: the <section> carries the
   horizontal padding and the wrapper is a bare max-width. Mixing the two — padding
   on the wrapper AND a 1180 cap — makes a border-box element render 48px narrower
   than its neighbours, which is exactly how the payment section ended up misaligned
   on /pricing. Shared components must use .mni-mx so they line up on any page.
   TODO next pass: migrate .plat-mx and .xlnk, which still carry the old pattern. */
.mni-mx { max-width: 1180px; margin: 0 auto; }

.plat-mx { max-width: 1180px; margin: 0 auto; padding-inline: 24px; text-align: center; }
.plat-h2 { font-size: 28px; font-weight: 800; color: var(--ink); margin: 0 0 24px; }
.plat-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.plat-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--mist); border-radius: 100px; padding: 9px 16px; font-size: 14px; font-weight: 700; color: var(--ink); text-decoration: none; transition: border-color .15s, color .15s; }
.plat-chip i { color: var(--blue); }
.plat-chip:hover { border-color: var(--blue); color: var(--blue); }
/* Second row: platform sections (industries / marketplace / customization).
   Identical chip to the row above — the only difference is the line break, which
   keeps add-on apps and platform sections readable as two groups. Do NOT
   re-introduce a "ghost" variant here; two chip styles in one strip reads broken. */
.plat-chips--more { margin-block-start: 10px; }

/* ── Shared internal SEO cross-links strip (blog + SEO pages) ── */
.xlnk { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; max-width: 1180px; margin: 0 auto; padding: 26px 24px; }
.xlnk-t { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--slate); }
.xlnk-a { display: inline-flex; align-items: center; gap: 7px; background: var(--snow); border: 1px solid var(--mist); border-radius: 100px; padding: 8px 16px; font-size: 14px; font-weight: 700; color: var(--ink); text-decoration: none; transition: border-color .15s, color .15s; }
.xlnk-a i { color: var(--blue); }
.xlnk-a:hover { border-color: var(--blue); color: var(--blue); }

/* ── Shared "from the Managely marketplace" note (under app-page heroes) ── */
.mkt-note { display: flex; justify-content: center; padding: 22px 24px 4px; text-align: center; }
.mkt-note-inner { display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 6px 10px; background: var(--snow); border: 1px solid var(--mist); border-radius: 100px; padding: 9px 20px; font-size: 14px; color: var(--slate); line-height: 1.5; }
.mkt-note-inner > i { color: var(--blue); font-size: 15px; }
.mkt-note-inner strong { color: var(--ink); font-weight: 700; }
.mkt-note-inner a { color: var(--blue); font-weight: 700; text-decoration: none; white-space: nowrap; }
.mkt-note-inner a:hover { text-decoration: underline; }

/* Universal CTA (.mcta-*) lives in mani-colors-ltr.css — single source. */

/* ── Shared payment methods (fragments/shared/_payment_methods.html) ──
   Three variants off one component: 'section' (default), 'cards' (no heading),
   'strip' (one line). All tokenised; RTL handled by logical properties so no
   [dir] overrides are needed. */
.pay-band { padding: var(--sec-y) 24px; background: var(--snow); }
.pay-band--bare { padding: 0; background: transparent; }
.pay-mx { max-width: 1180px; margin: 0 auto; text-align: center; }
.pay-h2 { font-size: 28px; font-weight: 800; color: var(--ink); margin: 0 0 10px; }
.pay-sub { font-size: 16px; font-weight: 600; color: var(--slate); margin: 0 0 28px; }

.pay-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.pay-item { display: flex; align-items: center; gap: 12px; text-align: start;
    background: var(--white); border: 2px solid var(--mist); border-radius: var(--r-xl);
    padding: 16px 18px; transition: border-color .15s ease; }
.pay-item:hover { border-color: var(--blue); }
.pay-ico { flex: 0 0 auto; width: 40px; height: 40px; border-radius: var(--r-round);
    display: flex; align-items: center; justify-content: center;
    background: var(--snow); color: var(--blue); font-size: 17px; }
.pay-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.pay-name { display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
    font-size: 15px; font-weight: 700; color: var(--ink); }
.pay-note { font-size: 13px; font-weight: 600; color: var(--slate); }

/* Not-live rails read as clearly unavailable — muted, no hover affordance. */
.pay-item--soon { background: var(--snow); border-style: dashed; }
.pay-item--soon:hover { border-color: var(--mist); }
.pay-item--soon .pay-ico { background: var(--white); color: var(--slate); }
.pay-item--soon .pay-name { color: var(--slate); }
.pay-badge { font-size: 11px; font-weight: 800; letter-spacing: .3px;
    padding: 2px 8px; border-radius: 100px; background: var(--mist); color: var(--slate); }

.pay-foot, .pay-strip { display: flex; align-items: center; justify-content: center;
    gap: 8px; flex-wrap: wrap; text-align: center;
    font-size: 14px; font-weight: 600; line-height: 1.7; color: var(--slate); }
.pay-foot { margin: 22px 0 0; }
.pay-strip { margin: 22px auto 0; max-width: 760px; }
.pay-foot i, .pay-strip i { color: var(--blue); font-size: 13px; }

@media (max-width: 600px) {
    .pay-h2 { font-size: 23px; }
    .pay-grid { grid-template-columns: 1fr; }
}


/* ── 'local' variant — "pay in YOUR currency" ──
   Two rails inside one bordered card: the promise on the reading edge, the payment
   methods stacked beside it. Deliberately NOT a centred 4-across grid — that left the
   'soon' item orphaned on its own row and produced a tall, empty-feeling band. */
.pay-local { padding: var(--sec-y) 24px; background: var(--snow); }
.pay-local-card {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
    align-items: center;
    text-align: start;
    background: var(--white);
    border: 2px solid var(--mist);
    border-radius: var(--r-xl);
    padding: 40px;
}
.pay-local-h2 { font-size: 34px; font-weight: 800; line-height: 1.28; color: var(--ink); margin: 10px 0 12px; }
.pay-local-h2 em { font-style: normal; color: var(--blue); }
.pay-local-sub { font-size: 16px; font-weight: 600; line-height: 1.75; color: var(--slate); margin: 0; }

.pay-cur-chip { display: inline-flex; align-items: center; gap: 9px; margin-block-start: 22px;
    padding: 9px 16px; border-radius: var(--r-round);
    background: var(--snow); border: 2px solid var(--mist); }
.pay-cur-flag { font-size: 20px; line-height: 1; }
.pay-cur-code { font-size: 14px; font-weight: 800; color: var(--ink); letter-spacing: .4px; }
.pay-cur-name { font-size: 13px; font-weight: 600; color: var(--slate); }

/* Methods as one stacked list — equal rows, icons on a single optical axis. */
.pay-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.pay-row { display: flex; align-items: center; gap: 13px;
    background: var(--snow); border: 2px solid transparent; border-radius: var(--r-l);
    padding: 13px 16px; transition: border-color .15s ease, background .15s ease; }
.pay-row:hover { background: var(--white); border-color: var(--mist); }
.pay-row .pay-body { flex: 1 1 auto; }
.pay-row .pay-name { font-size: 15px; font-weight: 700; color: var(--ink); }
.pay-row .pay-note { font-size: 13px; font-weight: 600; color: var(--slate); }

/* Not-live rails read as unavailable: dashed, muted, badge pinned to the end so it
   can never push the label out of alignment with the rows above it. */
.pay-row--soon { background: transparent; border-style: dashed; border-color: var(--mist); }
.pay-row--soon:hover { background: transparent; border-color: var(--mist); }
.pay-row--soon .pay-ico { background: var(--snow); color: var(--slate); }
.pay-row--soon .pay-name { color: var(--slate); }
.pay-row .pay-badge { flex: 0 0 auto; margin-inline-start: auto; }

.pay-local .pay-foot { justify-content: flex-start; margin: 16px 0 0; text-align: start; }

@media (max-width: 900px) {
    .pay-local-card { grid-template-columns: 1fr; gap: 30px; padding: 32px 24px; }
}
@media (max-width: 600px) {
    .pay-local-h2 { font-size: 26px; }
    .pay-local-sub { font-size: 15px; }
    .pay-local-card { padding: 26px 18px; }
}
