﻿
:root {
    --blue-900: #0b2470;
    --blue-700: #1a4dc4;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --sky-100: #dbeafe;
    --sky-50: #eaf2ff;
    --white: #ffffff;
    --soft: #f8fafc;
    --ink-900: #0a1230;
    --ink-700: #1f2a4d;
    --ink-500: #5b6585;
    --line: #e6ecf7;
    --r-sm: 10px;
    --r-md: 18px;
    --r-lg: 28px;
    --r-xl: 40px;
    --shadow-card: 0 14px 40px rgba(26,77,196,.10), 0 2px 6px rgba(11,36,112,.06);
    --shadow-soft: 0 8px 30px rgba(11,36,112,.08);
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    background: var(--white);
    color: var(--ink-900);
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 18px;
    line-height: 1.55;
    overflow-x: hidden;
    perspective: 1400px;
    perspective-origin: 50% 30%;
}

h1, h2, h3, h4 {
    font-family: 'Sora','Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
    color: var(--ink-900);
}

h1 {
    font-weight: 800;
}

h2 {
    font-weight: 700;
}

a {
    color: var(--blue-600);
}

    a:hover {
        color: var(--blue-700);
        text-decoration: none;
    }

.container-xxl {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ============ NAV ============ */
.nav-wrap {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid rgba(11,36,112,.06);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-weight: 800;
    font-family: 'Sora',sans-serif;
    color: var(--ink-900);
    font-size: 20px;
    letter-spacing: -.02em;
}

    .brand img {
        min-height: 50px;
        width: 100px;
        border-radius: 5px;
    }

.nav-links {
    display: flex;
    gap: 34px;
}

    .nav-links a {
        color: var(--ink-700);
        font-weight: 500;
        font-size: 18px;
    }

        .nav-links a:hover {
            color: var(--blue-600);
        }

.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15.5px;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    text-decoration: none;
}

.btn-primary-pill {
    background: var(--ink-900);
    color: #fff;
}

    .btn-primary-pill:hover {
        background: var(--blue-700);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 10px 26px rgba(26,77,196,.35);
    }

.btn-ghost-pill {
    background: transparent;
    color: var(--ink-900);
    border-color: var(--line);
}

    .btn-ghost-pill:hover {
        border-color: var(--blue-500);
        color: var(--blue-600);
    }

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 20px 0 60px;
    background: radial-gradient(1100px 600px at 85% -10%, #cfe0ff 0%, rgba(207,224,255,0) 60%), radial-gradient(900px 500px at -10% 30%, #e9efff 0%, rgba(233,239,255,0) 60%), linear-gradient(180deg,#f4f7ff 0%, #ffffff 75%);
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 1px;
        background: linear-gradient(90deg,transparent,var(--line),transparent);
    }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 8px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-700);
    box-shadow: var(--shadow-soft);
}

    .eyebrow .dot {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: linear-gradient(135deg,var(--blue-700),var(--blue-500));
        display: grid;
        place-items: center;
        color: #fff;
        font-size: 10px;
    }

