/* =====================================================================
   ABS VENDOR — Landing Page v2
   Editorial Fintech aesthetic · Bricolage Grotesque × Plus Jakarta Sans
   Royal blue brand (#1D4ED8) · warm cream paper (#FFFBF5)
   ===================================================================== */

/* --------------------------------------------------------------------
   0. Design tokens
   -------------------------------------------------------------------- */
:root {
    /* Base surfaces */
    --lp-paper:    #FFFBF5;
    --lp-paper-2:  #FAF3E7;
    --lp-surface:  #FFFFFF;
    --lp-ink:      #0A1124;
    --lp-ink-2:    #1B2437;
    --lp-muted:    #6B7388;
    --lp-muted-2:  #94A0B4;
    --lp-line:     #ECE6DB;
    --lp-line-2:   #E0D9C8;

    /* Brand */
    --lp-brand:      #1D4ED8;
    --lp-brand-600:  #1E40AF;
    --lp-brand-700:  #1E3A8A;
    --lp-brand-900:  #0A1A5E;
    --lp-brand-50:   #EEF4FF;
    --lp-brand-100:  #DBE8FF;

    /* Accents */
    --lp-gold:     #F59E0B;
    --lp-gold-2:   #D97706;
    --lp-gold-50:  #FEF3C7;
    --lp-violet:   #7C3AED;
    --lp-violet-50:#EDE9FE;
    --lp-emerald:  #10B981;
    --lp-emerald-50:#D1FAE5;
    --lp-coral:    #FB7185;

    /* Network colours */
    --lp-mtn:       #FFC400;
    --lp-glo:       #5FBE2C;
    --lp-airtel:    #E40000;
    --lp-9mobile:   #00A859;
    --lp-broadband: #0891B2;

    /* Type */
    --lp-font-display: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --lp-font-body:    "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    /* Radii */
    --lp-r-sm: 10px;
    --lp-r-md: 14px;
    --lp-r-lg: 20px;
    --lp-r-xl: 28px;
    --lp-r-2xl: 36px;

    /* Shadows */
    --lp-sh-1: 0 1px 2px rgba(10,17,36,.04), 0 2px 6px rgba(10,17,36,.04);
    --lp-sh-2: 0 2px 8px rgba(10,17,36,.05), 0 12px 32px rgba(10,17,36,.07);
    --lp-sh-3: 0 8px 22px rgba(10,17,36,.08), 0 24px 60px rgba(10,17,36,.10);
    --lp-sh-brand: 0 10px 30px rgba(29,78,216,.22), 0 2px 6px rgba(29,78,216,.14);

    /* Motion */
    --lp-ease: cubic-bezier(.2,.7,.2,1);
}

/* --------------------------------------------------------------------
   1. Base / scope
   style.css uses `!important` on body font + h1/h2/h3 color (dark).
   Dark headings are our default intent anyway; we only fight !important
   where we need WHITE (those class overrides carry !important too).
   -------------------------------------------------------------------- */
body.lp-body {
    background: var(--lp-paper);
    color: var(--lp-ink);
    font-family: var(--lp-font-body) !important;
    font-weight: 400;
    font-feature-settings: "ss01", "cv11";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* No overflow rule here — any overflow on body/html breaks
       `position: sticky` on descendants. Hero + other sections clip
       their own decorative elements locally via .lp-hero { overflow: hidden } etc. */
}

.lp, .lp * { box-sizing: border-box; }

.lp a { color: inherit; text-decoration: none; }

.lp img { max-width: 100%; display: block; }

.lp-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
}

/* Hide default hero-wave leftover if still present */
.lp .hero-wave { display: none; }

/* --------------------------------------------------------------------
   2. Typography primitives
   -------------------------------------------------------------------- */
.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 10px;
    border: 1px solid var(--lp-line-2);
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    backdrop-filter: blur(6px);
    font-family: var(--lp-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-ink-2);
}
.lp-eyebrow__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--lp-brand);
    box-shadow: 0 0 0 3px rgba(29,78,216,.15);
}
.lp-eyebrow--light {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.22);
    color: rgba(255,255,255,.85);
}
.lp-eyebrow--light .lp-eyebrow__dot {
    background: var(--lp-gold);
    box-shadow: 0 0 0 3px rgba(245,158,11,.3);
}

.lp-section-title {
    font-family: var(--lp-font-display);
    font-weight: 500;
    font-size: clamp(30px, 5vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--lp-ink);
    margin: 14px 0 0;
}
.lp-section-title em {
    font-style: normal;
    font-weight: 600;
    background: linear-gradient(120deg, var(--lp-brand) 0%, var(--lp-violet) 60%, var(--lp-gold) 120%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    padding-right: 2px;
}
.lp-section-title--light {
    color: #fff !important;
}
.lp-section-title--light em {
    font-style: normal;
    font-weight: 600;
    background: linear-gradient(120deg, #FDE68A 0%, #FBBF24 60%, #FDBA74 120%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.lp-section-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: end;
    margin-bottom: clamp(32px, 5vw, 56px);
}
.lp-section-head__right {
    color: var(--lp-muted);
    font-size: 15px;
    line-height: 1.6;
    max-width: 46ch;
    margin: 0;
}
@media (min-width: 900px) {
    .lp-section-head {
        grid-template-columns: 1.1fr 1fr;
        gap: 48px;
    }
    .lp-section-head__right {
        justify-self: end;
        text-align: left;
    }
}

/* --------------------------------------------------------------------
   3. Buttons
   Note: .lp-body prefix boosts specificity above `.lp a { color: inherit }`
   so button text colors aren't swallowed by the anchor reset.
   -------------------------------------------------------------------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: var(--lp-font-body);
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .35s var(--lp-ease),
                box-shadow .35s var(--lp-ease),
                background-color .3s var(--lp-ease),
                color .3s var(--lp-ease);
    white-space: nowrap;
}
.lp-btn i { font-size: 17px; }

/* Primary — the logo brand blue */
.lp-body .lp-btn--primary {
    background: var(--lp-brand);
    color: #fff;
    border-color: var(--lp-brand);
    box-shadow: 0 1px 0 rgba(255,255,255,.14) inset,
                0 10px 26px rgba(29,78,216,.28);
}
.lp-body .lp-btn--primary:hover {
    transform: translateY(-1px);
    background: var(--lp-brand-700);
    border-color: var(--lp-brand-700);
    color: #fff;
    box-shadow: 0 14px 34px rgba(29,78,216,.38);
}

/* Ghost — clear bg, ink text */
.lp-body .lp-btn--ghost {
    background: transparent;
    color: var(--lp-ink);
    border-color: var(--lp-line-2);
}
.lp-body .lp-btn--ghost:hover {
    background: rgba(29,78,216,.06);
    color: var(--lp-brand);
    border-color: var(--lp-brand-100);
}

.lp-btn--sm { padding: 10px 16px; font-size: 13px; }

/* On-dark variants (used in the final CTA card) */
.lp-body .lp-btn--white {
    background: #fff;
    color: var(--lp-ink);
    border-color: #fff;
}
.lp-body .lp-btn--white:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
    color: var(--lp-brand);
}
.lp-body .lp-btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.45);
}
.lp-body .lp-btn--outline-white:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
    border-color: rgba(255,255,255,.65);
}