.hero h1 {
    font-size: clamp(40px, 6.2vw, 84px);
    line-height: 1.02;
    margin: 22px 0 22px;
}

    .hero h1 .grad {
        background: linear-gradient(90deg,var(--blue-700) 0%, var(--blue-500) 60%, #6aa6ff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero p.lead {
    font-size: 19px;
    color: var(--ink-500);
    line-height: 1.55;
    margin-bottom: 34px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-meta {
    display: flex;
    gap: 28px;
    margin-top: 42px;
    flex-wrap: wrap;
}

    .hero-meta .item .v {
        font-family: 'Sora',sans-serif;
        font-weight: 700;
        font-size: 26px;
        color: var(--ink-900);
    }

    .hero-meta .item .k {
        font-size: 13px;
        color: var(--ink-500);
    }

/* Hero phone visual */
.hero-art {
    position: relative;
    min-height: 560px;
}

.phone {
    position: absolute;
    right: 0;
    top: 10px;
    width: 320px;
    aspect-ratio: 320/640;
    background: linear-gradient(160deg,#0b2470,#1a4dc4 60%, #3b82f6);
    border-radius: 42px;
    padding: 14px;
    box-shadow: 0 50px 80px -20px rgba(11,36,112,.45), 0 20px 40px rgba(26,77,196,.25);
    transform: rotate(-4deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    background: #0b1020;
    border-radius: 16px;
    z-index: 2;
}

.ps-head {
    padding: 34px 18px 12px;
    background: linear-gradient(180deg,#f4f7ff,#fff);
}

.ps-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ps-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg,#1a4dc4,#3b82f6);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.ps-name {
    font-weight: 700;
    font-size: 15px;
}

.ps-role {
    font-size: 12px;
    color: var(--ink-500);
}

.ps-qr {
    margin: 18px;
    aspect-ratio: 1;
    border-radius: 18px;
    background: linear-gradient(#fff,#fff) padding-box, linear-gradient(135deg,var(--blue-700),var(--blue-500)) border-box;
    border: 2px solid transparent;
    position: relative;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(26,77,196,.18);
}
/* faux QR grid */
.qr-grid {
    width: 78%;
    height: 78%;
    background-image: linear-gradient(#0a1230 0 0), linear-gradient(#0a1230 0 0), conic-gradient(from 0deg at 50% 50%, #0a1230 0 25%, transparent 0 50%, #0a1230 0 75%, transparent 0);
    background-size: 22% 22%, 22% 22%, 14% 14%;
    background-position: 0 0, 100% 100%, 0 0;
    background-repeat: no-repeat, no-repeat, repeat;
    border-radius: 6px;
    position: relative;
}

.qr-logo {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 24%;
    height: 24%;
    background: #fff;
    border-radius: 6px;
    display: grid;
    place-items: center;
    color: var(--blue-700);
    font-weight: 800;
    font-family: 'Sora',sans-serif;
    font-size: 14px;
    border: 2px solid #fff;
}

.ps-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 18px 18px;
}

.ps-btn {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-700);
}

    .ps-btn.primary {
        background: var(--ink-900);
        color: #fff;
        border-color: var(--ink-900);
    }

.ps-list {
    padding: 0 18px 18px;
}

.ps-list-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    font-size: 12.5px;
}

.ps-tag {
    margin-left: auto;
    font-size: 10.5px;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--sky-100);
    color: var(--blue-700);
    font-weight: 700;
}

/* floating chips */
.float-chip {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .float-chip .ic {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        display: grid;
        place-items: center;
        color: #fff;
    }

.chip-1 {
    left: -30px;
    top: 80px;
    animation: floaty 5s ease-in-out infinite;
}

.chip-2 {
    right: -10px;
    bottom: 60px;
    animation: floaty 6s ease-in-out infinite reverse;
}

.chip-3 {
    left: 30px;
    bottom: 10px;
    animation: floaty 7s ease-in-out infinite;
}

@keyframes floaty {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ============ SECTION ============ */
section {
    padding: 30px 0;
    position: relative !important;
    overflow:visible !important;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--sky-100);
    color: var(--blue-700);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-head h2 {
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: 1.05;
    margin: 0 auto 18px;
    max-width: 880px;
}

.section-head p {
    color: var(--ink-500);
    font-size: 18px;
    max-width: 680px;
    margin: 0 auto;
    margin-bottom: 25px;
}

/* ============ FEATURE GRID ============ */
.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 28px;
    height: 100%;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    position: relative;
    overflow: hidden;
}

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-card);
        border-color: #cfdcff;
    }

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg,var(--blue-700),var(--blue-500));
    display: grid;
    place-items: center;
    color: #fff;
    margin-bottom: 18px;
    box-shadow: 0 10px 22px rgba(26,77,196,.30);
}

.feature-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-card p {
    color: var(--ink-500);
    font-size: 20px;
    margin: 0;
    line-height: 1.5;
}

.feature-card .num {
    position: absolute;
    right: 18px;
    top: 14px;
    font-family: 'Sora',sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: var(--sky-100);
}

/* alternating big rows */
.big-row {
    padding: 50px 0;
}

    .big-row + .big-row {
        border-top: 1px dashed var(--line);
    }

.br-copy h3 {
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.1;
    margin-bottom: 18px;
}

.br-copy p {
    color: var(--ink-500);
    font-size: 20px;
    max-width: 520px;
    line-height: 1.5;
}

.br-bullets {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

    .br-bullets li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        font-weight: 500;
        color: var(--ink-700);
        font-size: 20px;
    }

        .br-bullets li svg {
            flex: 0 0 auto;
        }

.img-slot {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--r-lg);
    background: repeating-linear-gradient(45deg, rgba(26,77,196,.04) 0 12px, rgba(26,77,196,.08) 12px 24px), linear-gradient(180deg, #eaf2ff, #f8fafc);
    border: 1.5px dashed #b5c8f0;
    display: grid;
    place-items: center;
    color: var(--blue-700);
    font-weight: 700;
    text-align: center;
    padding: 24px;
    overflow: hidden;
}

    .img-slot .label {
        background: #fff;
        padding: 10px 16px;
        border-radius: 999px;
        box-shadow: var(--shadow-soft);
        font-size: 13px;
        letter-spacing: .04em;
        text-transform: uppercase;
    }

    .img-slot.tall {
        aspect-ratio: 3/4;
    }

    .img-slot.square {
        aspect-ratio: 1;
    }