/* --------------------------------------------------------------------
   4. HERO
   -------------------------------------------------------------------- */
.lp-hero {
    position: relative;
    padding: clamp(24px, 5vw, 56px) 0 clamp(40px, 6vw, 80px);
    overflow: hidden;
    --px: 0; --py: 0;
}
.lp-hero__bg {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
}
.lp-hero__mesh {
    position: absolute; inset: -10% -5% 10% -5%;
    background:
      radial-gradient(ellipse 70% 55% at 8% 0%,   rgba(124,58,237,.14), transparent 60%),
      radial-gradient(ellipse 55% 45% at 90% 10%, rgba(29,78,216,.14),  transparent 60%),
      radial-gradient(ellipse 60% 50% at 60% 100%, rgba(245,158,11,.10), transparent 60%);
    filter: saturate(1.05);
}
.lp-hero__grain {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(rgba(10,17,36,.05) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: .35;
    mix-blend-mode: multiply;
}

.lp-hero__inner { position: relative; z-index: 1; }

.lp-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
}
@media (min-width: 992px) {
    .lp-hero__grid {
        grid-template-columns: 1.05fr .95fr;
        gap: 64px;
    }
}

.lp-hero__copy { max-width: 620px; }

.lp-hero__title {
    font-family: var(--lp-font-display);
    font-weight: 500;
    font-size: clamp(40px, 8.4vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    margin: 18px 0 18px;
    color: var(--lp-ink);
}
.lp-hero__accent {
    font-style: normal;
    font-weight: 700;
    background: linear-gradient(105deg, var(--lp-brand) 0%, var(--lp-violet) 55%, var(--lp-gold) 110%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}
.lp-hero__sub {
    font-size: clamp(15px, 1.6vw, 17.5px);
    line-height: 1.55;
    color: var(--lp-muted);
    max-width: 52ch;
    margin: 0 0 28px;
}
.lp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: clamp(36px, 5vw, 52px);
}

.lp-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(10px, 2vw, 24px);
    padding-top: 22px;
    border-top: 1px dashed var(--lp-line-2);
}
.lp-stat__num {
    font-family: var(--lp-font-display);
    font-weight: 500;
    font-size: clamp(24px, 3.6vw, 40px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--lp-ink);
    font-variant-numeric: tabular-nums;
}
.lp-stat__num span {
    color: var(--lp-brand);
    margin-left: 2px;
}
.lp-stat__label {
    margin-top: 6px;
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-muted);
    font-weight: 600;
}

/* — Hero art (receipt card + floating chips) — */
.lp-hero__art {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate3d(calc(var(--px) * -10px), calc(var(--py) * -6px), 0);
    transition: transform .6s var(--lp-ease);
}
@media (max-width: 991px) {
    .lp-hero__art { min-height: 380px; }
}
@media (max-width: 520px) {
    .lp-hero__art { min-height: 340px; }
}

.lp-receipt {
    position: relative;
    z-index: 3;
    width: min(420px, 100%);
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-r-xl);
    padding: 22px;
    box-shadow: var(--lp-sh-3);
    transform: rotate(-2.5deg);
    transform-origin: center;
    transition: transform .6s var(--lp-ease);
}
.lp-hero:hover .lp-receipt { transform: rotate(-1.8deg) translateY(-2px); }

.lp-receipt__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--lp-line-2);
}
.lp-receipt__brand {
    font-family: var(--lp-font-display);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--lp-ink);
}
.lp-receipt__meta {
    font-size: 12px;
    color: var(--lp-muted);
    margin-top: 2px;
}
.lp-receipt__badge {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--lp-emerald-50);
    color: #0b6b42;
    border: 1px solid rgba(16,185,129,.25);
}
.lp-receipt__body { display: flex; flex-direction: column; gap: 14px; }
.lp-receipt__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}
.lp-receipt__icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: grid; place-items: center;
    font-size: 18px;
}
.lp-receipt__icon--blue {
    background: var(--lp-brand-50);
    color: var(--lp-brand);
}
.lp-receipt__icon--gold {
    background: var(--lp-gold-50);
    color: var(--lp-gold-2);
}
.lp-receipt__icon--teal {
    background: #CFFAFE;
    color: var(--lp-broadband);
}
.lp-receipt__icon--violet {
    background: var(--lp-violet-50);
    color: var(--lp-violet);
}
.lp-receipt__icon--red {
    background: #FEE2E2;
    color: #DC2626;
}
.lp-receipt__icon--green {
    background: #DCFCE7;
    color: #15803D;
}
.lp-receipt__label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--lp-ink);
    letter-spacing: -0.005em;
}
.lp-receipt__time {
    font-size: 11.5px;
    color: var(--lp-muted);
    margin-top: 2px;
}
.lp-receipt__amt {
    font-family: var(--lp-font-display);
    font-weight: 500;
    font-size: 16px;
    color: var(--lp-ink);
    font-variant-numeric: tabular-nums;
}
.lp-receipt__foot {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed var(--lp-line-2);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.lp-receipt__foot span {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lp-muted);
    font-weight: 600;
}
.lp-receipt__foot strong {
    font-family: var(--lp-font-display);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--lp-ink);
    font-variant-numeric: tabular-nums;
}

/* Floating chips */
.lp-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px 9px 11px;
    border-radius: 999px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    box-shadow: var(--lp-sh-2);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--lp-ink);
    letter-spacing: -0.005em;
    animation: lp-float 6s ease-in-out infinite;
}
.lp-chip__dot {
    width: 10px; height: 10px; border-radius: 50%;
}
.lp-chip--mtn {
    top: 6%;
    left: -4%;
    animation-delay: 0s;
    transform: translate3d(calc(var(--px) * 14px), calc(var(--py) * 10px), 0);
}
.lp-chip--mtn .lp-chip__dot {
    background: var(--lp-mtn);
    box-shadow: 0 0 0 3px rgba(255,196,0,.25);
}
.lp-chip--glo {
    top: 44%;
    right: -6%;
    animation-delay: 1.8s;
    transform: translate3d(calc(var(--px) * -16px), calc(var(--py) * 8px), 0);
}
.lp-chip--glo .lp-chip__dot {
    background: var(--lp-glo);
    box-shadow: 0 0 0 3px rgba(95,190,44,.25);
}
.lp-chip--broadband {
    bottom: 6%;
    left: 6%;
    animation-delay: 3.4s;
    transform: translate3d(calc(var(--px) * 12px), calc(var(--py) * -10px), 0);
}
.lp-chip--broadband .lp-chip__dot {
    background: var(--lp-broadband);
    box-shadow: 0 0 0 3px rgba(8,145,178,.25);
}

@keyframes lp-float {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -8px; }
}

/* Decorative blurs */
.lp-hero__blur {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .45;
    pointer-events: none;
}
.lp-hero__blur--a {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(124,58,237,.45), transparent 70%);
    top: -10%; left: -10%;
}
.lp-hero__blur--b {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,158,11,.5), transparent 70%);
    bottom: -10%; right: -10%;
}