/* ============ PAY / QR SECTION ============ */
.pay-band {
    background: radial-gradient(700px 500px at 15% 20%, #1a4dc4 0%, rgba(26,77,196,0) 60%), radial-gradient(700px 500px at 85% 80%, #3b82f6 0%, rgba(59,130,246,0) 55%), linear-gradient(135deg,#0b2470,#1a4dc4);
    color: #fff;
    border-radius: var(--r-xl);
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
}

    .pay-band h2, .pay-band h3 {
        color: #fff;
    }

    .pay-band .lead {
        color: rgba(255,255,255,.78);
        font-size: 18px;
        max-width: 520px;
    }

.qr-card {
    background: #fff;
    color: var(--ink-900);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,.25);
}

    .qr-card .qr-area {
        aspect-ratio: 1;
        border-radius: 14px;
        background: #f8fafc;
        border: 1px dashed #b5c8f0;
        display: grid;
        place-items: center;
        color: var(--blue-700);
        font-weight: 700;
    }

        .qr-card .qr-area .qr-grid-lg {
            width: 80%;
            height: 80%;
            background-image: conic-gradient(from 0deg at 50% 50%, #0a1230 0 25%, transparent 0 50%, #0a1230 0 75%, transparent 0);
            background-size: 11% 11%;
            border-radius: 8px;
            position: relative;
        }

            .qr-card .qr-area .qr-grid-lg::before,
            .qr-card .qr-area .qr-grid-lg::after {
                content: "";
                position: absolute;
                width: 22%;
                height: 22%;
                border: 6px solid #0a1230;
                border-radius: 8px;
            }

            .qr-card .qr-area .qr-grid-lg::before {
                top: 0;
                left: 0;
            }

            .qr-card .qr-area .qr-grid-lg::after {
                top: 0;
                right: 0;
            }

    .qr-card .qr-foot {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 14px;
    }

.qr-foot .lg {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg,var(--blue-700),var(--blue-500));
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
}

/* ============ NFC CARDS ============ */
.nfc-card-row {
    margin-top: 40px;
}