@media (max-width: 520px) {
    .lp-receipt { padding: 18px; transform: rotate(-1.5deg); }
    /* Chips peek AROUND the receipt, not over its content rows */
    .lp-chip { font-size: 10.5px; padding: 6px 10px 6px 8px; }
    .lp-chip--mtn {
        top: -6px; left: 8px;
        animation-duration: 5s;
    }
    .lp-chip--glo {
        top: auto; bottom: -8px; right: 10px;
        left: auto;
        animation-duration: 5.5s;
    }
    /* Broadband chip drops on mobile — too crowded otherwise */
    .lp-chip--broadband { display: none; }
}

/* ====================================================================
   HERO — premium layered-card composition (v3)
   A focused payment-confirmation card in front, a "this month"
   analytics card peeking behind, plus 2 refined floating chips.
   Professional fintech vibe; no clutter, generous whitespace.
   ==================================================================== */

/* — Main payment confirmation card — */
.lp-paycard {
    position: relative;
    z-index: 3;
    width: min(400px, 88%);
    margin: 0 auto;
    padding: 26px 26px 20px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: 24px;
    box-shadow:
        0 1px 0 rgba(255,255,255,.6) inset,
        0 24px 48px -20px rgba(10,17,36,.22),
        0 60px 120px -40px rgba(29,78,216,.18);
    transform: rotate(-1.5deg);
    transform-origin: center;
    transition: transform .7s var(--lp-ease);
}
.lp-hero:hover .lp-paycard {
    transform: rotate(-0.8deg) translateY(-2px);
}