.nfc-card {
    border-radius: 22px;
    padding: 26px;
    color: #fff;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

    .nfc-card .price {
        font-family: 'Sora',sans-serif;
        font-weight: 700;
        font-size: 30px;
    }

    .nfc-card .name {
        font-weight: 600;
        opacity: .9;
        font-size: 13px;
        letter-spacing: .06em;
        text-transform: uppercase;
        margin-bottom: 6px;
    }

    .nfc-card .desc {
        font-size: 14px;
        opacity: .85;
        margin-top: 8px;
        max-width: 240px;
    }

    .nfc-card .btn-buy {
        position: absolute;
        right: 22px;
        bottom: 22px;
        background: #fff;
        color: var(--ink-900);
        border-radius: 999px;
        padding: 9px 18px;
        font-weight: 700;
        font-size: 13px;
        text-decoration: none;
    }

    .nfc-card .chip {
        position: absolute;
        right: 20px;
        top: 20px;
        width: 38px;
        height: 28px;
        border-radius: 6px;
        background: linear-gradient(135deg,#ffd76a,#c08a1e);
        opacity: .9;
    }

.nfc-1 {
    background: linear-gradient(135deg,#0b2470,#1a4dc4);
}

.nfc-2 {
    background: linear-gradient(135deg,#0a1230,#3b3f6b);
}

.nfc-3 {
    background: linear-gradient(135deg,#1a4dc4,#3b82f6);
}

/* ============ HOW IT WORKS - STACKING STICKY ============ */
.stack-section {
    background: linear-gradient(180deg,#fff,#f4f7ff);
    padding: 50px 0 0;
}

.stack-wrap {
    position: relative;
    /* Tall enough for 3 cards * scroll length */
    padding-bottom: 0;
}

.stack-card-outer {
    position: sticky;
    top: 120px;
    height: 60vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35vh;
    will-change: transform;
}

    .stack-card-outer:last-child {
        margin-bottom: 0;
    }

.stack-card-inner {
    width: 100%;
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 30px 80px rgba(11,36,112,.18), 0 8px 20px rgba(11,36,112,.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform .4s ease;
}

.stack-1 .stack-card-inner {
    background: linear-gradient(135deg,#0b2470 0%, #1a4dc4 60%, #3b82f6 100%);
}

.stack-2 .stack-card-inner {
    background: linear-gradient(135deg,#1a4dc4 0%, #3b82f6 60%, #6aa6ff 100%);
}

.stack-3 .stack-card-inner {
    background: linear-gradient(135deg,#0a1230 0%, #1a4dc4 60%, #3b82f6 100%);
}

.stack-card-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(500px 300px at 100% 0%, rgba(255,255,255,.14), transparent 60%), radial-gradient(400px 300px at 0% 100%, rgba(255,255,255,.08), transparent 60%);
    pointer-events: none;
}

.stack-num {
    font-family: 'Sora',sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .2em;
    opacity: .7;
    margin-bottom: 14px;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255,255,255,.14);
    border-radius: 999px;
}

.stack-card-inner h3 {
    color: #fff;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.stack-card-inner p {
    color: rgba(255,255,255,.8);
    font-size: 20px;
    max-width: 440px;
    line-height: 1.55;
}

.stack-cta {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--ink-900);
    padding: 11px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.stack-visual {
    aspect-ratio: 1;
    border-radius: 22px;
    background: repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 12px, rgba(255,255,255,.08) 12px 24px), rgba(255,255,255,.06);
    border: 1.5px dashed rgba(255,255,255,.3);
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.85);
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    padding: 24px;
    backdrop-filter: blur(8px);
}

    .stack-visual img {
        border-radius: 22px;
    }

@media (max-width: 767.98px) {
    .stack-card-inner {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 24px;
    }

    .stack-card-outer {
        height: auto;
        min-height: 520px;
        margin-bottom: 25vh;
    }
}

/* ============ PAY-BAND BREAKOUT ============ */
.pay-section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.pay-band-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    transition: max-width .9s cubic-bezier(.22,.61,.36,1), padding .9s cubic-bezier(.22,.61,.36,1);
}

    .pay-band-wrap.expanded {
        max-width: 100%;
        padding: 0;
    }

    .pay-band-wrap .pay-band {
        transition: border-radius .9s cubic-bezier(.22,.61,.36,1), padding .9s ease;
    }

    .pay-band-wrap.expanded .pay-band {
        border-radius: 0;
        padding: 100px 60px;
    }

.pay-band-inner {
    max-width: 1240px;
    margin: 0 auto;
}

/* ============ NFC PRODUCT CARDS ============ */
.nfc-product {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    height: 100%;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

    .nfc-product:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-card);
        border-color: #cfdcff;
    }

.nfc-product-img {
    aspect-ratio: 1.6/1;
    border-radius: 14px;
    background: repeating-linear-gradient(45deg, rgba(26,77,196,.05) 0 12px, rgba(26,77,196,.1) 12px 24px), linear-gradient(180deg, #eaf2ff, #f8fafc);
    border: 1.5px dashed #b5c8f0;
    display: grid;
    place-items: center;
    color: var(--blue-700);
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}

    .nfc-product-img .ph {
        background: #fff;
        padding: 8px 14px;
        border-radius: 999px;
        font-size: 12px;
        box-shadow: var(--shadow-soft);
        letter-spacing: .04em;
        text-transform: uppercase;
        font-weight: 700;
    }
    /* Variant chips inside image area */
    .nfc-product-img.classic {
        background: linear-gradient(135deg,#e6ecf7,#f8fafc);
        border-color: #cfdcff;
    }

    .nfc-product-img.onyx {
        background: linear-gradient(135deg,#1a1a1a,#2a2a2a);
        border-color: rgba(212,175,55,.4);
        color: #f4d77a;
    }

        .nfc-product-img.onyx .ph {
            background: rgba(212,175,55,.15);
            color: #f4d77a;
            border: 1px solid rgba(212,175,55,.3);
        }

    .nfc-product-img.metal {
        background: linear-gradient(135deg,#cfd6e2 0%, #8a93a8 50%, #cfd6e2 100%);
        border-color: #9aa3b8;
        color: #1a1a1a;
    }

.nfc-product-info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 6px 14px;
}

    .nfc-product-info .meta .name {
        font-family: 'Sora',sans-serif;
        font-weight: 700;
        font-size: 18px;
        color: var(--ink-900);
        margin-bottom: 4px;
        letter-spacing: -.01em;
    }

    .nfc-product-info .meta .price {
        font-family: 'Sora',sans-serif;
        font-weight: 800;
        font-size: 22px;
        color: var(--blue-700);
    }

        .nfc-product-info .meta .price small {
            font-size: 13px;
            color: var(--ink-500);
            font-weight: 500;
        }

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ink-900);
    color: #fff;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
    white-space: nowrap;
}

    .btn-order:hover {
        background: var(--blue-700);
        color: #fff;
        transform: translateY(-1px);
    }

/* ============ HOW IT WORKS ============ */
.steps {
    position: relative;
}

.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 30px;
    height: 100%;
}

    .step .n {
        font-family: 'Sora',sans-serif;
        font-weight: 800;
        font-size: 42px;
        background: linear-gradient(135deg,var(--blue-700),var(--blue-500));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        line-height: 1;
        margin-bottom: 14px;
    }

    .step h4 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .step p {
        color: var(--ink-500);
        margin: 0;
    }

/* ============ TESTIMONIALS / TRUST ============ */
.trust-band {
    background: var(--soft);
    border-block: 1px solid var(--line);
    padding: 40px 0;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    opacity: .7;
}

.trust-logo {
    font-family: 'Sora',sans-serif;
    font-weight: 700;
    color: var(--ink-500);
    font-size: 18px;
    letter-spacing: .04em;
}

/* ============ CTA ============ */
.cta-section {
    text-align: center;
}

    .cta-section h2 {
        font-size: clamp(34px, 4.4vw, 56px);
        margin-bottom: 18px;
    }

/* ============ FOOTER ============ */
footer {
    background: linear-gradient(180deg,#0a1230 0%, #0b2470 100%);
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

    footer::before {
        content: "";
        position: absolute;
        inset: auto -10% -40% -10%;
        height: 60%;
        background: radial-gradient(closest-side, rgba(59,130,246,.25), transparent);
        filter: blur(20px);
    }

.footer-grid {
    position: relative;
    z-index: 1;
}

.footer-brand .brand {
    color: #fff;
}

.footer-brand p {
    color: rgba(255,255,255,.7);
    max-width: 320px;
    margin-top: 16px;
    font-size: 18px;
}

.footer-contact {
    margin-top: 18px;
    color: rgba(255,255,255,.7);
    font-size: 16px;
}

    .footer-contact div {
        margin-bottom: 6px;
        display: flex;
        gap: 10px;
        align-items: center;
    }

.socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.soc {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: grid;
    place-items: center;
    color: #fff;
    transition: background .2s;
}

    .soc:hover {
        background: var(--blue-500);
        color: #fff;
    }

.footer-qr {
    text-align: center;
}

    .footer-qr .qr-big {
        width: 270px;
        height: 270px;
        margin: 0 auto;
        background: #fff;
        border-radius: 2px;
        padding: 5px;
        box-shadow: 0 30px 60px rgba(0,0,0,.35);
        position: relative;
    }

        .footer-qr .qr-big .qrg {
            width: 100%;
            height: 100%;
            background: #f8fafc;
            border-radius: 10px;
            display: grid;
            place-items: center;
            background-image: conic-gradient(from 0deg at 50% 50%, #0a1230 0 25%, transparent 0 50%, #0a1230 0 75%, transparent 0);
            background-size: 10% 10%;
            position: relative;
        }

            .footer-qr .qr-big .qrg::before,
            .footer-qr .qr-big .qrg::after,
            .footer-qr .qr-big .qrg .br {
                content: "";
                position: absolute;
                width: 22%;
                height: 22%;
                border: 5px solid #0a1230;
                border-radius: 8px;
                background: #fff;
            }

            .footer-qr .qr-big .qrg::before {
                top: 6%;
                left: 6%;
            }

            .footer-qr .qr-big .qrg::after {
                top: 6%;
                right: 6%;
            }

            .footer-qr .qr-big .qrg .br {
                bottom: 6%;
                left: 6%;
            }

        .footer-qr .qr-big .qr-logo {
            position: absolute;
            inset: 0;
            margin: auto;
            width: 62px;
            height: 62px;
            background: #fff;
            border-radius: 14px;
            display: grid;
            place-items: center;
            color: var(--blue-700);
            font-weight: 800;
            font-family: 'Sora',sans-serif;
            border: 3px solid #fff;
        }

    .footer-qr h4 {
        color: #fff;
        font-size: 22px;
        margin-top: 22px;
        margin-bottom: 6px;
    }

    .footer-qr p {
        color: rgba(255,255,255,.7);
        font-size: 14px;
        max-width: 300px;
        margin: 0 auto;
    }

.footer-links h5 {
    color: #fff;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,.7);
    font-size: 15px;
}

    .footer-links a:hover {
        color: #fff;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 60px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255,255,255,.55);
    font-size: 14px;
}

    .footer-bottom a {
        color: rgba(255,255,255,.7);
        margin-left: 16px;
    }

/* ============ 3D SCROLL ANIMATIONS ============ */
.reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-3d, .reveal-flip, .reveal-tilt, .reveal-rise {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 1s cubic-bezier(.22,.61,.36,1), transform 1.1s cubic-bezier(.22,.61,.36,1), filter 1s ease;
    transform-style: preserve-3d;
}

.reveal {
    transform: translate3d(0,40px,0);
}

.reveal-left {
    transform: translate3d(-50px,0,-40px) rotateY(12deg);
    transform-origin: left center;
}

.reveal-right {
    transform: translate3d(50px,0,-40px) rotateY(-12deg);
    transform-origin: right center;
}

.reveal-scale {
    transform: scale(.9) translateZ(-80px);
    filter: blur(6px);
}

.reveal-3d {
    transform: perspective(1200px) rotateX(35deg) translate3d(0,80px,-100px);
    transform-origin: 50% 100%;
}

.reveal-flip {
    transform: perspective(1200px) rotateY(40deg) translate3d(60px,0,-80px);
    transform-origin: 0% 50%;
}

.reveal-tilt {
    transform: perspective(1200px) rotateX(-20deg) rotateY(15deg) translate3d(0,50px,-60px);
}

.reveal-rise {
    transform: translate3d(0,100px,-60px) scale(.94);
}

    .reveal.in, .reveal-left.in, .reveal-right.in, .reveal-scale.in,
    .reveal-3d.in, .reveal-flip.in, .reveal-tilt.in, .reveal-rise.in {
        opacity: 1;
        transform: perspective(1200px) translate3d(0,0,0) rotateX(0) rotateY(0) scale(1);
        filter: none;
    }

.delay-1 {
    transition-delay: .08s;
}

.delay-2 {
    transition-delay: .16s;
}

.delay-3 {
    transition-delay: .24s;
}

.delay-4 {
    transition-delay: .32s;
}

.delay-5 {
    transition-delay: .40s;
}

/* 3D Card Tilt (mouse-driven) */
.tilt-3d {
    transform-style: preserve-3d;
    transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease;
    will-change: transform;
}

    .tilt-3d .feature-icon,
    .tilt-3d h3,
    .tilt-3d .num {
        transition: transform .35s ease;
    }

    .tilt-3d:hover .feature-icon {
        transform: translateZ(50px) scale(1.05);
    }

    .tilt-3d:hover h3 {
        transform: translateZ(28px);
    }

    .tilt-3d:hover .num {
        transform: translateZ(20px);
    }

    .tilt-3d:hover {
        box-shadow: 0 30px 60px rgba(26,77,196,.20), 0 6px 14px rgba(11,36,112,.12);
    }

/* Marquee */
.marquee {
    overflow: hidden;
    padding: 30px 0;
    background: linear-gradient(180deg,#fff,#f4f7ff);
    border-block: 1px solid var(--line);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 60px;
    align-items: center;
    width: max-content;
    animation: scroll-x 30s linear infinite;
}

.marquee-item {
    font-family: 'Sora',sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--blue-700);
    display: flex;
    align-items: center;
    gap: 60px;
    white-space: nowrap;
    letter-spacing: -.03em;
}

    .marquee-item .star {
        -webkit-text-stroke: 0;
        color: var(--blue-500);
        font-size: 28px;
    }

@keyframes scroll-x {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Parallax bg orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .5;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.orb-1 {
    width: 380px;
    height: 380px;
    background: radial-gradient(closest-side,#3b82f6, transparent);
    top: 10%;
    left: -100px;
}

.orb-2 {
    width: 480px;
    height: 480px;
    background: radial-gradient(closest-side,#1a4dc4, transparent);
    top: 50%;
    right: -160px;
    opacity: .32;
}

.orb-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(closest-side,#dbeafe, transparent);
    bottom: 5%;
    left: 30%;
    opacity: .6;
}

/* sticky scroll pin section */
.pin-section {
    position: relative;
    height: 320vh;
    background: radial-gradient(900px 500px at 80% 20%, #e9efff 0%, transparent 60%), radial-gradient(700px 500px at 10% 80%, #f4f7ff 0%, transparent 60%), linear-gradient(180deg,#ffffff 0%, #f4f7ff 100%);
}

.pin-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1500px;
}

/* Scrolling text rail behind the card */
.pin-rail {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.pin-rail-track {
    display: flex;
    flex-direction: column;
    gap: 10px;
    will-change: transform;
}

.pin-rail-word {
    font-family: 'Sora',sans-serif;
    font-weight: 800;
    font-size: clamp(60px, 13vw, 200px);
    line-height: .9;
    letter-spacing: -.05em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(26,77,196,.25);
    white-space: nowrap;
    text-align: center;
}

    .pin-rail-word.fill {
        -webkit-text-stroke: 0;
        background: linear-gradient(180deg, #1a4dc4 0%, #3b82f6 50%, #6aa6ff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        opacity: .85;
    }

.pin-card {
    width: min(560px, 86vw);
    aspect-ratio: 1.6/1;
    border-radius: 24px;
    background: radial-gradient(120% 80% at 0% 0%, rgba(212,175,55,.18), transparent 60%), radial-gradient(120% 80% at 100% 100%, rgba(212,175,55,.12), transparent 60%), linear-gradient(135deg,#0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    box-shadow: 0 60px 100px -20px rgba(0,0,0,.6), 0 20px 50px rgba(0,0,0,.4), inset 0 1px 0 rgba(212,175,55,.25);
    color: #f4d77a;
    padding: 34px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    z-index: 2;
    border: 1px solid rgba(212,175,55,.2);
}

    .pin-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(400px 200px at 100% 0%, rgba(212,175,55,.15), transparent 60%), radial-gradient(300px 200px at 0% 100%, rgba(212,175,55,.08), transparent 60%), repeating-linear-gradient(135deg, transparent 0 80px, rgba(212,175,55,.04) 80px 81px);
        pointer-events: none;
    }

    .pin-card .chip-big {
        width: 48px;
        height: 36px;
        border-radius: 6px;
        background: linear-gradient(135deg,#f4d77a 0%, #c08a1e 50%, #8a5e0c 100%);
        position: relative;
        box-shadow: 0 2px 8px rgba(212,175,55,.4);
    }

        .pin-card .chip-big::after {
            content: "";
            position: absolute;
            inset: 6px;
            border-radius: 3px;
            background: repeating-linear-gradient(0deg, rgba(0,0,0,.3) 0 2px, transparent 2px 6px);
        }

    .pin-card .pc-flex {
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
    }

    .pin-card .pc-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

.chip-big1 img {
    width: 150px;
}

.pin-card .pc-wave {
    opacity: .5;
    stroke: #f4d77a !important;
}

    .pin-card .pc-wave path, .pin-card .pc-wave circle {
        stroke: #f4d77a;
        fill: none;
    }

    .pin-card .pc-wave circle {
        fill: #f4d77a;
    }

.pin-card .pc-name {
    font-family: 'Sora',sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin-top: auto;
    letter-spacing: -.02em;
    background: linear-gradient(135deg,#f4d77a 0%, #c9a44a 50%, #f4d77a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pin-card .pc-role {
    font-size: 14px;
    opacity: .7;
    color: #d4af37;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pin-card .pc-brand {
    position: absolute;
    right: 0;
    bottom: 0;
    font-family: 'Sora',sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -.02em;
    background: linear-gradient(135deg,#f4d77a, #c9a44a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pin-headline {
    display: none;
}

/* Section scroll labels */
.scroll-progress {
    position: fixed;
    left: 0;
    top: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--blue-700), var(--blue-500), #6aa6ff);
    z-index: 200;
    transition: width .1s linear;
    box-shadow: 0 0 12px rgba(59,130,246,.6);
}

/* mobile menu */
.mobile-toggle {
    display: none;
    background: none;
    border: 0;
}







.vs-section {
    padding: 4rem 1.5rem 5rem;
    background: #fff;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.vs-head {
    text-align: center;
    margin-bottom: 3rem;
}

.vs-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7c3aed;
    border: 1px solid rgba(124,58,237,0.3);
    padding: 3px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.vs-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #0f0a1e;
    margin: 0;
}

/* ── card ── */
.vs-card {
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

/* ── Video wrapper (FIXED) ── */
.vs-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* 👈 main fix */
    overflow: hidden;
    background: #0a0010;
}

    /* Video fit properly */
    .vs-video-wrap video {
        width: 100%;
        height: 100%;
        object-fit: cover; /* or contain if you don't want cropping */
        display: block;
    }
/* bottom label */
.vs-label {
    position: absolute;
    bottom: 14px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.9s, transform 0.4s ease 0.9s;
}

.vs-clip.open .vs-label {
    opacity: 1;
    transform: translateY(0);
}

.vs-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a855f7;
    box-shadow: 0 0 7px #a855f7;
    animation: vs_pulse 1.8s ease-in-out infinite;
}

@keyframes vs_pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.6);
    }
}

.vs-label span {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 5px rgba(0,0,0,0.6);
}



.br-unique {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(26, 77, 196, 0.08), rgba(99, 102, 241, 0.06));
    border: 1px solid rgba(26, 77, 196, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.6;
    box-shadow: 0 10px 30px rgba(26, 77, 196, 0.08);
    position: relative;
    overflow: hidden;
}

    /* subtle glowing top line */
    .br-unique::before {
        content: "";
        position: absolute;
        top: 0;
        left: 10%;
        width: 80%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #1a4dc4, transparent);
        opacity: 0.6;
    }

    /* strong label styling */
    .br-unique strong {
        color: #1a4dc4;
        font-weight: 600;
    }

    /* hover effect */
    .br-unique:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(26, 77, 196, 0.14);
        transition: 0.3s ease;
    }

.usp-card {
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(26, 77, 196, 0.06), rgba(99, 102, 241, 0.04));
    border: 1px solid rgba(26, 77, 196, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    /* Glow line effect */
    .usp-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 15%;
        width: 70%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #1a4dc4, transparent);
        opacity: 0.7;
    }

    /* Hover animation */
    .usp-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 50px rgba(26, 77, 196, 0.18);
        border-color: rgba(26, 77, 196, 0.3);
    }

/* Icon box */
.usp-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 77, 196, 0.1);
    color: #1a4dc4;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

/* icon hover effect */
.usp-card:hover .usp-icon {
    transform: scale(1.08) rotate(3deg);
    background: rgba(26, 77, 196, 0.18);
}

/* Heading */
.usp-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #111827;
    font-weight: 600;
}

/* Paragraph */
.usp-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6b7280;
}

/* smooth entrance optional */
.usp-card {
    animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


#qrcode {
    width: 100%;
    height: 100%;
    display: flex;
}

.footer-qr .qr-big {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-contact div > a {
    color: #a4aabe !important;
}

.nav-wrap {
    position: relative; /* zaruri hai absolute ke liye */
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    border-top: 1px solid #f0f0f0;
    z-index: 999;
    animation: slideDown 0.2s ease;
}

    .mobile-menu.open {
        display: block;
    }

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 12px 0 16px;
}

    .mobile-menu-inner a {
        padding: 12px 16px;
        font-size: 15px;
        color: #1a1a1a;
        text-decoration: none;
        transition: background 0.15s;
    }

        .mobile-menu-inner a:hover {
            background: #f5f5f5;
        }

.mobile-menu-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 16px;
}

.mobile-signin {
    font-weight: 500;
    color: #333 !important;
}

/* Toggle button sirf mobile pe dikhaye */
.mobile-toggle {
    display: none;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: inline-flex;
    }

    .nav-links {
        display: none; /* desktop links hide on mobile */
    }
}



/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero-art {
        min-height: 520px;
        margin-top: 20px;
    }

    .phone {
        position: relative;
        right: auto;
        margin: 0 auto;
        transform: rotate(-3deg);
    }

    .chip-1 {
        left: 0;
        top: 30px;
    }

    .chip-2 {
        right: 0;
        bottom: 30px;
    }

    .chip-3 {
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
    }

    section {
        padding: 80px 0;
    }

    .pay-band {
        padding: 50px 28px;
        border-radius: 28px;
    }
}

@media (max-width: 575.98px) {
    .container-xxl {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero {
        padding: 40px 0 30px;
    }

        .hero h1 {
            font-size: 42px;
        }

        .hero p.lead {
            font-size: 16px;
        }

    .hero-meta {
        gap: 18px;
    }

        .hero-meta .item .v {
            font-size: 22px;
        }

    .phone {
        width: 280px;
    }

    section {
        padding: 64px 0;
    }

    .section-head {
        margin-bottom: 40px;
    }

        .section-head h2 {
            font-size: 32px;
        }

        .section-head p {
            font-size: 16px;
        }

    .pay-band {
        padding: 36px 20px;
        border-radius: 22px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

        .footer-bottom a {
            margin: 0 8px;
        }
}
/*-----------Grid--------------*/
@media (min-width: 768px) {
    .container, .container-xxl {
        max-width: 950px !important;
    }
}

@media (min-width: 992px) {
    .container, .container-xxl {
        max-width: 1070px !important;
    }
}

@media (min-width: 1200px) {
    .container, .container-xxl {
        max-width: 1270px !important;
    }
}

/* NEW - large screens ke liye */
@media (min-width: 1400px) {
    .container, .nav-header-container, .container-xxl {
        width: 100% !important;
        max-width: 1400px !important;
    }
}

@media (min-width: 1600px) {
    .container, .nav-header-container, .container-xxl {
        width: 100% !important;
        max-width: 1550px !important;
    }
}

@media (min-width: 1800px) {
    .container, .nav-header-container, .container-xxl {
        width: 100% !important;
        max-width: 1700px !important;
    }
}





@media (max-width: 575.98px) {
    .orb-2{
        display:none;
    }
    .chip-big1 img {
        width: 80px;
    }
    .pin-card .pc-name {
        font-size: 18px;
    }
    .pin-card .pc-role {
        font-size: 9px;
    }
    .hero::before{
        display:none;
    }
    }