.lp-paycard__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.lp-paycard__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.lp-paycard__mark {
    display: grid;
    place-items: center;
    width: 34px; height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--lp-brand) 0%, var(--lp-brand-700) 100%);
    color: #fff;
    font-family: var(--lp-font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 12px rgba(29,78,216,.3);
}
.lp-paycard__name {
    font-family: var(--lp-font-display);
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: -0.015em;
    color: var(--lp-ink);
}
.lp-paycard__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px 5px 7px;
    background: #ECFDF5;
    color: #047857;
    border: 1px solid rgba(16,185,129,.25);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.lp-paycard__badge i { font-size: 13px; color: #059669; }

.lp-paycard__badge--hot {
    background: linear-gradient(135deg, #FEF3C7 0%, #FECACA 100%);
    color: #9A3412;
    border-color: rgba(234,88,12,.22);
}
.lp-paycard__badge--hot i { color: #EA580C; font-size: 12px; }

.lp-paycard__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lp-muted);
    margin-bottom: 14px;
}

/* ─── Best-sellers plan list ─── */
.lp-planlist {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.lp-planrow {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--lp-line-2);
}
.lp-planrow:last-child { border-bottom: 0; }

/* Brand logo container — holds a real network SVG/PNG */
.lp-planrow__logo {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--lp-line);
    overflow: hidden;
    padding: 4px;
}
.lp-planrow__logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
/* Per-brand accent (subtle tint background behind the logo) */
.lp-planrow__logo--mtn    { background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%); border-color: rgba(245,158,11,.25); }
.lp-planrow__logo--glo    { background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%); border-color: rgba(22,163,74,.25); }
.lp-planrow__logo--airtel { background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%); border-color: rgba(228,0,0,.2); }
.lp-planrow__logo--nine   { background: linear-gradient(135deg, #F0FDF4 0%, #D1FAE5 100%); border-color: rgba(0,168,89,.22); }

/* Initial-letter FALLBACK — only shown if the <img> fails to load
   (onerror inline handler replaces the img with this span). */
.lp-planrow__logo-fb {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    font-family: var(--lp-font-display);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}
.lp-planrow__logo-fb--mtn    { background: linear-gradient(135deg, #FFC400 0%, #F59E0B 100%); color: #0A1124; }
.lp-planrow__logo-fb--glo    { background: linear-gradient(135deg, #5FBE2C 0%, #15803D 100%); }
.lp-planrow__logo-fb--airtel { background: linear-gradient(135deg, #E40000 0%, #B91C1C 100%); }
.lp-planrow__logo-fb--nine   { background: linear-gradient(135deg, #00A859 0%, #047857 100%); }

.lp-planrow__info { min-width: 0; }
.lp-planrow__title {
    font-family: var(--lp-font-body);
    font-weight: 600;
    font-size: 13.5px;
    color: var(--lp-ink);
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.lp-planrow__sub {
    font-size: 11px;
    color: var(--lp-muted);
    margin-top: 3px;
    letter-spacing: 0.01em;
}
.lp-planrow__price {
    font-family: var(--lp-font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--lp-ink);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.lp-paycard__amt-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
}
.lp-paycard__currency {
    font-family: var(--lp-font-display);
    font-weight: 500;
    font-size: 22px;
    color: var(--lp-muted);
    letter-spacing: -0.02em;
}
.lp-paycard__amt {
    font-family: var(--lp-font-display);
    font-weight: 700;
    font-size: clamp(34px, 4vw, 44px);
    letter-spacing: -0.04em;
    color: var(--lp-ink);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.lp-paycard__amt small {
    font-size: 0.56em;
    font-weight: 500;
    color: var(--lp-muted);
    letter-spacing: -0.02em;
}

.lp-paycard__meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
    border-top: 1px dashed var(--lp-line-2);
    border-bottom: 1px dashed var(--lp-line-2);
    margin-bottom: 14px;
}
.lp-paycard__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.lp-paycard__k {
    font-size: 11.5px;
    color: var(--lp-muted);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.lp-paycard__v {
    font-size: 13px;
    color: var(--lp-ink);
    font-weight: 600;
    letter-spacing: -0.005em;
    text-align: right;
}
.lp-paycard__v--mono {
    font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 12.5px;
    letter-spacing: 0;
}

.lp-paycard__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.lp-paycard__foot-l {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--lp-muted);
    font-weight: 600;
}
.lp-paycard__foot-l i {
    color: var(--lp-brand);
    font-size: 13px;
}
.lp-paycard__foot-r {
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 10.5px;
    color: var(--lp-muted-2);
    letter-spacing: 0.04em;
}

/* — Behind: This-month analytics peek card — */
.lp-statcard {
    position: absolute;
    z-index: 2;
    top: 2%;
    right: -4%;
    width: min(220px, 42%);
    padding: 14px 16px 12px;
    background: linear-gradient(160deg, #0A1A5E 0%, #1E3A8A 100%);
    color: #fff;
    border-radius: 18px;
    box-shadow:
        0 1px 0 rgba(255,255,255,.08) inset,
        0 20px 40px -16px rgba(10,17,36,.35);
    transform: rotate(4deg);
    transform-origin: top right;
    animation: lp-float 7s ease-in-out infinite;
    animation-delay: 0.4s;
    transform: rotate(4deg) translate3d(calc(var(--px) * 8px), calc(var(--py) * -6px), 0);
}
.lp-statcard__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.lp-statcard__label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
}
.lp-statcard__label i {
    color: rgba(255,255,255,.4);
    font-size: 12px;
}
.lp-statcard__delta {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    font-size: 10.5px;
    font-weight: 700;
    color: #4ADE80;
    background: rgba(74,222,128,.14);
    padding: 2px 7px 2px 4px;
    border-radius: 999px;
}
.lp-statcard__delta i { font-size: 14px; }
.lp-statcard__amt {
    font-family: var(--lp-font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.lp-statcard__sub {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    margin-top: 4px;
    letter-spacing: -0.005em;
}
.lp-sparkbars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 34px;
    margin-top: 12px;
}
.lp-sparkbars span {
    flex: 1;
    height: var(--h);
    min-height: 4px;
    border-radius: 3px;
    background: linear-gradient(180deg, #60A5FA 0%, rgba(96,165,250,.3) 100%);
    transition: height .45s var(--lp-ease);
}
.lp-sparkbars span:last-child {
    background: linear-gradient(180deg, var(--lp-gold) 0%, rgba(245,158,11,.4) 100%);
}

/* — Floating networks pill (top-left) — */
.lp-chip--networks {
    top: 6%;
    left: -4%;
    bottom: auto;
    right: auto;
    animation-delay: 0s;
    background: var(--lp-surface);
    font-weight: 600;
    padding: 8px 14px 8px 10px;
}
.lp-chip--networks .lp-chip__dots {
    display: inline-flex;
    align-items: center;
    margin-right: 2px;
}
.lp-chip--networks .lp-chip__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c);
    border: 1.5px solid #fff;
    margin-left: -4px;
    box-shadow: 0 1px 2px rgba(10,17,36,.15);
}
.lp-chip--networks .lp-chip__dots span:first-child { margin-left: 0; }

/* — Floating cashback pill (bottom-right) — */
.lp-chip--cashback {
    position: absolute;
    z-index: 4;
    bottom: 4%;
    right: -2%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px 8px 10px;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 1px solid rgba(245,158,11,.28);
    border-radius: 999px;
    box-shadow: var(--lp-sh-2);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--lp-gold-2);
    letter-spacing: -0.005em;
    animation: lp-float 7s ease-in-out infinite;
    animation-delay: 2.8s;
    transform: translate3d(calc(var(--px) * 12px), calc(var(--py) * -10px), 0);
}
.lp-chip--cashback i {
    color: var(--lp-gold-2);
    font-size: 14px;
}

/* Tablet + mobile adaptation */
@media (max-width: 991px) {
    .lp-paycard { width: min(380px, 92%); padding: 22px 22px 18px; }
    .lp-statcard { width: min(200px, 46%); padding: 12px 14px 10px; }
}
@media (max-width: 700px) {
    .lp-statcard { top: -12px; right: -2%; }
    .lp-chip--networks { top: -8px; left: 2%; }
    .lp-chip--cashback { bottom: -8px; right: 2%; }
}
@media (max-width: 520px) {
    .lp-paycard {
        padding: 20px;
        border-radius: 20px;
        transform: rotate(-1deg);
    }
    .lp-paycard__top { margin-bottom: 16px; }
    .lp-paycard__amt { font-size: 30px; }
    .lp-paycard__currency { font-size: 19px; }
    .lp-statcard { display: none; }   /* too crowded on tiny screens */
    .lp-chip--networks { font-size: 10.5px; padding: 6px 12px 6px 8px; }
    .lp-chip--cashback { font-size: 10.5px; padding: 6px 12px 6px 8px; }
}

/* --------------------------------------------------------------------
   5. TICKER
   -------------------------------------------------------------------- */
.lp-ticker {
    position: relative;
    border-top: 1px solid var(--lp-line);
    border-bottom: 1px solid var(--lp-line);
    background: var(--lp-paper-2);
    padding: 18px 0;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.lp-ticker__track {
    display: flex;
    width: max-content;
    animation: lp-ticker-scroll 40s linear infinite;
}
.lp-ticker__set {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
    flex-shrink: 0;
}
.lp-ticker__item {
    font-family: var(--lp-font-display);
    font-weight: 500;
    font-size: clamp(18px, 2.4vw, 26px);
    letter-spacing: -0.02em;
    color: var(--lp-ink-2);
}
.lp-ticker__sep {
    color: var(--lp-brand);
    font-size: 14px;
}
@keyframes lp-ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .lp-ticker__track { animation: none; }
}

/* --------------------------------------------------------------------
   6. SERVICES (bento)
   -------------------------------------------------------------------- */
.lp-services {
    padding: clamp(60px, 8vw, 110px) 0;
}

.lp-bento {
    --cols: 12;
    display: grid;
    grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 14px;
}

.lp-card {
    --card-tone: var(--lp-brand);
    position: relative;
    grid-column: span 6;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-r-xl);
    padding: clamp(20px, 2.4vw, 28px);
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform .45s var(--lp-ease),
                box-shadow .45s var(--lp-ease),
                border-color .3s var(--lp-ease);
    isolation: isolate;
}
.lp-card::after {
    content: "";
    position: absolute; inset: auto -20% -80% auto;
    width: 200px; height: 200px;
    background: radial-gradient(circle, color-mix(in srgb, var(--card-tone) 28%, transparent), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: .0;
    transition: opacity .45s var(--lp-ease);
    z-index: 0;
}
.lp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-sh-2);
    border-color: color-mix(in srgb, var(--card-tone) 35%, var(--lp-line));
}
.lp-card:hover::after { opacity: .7; }

.lp-card > * { position: relative; z-index: 1; }

.lp-card__chip {
    width: 46px; height: 46px;
    border-radius: 14px;
    display: grid; place-items: center;
    background: color-mix(in srgb, var(--card-tone) 14%, transparent);
    color: var(--card-tone);
    font-size: 22px;
    margin-bottom: 20px;
    transition: transform .45s var(--lp-ease);
}
.lp-card:hover .lp-card__chip {
    transform: scale(1.06) rotate(-4deg);
}
.lp-card__title {
    font-family: var(--lp-font-display);
    font-weight: 500;
    font-size: clamp(19px, 2vw, 23px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--lp-ink);
    margin: 0 0 6px;
}
.lp-card__desc {
    color: var(--lp-muted);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0 0 14px;
}
.lp-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--card-tone);
    letter-spacing: -0.005em;
}
.lp-card__link i { transition: transform .3s var(--lp-ease); }
.lp-card:hover .lp-card__link i { transform: translateX(3px); }

/* Feature card (wider, richer) */
.lp-card--feature {
    grid-column: span 12;
    min-height: 230px;
    background:
      linear-gradient(135deg, color-mix(in srgb, var(--card-tone) 8%, transparent), transparent 60%),
      var(--lp-surface);
}
.lp-card--feature .lp-card__title { font-size: clamp(24px, 3vw, 32px); }
.lp-card--feature .lp-card__desc  { font-size: 14.5px; max-width: 46ch; }

/* Dark card */
.lp-card--dark {
    background:
      radial-gradient(ellipse at top right, color-mix(in srgb, var(--card-tone) 40%, transparent), transparent 60%),
      linear-gradient(135deg, var(--lp-ink) 0%, var(--lp-ink-2) 100%);
    border-color: rgba(255,255,255,.08);
    color: #fff;
}
.lp-card--dark .lp-card__title { color: #fff !important; }
.lp-card--dark .lp-card__desc  { color: rgba(255,255,255,.7); }
.lp-card--dark .lp-card__chip {
    background: rgba(255,255,255,.1);
    color: var(--card-tone);
}
.lp-card--dark .lp-card__link { color: var(--card-tone); }
.lp-card--dark:hover {
    border-color: rgba(255,255,255,.16);
}

.lp-card--wide { grid-column: span 6; min-height: 200px; }

/* Tablet 700-991: feature goes full, wide goes full for visual rhythm */
@media (min-width: 700px) and (max-width: 991px) {
    .lp-card--feature { grid-column: span 12; }
    .lp-card--wide { grid-column: span 12; }
}

/* Desktop 992+: 4-up grid with feature + wide + paired dark row */
@media (min-width: 992px) {
    .lp-card { grid-column: span 3; }
    .lp-card--feature { grid-column: span 6; }
    .lp-card--wide { grid-column: span 6; }
    /* last row balances as 6 + 6 (Education + Rewards) */
    .lp-card:nth-child(7) { grid-column: span 6; }
    .lp-card--dark { grid-column: span 6; }
}

/* --------------------------------------------------------------------
   7. WHY CHOOSE US
   -------------------------------------------------------------------- */
.lp-why {
    padding: clamp(60px, 8vw, 110px) 0;
    border-top: 1px solid var(--lp-line);
    background:
      linear-gradient(180deg, var(--lp-paper-2) 0%, var(--lp-paper) 100%);
}

.lp-why__list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--lp-line-2);
}
.lp-why__row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(16px, 4vw, 40px);
    align-items: start;
    padding: clamp(22px, 4vw, 36px) 0;
    border-bottom: 1px solid var(--lp-line-2);
    transition: background-color .3s var(--lp-ease);
}
.lp-why__row:hover {
    background: rgba(29,78,216,.03);
}

.lp-why__num {
    font-family: var(--lp-font-display);
    font-weight: 300;
    font-style: normal;
    font-size: clamp(40px, 7vw, 80px);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--lp-brand);
    min-width: clamp(70px, 10vw, 130px);
    font-variant-numeric: tabular-nums;
}

.lp-why__body {
    padding-top: clamp(10px, 2vw, 24px);
}
.lp-why__title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--lp-font-display);
    font-weight: 500;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--lp-ink);
    margin: 0 0 8px;
}
.lp-why__tag {
    display: grid; place-items: center;
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--lp-brand-50);
    color: var(--lp-brand);
    font-size: 15px;
}
.lp-why__body p {
    color: var(--lp-muted);
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.6;
    margin: 0;
    max-width: 62ch;
}

/* --------------------------------------------------------------------
   8. APP DOWNLOAD
   -------------------------------------------------------------------- */
.lp-app {
    padding: clamp(40px, 6vw, 80px) 0;
}

.lp-app__card {
    position: relative;
    background:
      radial-gradient(ellipse at 80% 120%, rgba(124,58,237,.45), transparent 60%),
      radial-gradient(ellipse at 0% 0%, rgba(29,78,216,.6), transparent 60%),
      linear-gradient(135deg, #0A1124 0%, #0B2260 55%, #1E3A8A 100%);
    border-radius: clamp(24px, 4vw, var(--lp-r-2xl));
    overflow: hidden;
    padding: clamp(36px, 5vw, 72px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    box-shadow: 0 30px 80px rgba(10,17,36,.3);
}
@media (min-width: 900px) {
    .lp-app__card { grid-template-columns: 1.1fr .9fr; }
}
.lp-app__card::before {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 4px 4px;
    pointer-events: none;
    opacity: .35;
}
.lp-app__copy { position: relative; }

.lp-app__sub {
    color: rgba(255,255,255,.7);
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.55;
    margin: 16px 0 22px;
    max-width: 48ch;
}
.lp-app__features {
    list-style: none; padding: 0; margin: 0 0 24px;
    display: flex; flex-wrap: wrap;
    gap: 10px 22px;
}
.lp-app__features li {
    display: inline-flex;
    align-items: center; gap: 8px;
    color: rgba(255,255,255,.85);
    font-size: 13.5px;
    font-weight: 500;
}
.lp-app__features i {
    color: var(--lp-gold);
    font-size: 16px;
}

.lp-app__stores {
    display: flex; flex-wrap: wrap;
    gap: 12px;
}
.lp-store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    color: #fff;
    transition: transform .3s var(--lp-ease),
                background-color .3s var(--lp-ease);
}
.lp-store:hover {
    background: rgba(255,255,255,.18);
    transform: translateY(-2px);
    color: #fff;
}
.lp-store i { font-size: 26px; }
.lp-store div { display: flex; flex-direction: column; line-height: 1; }
.lp-store span {
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin-bottom: 4px;
}
.lp-store strong {
    font-family: var(--lp-font-display);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.01em;
}

/* Phone visual */
.lp-app__visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 320px;
}
.lp-app__phone {
    position: relative;
    z-index: 2;
    width: min(280px, 85%);
    aspect-ratio: 9 / 18;
    background: linear-gradient(145deg, #1E2740, #0B1125);
    border-radius: 36px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 30px 60px rgba(0,0,0,.4);
    transform: rotate(-5deg);
}
.lp-app__phone-inner {
    width: 100%; height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
}
.lp-app__phone-inner img {
    width: 100%; height: 100%;
    /* `cover` keeps the app screenshot edge-to-edge inside the phone frame.
       object-position nudges the crop so the dashboard hero card stays in view. */
    object-fit: cover;
    object-position: center top;
    display: block;
}
.lp-app__glow {
    position: absolute;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(245,158,11,.4), transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

/* --------------------------------------------------------------------
   9. TESTIMONIALS
   -------------------------------------------------------------------- */
.lp-testimonials {
    padding: clamp(60px, 8vw, 110px) 0;
    position: relative;
}

.lp-trust {
    display: flex;
    gap: clamp(24px, 4vw, 48px);
    justify-self: end;
    align-items: center;
}
.lp-trust__num {
    font-family: var(--lp-font-display);
    font-weight: 500;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--lp-brand);
    font-variant-numeric: tabular-nums;
}
.lp-trust__label {
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-muted);
    font-weight: 600;
    margin-top: 6px;
}

.lp-quote {
    position: relative;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-r-xl);
    padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 40px) clamp(24px, 4vw, 32px);
    box-shadow: var(--lp-sh-1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.lp-quote::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--lp-brand) 0%, var(--lp-violet) 100%);
    opacity: 0;
    transition: opacity .3s var(--lp-ease);
}
.lp-quote:hover::before { opacity: 1; }

.lp-quote__mark {
    font-family: var(--lp-font-display);
    font-style: normal;
    font-weight: 700;
    font-size: 96px;
    line-height: 0.6;
    color: var(--lp-brand);
    opacity: .18;
    margin-bottom: 8px;
}
.lp-quote__text {
    font-family: var(--lp-font-display);
    font-weight: 400;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.45;
    letter-spacing: -0.015em;
    color: var(--lp-ink);
    margin: 0 0 28px;
}
.lp-quote__foot {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--lp-line);
}
.lp-quote__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--lp-brand-50);
}
.lp-quote__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-ink);
}
.lp-quote__stars {
    display: flex; gap: 2px;
    color: var(--lp-gold);
    font-size: 12.5px;
    margin-top: 2px;
}

.lp-swiper-pagination {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 8px;
    position: static !important;
}
.lp-swiper-pagination .swiper-pagination-bullet {
    width: 24px; height: 4px;
    border-radius: 2px;
    background: var(--lp-line-2);
    opacity: 1;
    transition: background .3s var(--lp-ease), width .3s var(--lp-ease);
}
.lp-swiper-pagination .swiper-pagination-bullet-active {
    width: 40px;
    background: var(--lp-brand);
}

/* --------------------------------------------------------------------
   10. BLOG
   -------------------------------------------------------------------- */
.lp-blog {
    padding: clamp(60px, 8vw, 110px) 0;
    border-top: 1px solid var(--lp-line);
    background: var(--lp-paper-2);
}

.lp-blog .lp-section-head {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 24px;
}

.lp-blog__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 700px) {
    .lp-blog__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .lp-blog__grid { grid-template-columns: repeat(4, 1fr); }
}

.lp-post {
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-r-lg);
    overflow: hidden;
    transition: transform .45s var(--lp-ease),
                box-shadow .45s var(--lp-ease);
    display: flex;
    flex-direction: column;
}
.lp-post:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-sh-2);
}
.lp-post__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--lp-paper-2);
}
.lp-post__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--lp-ease);
}
.lp-post:hover .lp-post__media img {
    transform: scale(1.04);
}
.lp-post__tag {
    position: absolute;
    top: 12px; left: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(6px);
    color: var(--lp-ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.lp-post__body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.lp-post__meta {
    font-size: 11.5px;
    color: var(--lp-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}
.lp-post__title {
    font-family: var(--lp-font-display);
    font-weight: 500;
    font-size: 17.5px;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--lp-ink);
    margin: 0 0 8px;
}
.lp-post__title a { color: inherit; }
.lp-post__title a:hover { color: var(--lp-brand); }
.lp-post__summary {
    color: var(--lp-muted);
    font-size: 13px;
    line-height: 1.55;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.lp-post__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--lp-brand);
    letter-spacing: -0.005em;
    margin-top: auto;
}
.lp-post__link i { transition: transform .3s var(--lp-ease); }
.lp-post__link:hover i { transform: translateX(3px); }

/* --------------------------------------------------------------------
   11. FAQ
   -------------------------------------------------------------------- */
.lp-faq {
    padding: clamp(60px, 8vw, 110px) 0;
}
.lp-faq__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 900px) {
    .lp-faq__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
        gap: clamp(48px, 6vw, 80px);
    }
}

.lp-faq__sub {
    color: var(--lp-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 14px 0 22px;
    max-width: 40ch;
}

/* Accordion overrides — kill bootstrap defaults */
.lp-accordion .lp-acc__item {
    background: transparent;
    border: 0;
    border-top: 1px solid var(--lp-line-2);
}
.lp-accordion .lp-acc__item:last-child {
    border-bottom: 1px solid var(--lp-line-2);
}
.lp-accordion .lp-acc__btn {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 22px 0 !important;
    font-family: var(--lp-font-body);
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    text-align: left;
    outline: none;
}
.lp-accordion .lp-acc__btn::after {
    display: none !important;
}
.lp-accordion .lp-acc__q {
    font-family: var(--lp-font-display);
    font-weight: 500;
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--lp-ink);
    flex: 1;
}
.lp-accordion .lp-acc__icon {
    display: grid; place-items: center;
    flex-shrink: 0;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid var(--lp-line-2);
    color: var(--lp-ink);
    font-size: 18px;
    transition: transform .3s var(--lp-ease),
                background-color .3s var(--lp-ease),
                color .3s var(--lp-ease),
                border-color .3s var(--lp-ease);
}
.lp-accordion .lp-acc__btn:not(.collapsed) .lp-acc__icon {
    transform: rotate(45deg);
    background: var(--lp-brand);
    border-color: var(--lp-brand);
    color: #fff;
}
.lp-accordion .lp-acc__btn:not(.collapsed) .lp-acc__q {
    color: var(--lp-brand);
}
.lp-accordion .lp-acc__body {
    padding: 0 0 24px !important;
    color: var(--lp-muted);
    font-size: 14.5px;
    line-height: 1.65;
    max-width: 62ch;
}
.lp-accordion .lp-acc__body p {
    margin: 0 0 10px;
}
.lp-accordion .lp-acc__body p:last-child { margin-bottom: 0; }
.lp-accordion .lp-acc__list {
    margin: 0; padding: 0 0 0 18px;
    display: flex; flex-direction: column; gap: 6px;
}
.lp-accordion .lp-acc__list strong { color: var(--lp-ink); }

/* --------------------------------------------------------------------
   12. FINAL CTA
   -------------------------------------------------------------------- */
.lp-cta {
    padding: 0 0 clamp(60px, 8vw, 110px);
}
.lp-cta__card {
    position: relative;
    background:
      radial-gradient(ellipse at 0% 0%, rgba(245,158,11,.3), transparent 55%),
      radial-gradient(ellipse at 100% 100%, rgba(124,58,237,.45), transparent 55%),
      linear-gradient(135deg, var(--lp-brand-900) 0%, var(--lp-brand-700) 100%);
    color: #fff;
    border-radius: clamp(24px, 4vw, var(--lp-r-2xl));
    padding: clamp(44px, 6vw, 88px) clamp(28px, 5vw, 72px);
    overflow: hidden;
    isolation: isolate;
}
.lp-cta__pattern {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(45deg, rgba(255,255,255,.04) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.04) 75%),
      linear-gradient(45deg, rgba(255,255,255,.04) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.04) 75%);
    background-position: 0 0, 24px 24px;
    background-size: 48px 48px;
    opacity: .4;
    z-index: 0;
}
.lp-cta__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}
.lp-cta__title {
    font-family: var(--lp-font-display);
    font-weight: 500;
    font-size: clamp(32px, 6vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #fff !important;
    margin: 18px 0 28px;
}
.lp-cta__title em {
    font-style: normal;
    font-weight: 700;
    background: linear-gradient(105deg, #FDE68A 0%, #FBBF24 60%, #FDBA74 120%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}
.lp-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* --------------------------------------------------------------------
   13. Kill legacy styles from old homepage.css if carried over
   -------------------------------------------------------------------- */
.lp .hero-section, .lp .services-section, .lp .why-choose,
.lp .testimonials-section, .lp .blog-section, .lp .faq-section,
.lp .cta-section, .lp .app-download {
    /* legacy sections removed — defensive scoping */
    display: revert;
}

/* --------------------------------------------------------------------
   14. Stagger entry animations (respects reduced motion)
   -------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
    .lp-hero__copy > * {
        opacity: 0;
        transform: translateY(14px);
        animation: lp-rise .7s var(--lp-ease) forwards;
    }
    .lp-hero__copy > *:nth-child(1) { animation-delay: .05s; }
    .lp-hero__copy > *:nth-child(2) { animation-delay: .18s; }
    .lp-hero__copy > *:nth-child(3) { animation-delay: .3s; }
    .lp-hero__copy > *:nth-child(4) { animation-delay: .42s; }
    .lp-hero__copy > *:nth-child(5) { animation-delay: .54s; }

    .lp-hero__art {
        opacity: 0;
        animation: lp-fade .9s var(--lp-ease) forwards;
        animation-delay: .3s;
    }

    @keyframes lp-rise {
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes lp-fade {
        to { opacity: 1; }
    }
}

/* --------------------------------------------------------------------
   15. Responsive polish (320 → desktop)
   -------------------------------------------------------------------- */

/* Smooth scrolling + anchor offsets */
html { scroll-behavior: smooth; }
.lp-services, .lp-why, .lp-app, .lp-testimonials,
.lp-blog, .lp-faq, .lp-cta {
    scroll-margin-top: 24px;
}

/* Prevent the rotated receipt card from getting clipped by the hero */
.lp-hero__art {
    padding: 24px 4px;
}

/* Rewards card bookends the services section on mobile (full-width) */
@media (max-width: 699.98px) {
    .lp-card--dark { grid-column: span 12; }
}

/* Tablet — tighten section-head rhythm so right intro doesn't feel stranded */
@media (max-width: 899.98px) {
    .lp-section-head { gap: 14px; }
    .lp-section-head__right { font-size: 14.5px; }
    .lp-blog .lp-section-head {
        grid-template-columns: 1fr;
    }
    .lp-blog .lp-section-head .lp-btn { justify-self: start; }
}

/* Small phones (≤520px) */
@media (max-width: 520px) {
    .lp-hero__title { letter-spacing: -0.04em; }
    .lp-hero__cta { gap: 10px; }
    .lp-hero__cta .lp-btn { flex: 1 1 100%; }
    .lp-hero__stats { gap: 10px; }
    .lp-why__num { min-width: 52px; }
    .lp-quote { padding: 28px 22px 24px; }
    .lp-quote__mark { font-size: 72px; }
    .lp-app__stores { gap: 10px; width: 100%; }
    .lp-app__stores .lp-store { flex: 1 1 auto; min-width: 150px; }
    .lp-app__features { gap: 8px 14px; }
}

/* Tiny phones (≤380px) — hold the line at 320px */
@media (max-width: 380px) {
    .lp-container { padding: 0 14px; }
    .lp-hero__title { font-size: 38px; line-height: 1; }
    .lp-hero__sub { font-size: 14.5px; }
    .lp-stat__num { font-size: 22px; }
    .lp-stat__label { font-size: 9.5px; letter-spacing: 0.1em; }
    .lp-card { padding: 18px; min-height: 170px; }
    .lp-card__chip { width: 40px; height: 40px; font-size: 19px; margin-bottom: 14px; }
    .lp-card__title { font-size: 18px; }
    .lp-card__desc { font-size: 13px; }
    .lp-why__num { font-size: 38px; min-width: 48px; }
    .lp-why__title { font-size: 20px; }
    .lp-quote__text { font-size: 16.5px; }
    .lp-app__card { padding: 32px 22px; gap: 32px; }
    .lp-app__phone { width: min(220px, 78%); }
    .lp-cta__card { padding: 40px 22px; }
    .lp-cta__title { font-size: 30px; }
    .lp-receipt { padding: 16px; }
    .lp-receipt__amt { font-size: 14px; }
    .lp-receipt__label { font-size: 12.5px; }
    .lp-chip { font-size: 11px; padding: 6px 10px 6px 8px; }
    /* brand now uses clamp() above — no breakpoint override needed */
}

/* Wide screens (≥1400px) — cap line length so the design stays considered */
@media (min-width: 1400px) {
    .lp-hero__title { font-size: 84px; }
    .lp-section-title { font-size: 52px; }
}

/* Accessibility focus rings */
.lp a:focus-visible,
.lp button:focus-visible {
    outline: 2px solid var(--lp-brand);
    outline-offset: 3px;
    border-radius: 6px;
}

/* =====================================================================
   16. HEADER + FOOTER — match the landing aesthetic
   Scoped to body.lp-body so other pages keep their existing styles.
   ===================================================================== */

/* ── Top info strip ─────────────────────────────────────────────────── */
body.lp-body .header-section {
    background: var(--lp-paper-2) !important;
    border-bottom: 1px solid var(--lp-line) !important;
    padding: 10px 0 !important;
    font-family: var(--lp-font-body) !important;
}
body.lp-body .header-section .header-info {
    gap: 8px !important;
    text-decoration: none !important;
    transition: color .25s var(--lp-ease);
}
body.lp-body .header-section .nav-text {
    color: var(--lp-muted) !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    letter-spacing: -0.005em !important;
    font-family: var(--lp-font-body) !important;
}
body.lp-body .header-section svg {
    color: var(--lp-muted-2) !important;
    font-size: 15px !important;
}
body.lp-body .header-section .header-info:hover .nav-text {
    color: var(--lp-brand) !important;
}
body.lp-body .header-section .header-info:hover svg {
    color: var(--lp-brand) !important;
}
body.lp-body .header-section .header-link svg,
body.lp-body .header-section #telegram,
body.lp-body .header-section #whatsapp {
    width: 22px !important;
    height: 22px !important;
    transition: transform .3s var(--lp-ease), opacity .3s var(--lp-ease);
    opacity: .92;
}
body.lp-body .header-section .header-link:hover svg,
body.lp-body .header-section a:hover #telegram,
body.lp-body .header-section a:hover #whatsapp {
    transform: translateY(-2px);
    opacity: 1;
}
body.lp-body .header-section .header-link {
    color: var(--lp-ink-2) !important;
}

/* ── Main nav ───────────────────────────────────────────────────────── */
body.lp-body #header.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--lp-paper) !important;
    border-bottom: 1px solid var(--lp-line) !important;
    padding: 0 !important;
    transition: background-color .3s var(--lp-ease),
                border-color .3s var(--lp-ease),
                box-shadow .3s var(--lp-ease);
}

/* Neutralise the legacy `.scroll-header` class from assets/js/main.js.
   That JS adds the class to #navbar on scroll, and style.css then applies
   `position: fixed; top:0; left:0; background:#fff;` which yanks the nav
   out of flow into a tiny white card on the left — the "grid disappears"
   bug. Kill it so our sticky #header does all the work. */
body.lp-body #header #navbar,
body.lp-body #header #navbar.scroll-header {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    width: 100% !important;
}
body.lp-body #header.header.is-scrolled {
    /* Keep the header cream so it blends with the page — add a soft
       shadow + tighter border to signal the scrolled state instead. */
    background: var(--lp-paper) !important;
    border-bottom-color: var(--lp-line-2) !important;
    box-shadow: 0 1px 0 rgba(10,17,36,.03),
                0 8px 24px rgba(10,17,36,.06);
}
body.lp-body #header .navbar {
    padding: 12px 0 !important;
    background: transparent !important;
    width: 100% !important;
}
/* style.css sets `.navbar-container { background:#fff }` — kill it so the
   header's cream bg shows through instead of a white inner card. */
body.lp-body #header .navbar-container {
    background: transparent !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    width: 100% !important;
}
/* Height stays constant on scroll — only bg / border / shadow change.
   This prevents the layout shift (jumpy feel) that happens when the
   navbar padding or logo size animates mid-scroll. */
/* Brand: responsive logo + wordmark (no <h1>, no inline styles) */
body.lp-body #header .navbar-brand {
    padding: 0 !important;
    margin-right: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: clamp(7px, 1.5vw, 10px) !important;
    line-height: 1 !important;
    text-decoration: none !important;
    color: var(--lp-ink) !important;
}
body.lp-body #header .navbar-brand img {
    height: clamp(32px, 9vw, 44px) !important;
    width: auto !important;
    border-radius: 9px;
    display: block;
    flex-shrink: 0;
}
body.lp-body #header .navbar-brand span {
    font-family: var(--lp-font-display) !important;
    font-weight: 600 !important;
    font-size: clamp(15px, 4.5vw, 20px) !important;
    letter-spacing: -0.02em !important;
    color: var(--lp-ink) !important;
    line-height: 1 !important;
    white-space: nowrap;
}

/* Desktop nav links */
body.lp-body #header .nav-link {
    font-family: var(--lp-font-body) !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    color: var(--lp-ink-2) !important;
    padding: 8px 14px !important;
    border-radius: 999px !important;
    letter-spacing: -0.005em !important;
    transition: color .25s var(--lp-ease),
                background-color .25s var(--lp-ease) !important;
}
body.lp-body #header .nav-link:hover {
    color: var(--lp-brand) !important;
    background: var(--lp-brand-50) !important;
}
body.lp-body #header .nav-link.active {
    color: var(--lp-brand) !important;
    background: var(--lp-brand-50) !important;
    font-weight: 600 !important;
}

/* Register CTA — pill button in the logo brand blue */
body.lp-body #header .nav-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 11px 22px !important;
    border-radius: 999px !important;
    background: var(--lp-brand) !important;
    color: #fff !important;
    font-family: var(--lp-font-body) !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    letter-spacing: -0.005em !important;
    text-decoration: none !important;
    border: 0 !important;
    transition: transform .3s var(--lp-ease),
                background-color .3s var(--lp-ease),
                box-shadow .3s var(--lp-ease) !important;
    box-shadow: 0 6px 18px rgba(29,78,216,.28);
}
body.lp-body #header .nav-button:hover {
    background: var(--lp-brand-700) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(29,78,216,.38);
}
body.lp-body #header .nav-button.active {
    background: var(--lp-brand-700) !important;
    color: #fff !important;
}

/* Mobile toggler */
body.lp-body #header .navbar-toggler {
    border: 1px solid var(--lp-line-2) !important;
    border-radius: 10px !important;
    padding: 6px 10px !important;
    background: #fff !important;
    box-shadow: none !important;
}
body.lp-body #header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px var(--lp-brand-100) !important;
}
body.lp-body #header .navbar-toggler-icon {
    width: 20px !important;
    height: 20px !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A1124' stroke-width='2' stroke-linecap='round'><line x1='3' y1='6' x2='21' y2='6'/><line x1='3' y1='12' x2='21' y2='12'/><line x1='3' y1='18' x2='21' y2='18'/></svg>") !important;
}


/* Collapsed menu on mobile */
@media (max-width: 991.98px) {
    body.lp-body #header .navbar-collapse {
        margin-top: 12px;
        padding: 12px;
        background: #fff;
        border: 1px solid var(--lp-line);
        border-radius: 16px;
        box-shadow: var(--lp-sh-2);
    }
    body.lp-body #header .navbar-nav {
        gap: 4px !important;
        align-items: stretch !important;
    }
    body.lp-body #header .nav-item {
        margin-bottom: 0 !important;
        width: 100%;
    }
    body.lp-body #header .nav-link {
        padding: 12px 14px !important;
        display: block !important;
    }
    /* Register CTA stretches full width inside mobile menu */
    body.lp-body #header .nav-item .nav-button {
        width: 100%;
        margin-top: 6px;
    }
}

/* ── Footer ─────────────────────────────────────────────────────────── */
body.lp-body footer.footer {
    background: var(--lp-paper-2) !important;
    border-top: 1px solid var(--lp-line) !important;
    padding: clamp(56px, 8vw, 100px) 0 clamp(40px, 5vw, 64px) !important;
    position: relative;
}
body.lp-body footer.footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lp-brand), transparent);
    opacity: .3;
}
body.lp-body .footer-div {
    font-family: var(--lp-font-body) !important;
}
body.lp-body .footer-title {
    font-family: var(--lp-font-display) !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--lp-ink-2) !important;
    margin-bottom: 20px !important;
    position: relative;
    padding-bottom: 14px;
}
body.lp-body .footer-title::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 28px; height: 2px;
    background: var(--lp-brand);
    border-radius: 2px;
}
body.lp-body .footer-item {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
body.lp-body .footer-links { padding: 0 !important; margin: 0 !important; }
body.lp-body .footer-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    color: var(--lp-muted) !important;
    font-family: var(--lp-font-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 5px 0 !important;
    text-decoration: none !important;
    transition: color .25s var(--lp-ease),
                transform .25s var(--lp-ease);
}
body.lp-body .footer-link i {
    color: var(--lp-brand) !important;
    font-size: 14px !important;
    transition: transform .25s var(--lp-ease);
}
body.lp-body .footer-link:hover {
    color: var(--lp-ink) !important;
    transform: translateX(3px);
}
body.lp-body .footer-link:hover i {
    transform: translateX(2px);
}
body.lp-body .footer-text {
    font-family: var(--lp-font-body) !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    color: var(--lp-muted) !important;
    margin-bottom: 10px !important;
}
body.lp-body .footer-text span {
    font-weight: 600 !important;
    color: var(--lp-ink-2) !important;
}
body.lp-body .footer-icon {
    display: inline-grid !important;
    place-items: center;
    width: 38px; height: 38px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--lp-line);
    color: var(--lp-ink-2) !important;
    margin-top: 12px;
    font-size: 16px;
    transition: background-color .25s var(--lp-ease),
                color .25s var(--lp-ease),
                border-color .25s var(--lp-ease),
                transform .25s var(--lp-ease);
}
body.lp-body .footer-icon:hover {
    background: var(--lp-brand) !important;
    color: #fff !important;
    border-color: var(--lp-brand) !important;
    transform: translateY(-2px);
}

/* Copyright strip */
body.lp-body section.copy {
    background: var(--lp-ink) !important;
    padding: 18px 0 !important;
}
body.lp-body .copy-text,
body.lp-body .copy .footer-text {
    font-family: var(--lp-font-body) !important;
    font-size: 12.5px !important;
    letter-spacing: 0.02em !important;
    color: rgba(255,255,255,.65) !important;
    margin: 0 !important;
}
body.lp-body .copy-text span,
body.lp-body .copy .footer-text span {
    color: #fff !important;
    font-weight: 600 !important;
}
