/* ============================================================
   GLOBAL
============================================================ */

:root {

    --primary: #1464ff;
    --primary-dark: #0849d8;

    --secondary: #05b889;

    --dark: #0d1b3e;
    --text: #52607a;
    --muted: #7b879d;

    --white: #ffffff;
    --light: #f7faff;
    --light-blue: #eef5ff;

    --border: #e6ebf4;

    --shadow:
        0 20px 60px rgba(26, 72, 140, 0.10);

    --shadow-hover:
        0 25px 70px rgba(26, 72, 140, 0.18);

    --radius: 18px;

    --container: 1200px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Inter", sans-serif;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 45%,
            #ffffff 100%
        );

    color: var(--dark);

    line-height: 1.6;

    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


ul {
    list-style: none;
}


img {
    max-width: 100%;
    display: block;
}


.container {

    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin: auto;
}


/* ============================================================
   NAVIGATION
============================================================ */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: rgba(255,255,255,0.88);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(225,232,244,0.75);

    transition: 0.3s ease;
}


.header.scrolled {

    box-shadow:
        0 10px 40px rgba(22, 60, 110, 0.08);
}


.navbar {

    height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* ============================================================
   LOGO
============================================================ */

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 23px;

    font-weight: 800;

    color: var(--dark);

    white-space: nowrap;
}


.logo-icon {

    width: 90px;
    height: auto;

    border-radius: 11px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    /* background:
        linear-gradient(
            135deg,
            #0f72ff,
            #16b8ff
        );

    box-shadow:
        0 8px 25px rgba(20,100,255,0.25); */
}

/* ============================================================
   NAV MENU
============================================================ */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 4px;
}


.nav-item {

    position: relative;
}


.nav-link {

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 28px 15px;

    font-size: 14px;

    font-weight: 600;

    color: #263657;

    transition: 0.25s ease;
}


.nav-link:hover {

    color: var(--primary);
}


.nav-link i {

    font-size: 10px;

    transition: 0.25s ease;
}


.nav-item:hover .nav-link i {

    transform: rotate(180deg);
}


/* ============================================================
   DROPDOWN
============================================================ */

.dropdown {

    position: absolute;

    top: calc(100% + 12px);

    left: 0;

    min-width: 230px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 10px;

    box-shadow: var(--shadow);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        all 0.25s ease;
}


.nav-item:hover > .dropdown {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.dropdown a {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 11px 13px;

    border-radius: 10px;

    color: #44516c;

    font-size: 13px;

    font-weight: 500;

    transition: 0.2s;
}


.dropdown a:hover {

    color: var(--primary);

    background: #f3f7ff;
}


.dropdown-icon {

    width: 32px;

    height: 32px;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eef5ff;

    color: var(--primary);

    flex-shrink: 0;
}


/* ============================================================
   MEGA MENU
============================================================ */

.mega-menu {

    position: absolute;

    top: calc(100% + 12px);

    left: 50%;

    width: 720px;

    padding: 25px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow);

    opacity: 0;

    visibility: hidden;

    transform:
        translate(-50%, 10px);

    transition: 0.25s ease;
}


.nav-item:hover .mega-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, 0);
}


.mega-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.mega-title {

    margin-bottom: 12px;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 0.8px;

    color: var(--muted);

    font-weight: 700;
}


.mega-menu a {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 8px;

    margin-bottom: 3px;

    border-radius: 8px;

    color: #3c4965;

    font-size: 13px;
}


.mega-menu a:hover {

    background: #f3f7ff;

    color: var(--primary);
}


.mega-feature {

    padding: 20px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            #edf5ff,
            #f7fbff
        );

    border: 1px solid #e2ecff;
}


.mega-feature-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #ffffff;

    color: var(--primary);

    margin-bottom: 12px;
}


.mega-feature h4 {

    margin-bottom: 5px;

    font-size: 15px;
}


.mega-feature p {

    font-size: 12px;

    color: var(--text);

    margin-bottom: 15px;
}


/* ============================================================
   NAV BUTTONS
============================================================ */

.nav-actions {

    display: flex;

    align-items: center;

    gap: 10px;
}


.btn-login {

    padding: 10px 20px;

    border: 1px solid #d6dfef;

    border-radius: 9px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 600;

    background: white;

    transition: 0.25s;
}


.btn-login:hover {

    background: #f2f6ff;

    border-color: #b9ccef;
}


.btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 12px 21px;

    border-radius: 9px;

    color: white;

    font-size: 13px;

    font-weight: 600;

    background:
        linear-gradient(
            135deg,
            #176cff,
            #0953e7
        );

    box-shadow:
        0 10px 25px rgba(20,100,255,0.22);

    transition: 0.25s;
}


.btn-primary:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 30px rgba(20,100,255,0.28);
}


.btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 12px 21px;

    border-radius: 9px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 600;

    background: white;

    border: 1px solid #cbd8ee;

    transition: 0.25s;
}


.btn-outline:hover {

    background: #f3f7ff;

    transform:
        translateY(-2px);
}


/* ============================================================
   MOBILE BUTTON
============================================================ */

.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: white;

    color: var(--dark);

    font-size: 18px;

    cursor: pointer;
}


/* ============================================================
   HERO
============================================================ */

.hero {

    position: relative;

    padding:
        165px
        0
        95px;

    overflow: hidden;
}


.hero::before {

    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: 30px;

    background:
        radial-gradient(
            circle,
            rgba(52,136,255,0.13),
            transparent 70%
        );

    pointer-events: none;
}


.hero::after {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: -200px;
    top: 250px;

    background:
        radial-gradient(
            circle,
            rgba(0,191,166,0.08),
            transparent 70%
        );

    pointer-events: none;
}


.hero-grid {

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 50px;

    position: relative;

    z-index: 2;
}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 12px;

    border-radius: 50px;

    background: #eef6ff;

    border: 1px solid #dceaff;

    color: var(--primary);

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 20px;
}


.badge-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #13c993;

    box-shadow:
        0 0 0 4px rgba(19,201,147,0.12);
}


.hero h1 {

    font-size:
        clamp(
            42px,
            5vw,
            68px
        );

    line-height: 1.08;

    letter-spacing: -2.5px;

    margin-bottom: 22px;
}


.hero h1 span {

    background:
        linear-gradient(
            90deg,
            #1265ff,
            #00a9e8
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}


.hero-description {

    max-width: 590px;

    font-size: 16px;

    line-height: 1.8;

    color: var(--text);

    margin-bottom: 30px;
}


.hero-buttons {

    display: flex;

    gap: 12px;

    margin-bottom: 35px;
}


.hero-trust {

    display: flex;

    gap: 30px;

    flex-wrap: wrap;
}


.trust-item {

    display: flex;

    align-items: center;

    gap: 10px;
}


.trust-icon {

    width: 38px;

    height: 38px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary);

    background: #edf5ff;
}


.trust-item strong {

    display: block;

    font-size: 12px;
}


.trust-item span {

    display: block;

    font-size: 10px;

    color: var(--muted);
}


/* ============================================================
   HERO DASHBOARD
============================================================ */

.hero-visual {

    position: relative;

    min-height: 510px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.hero-circle {

    position: absolute;

    width: 470px;
    height: 470px;

    border-radius: 50%;

    border: 1px dashed #bcd5ff;

    background:
        radial-gradient(
            circle,
            #edf6ff 0%,
            #f8fbff 55%,
            transparent 70%
        );

    animation:
        pulseCircle 5s infinite ease-in-out;
}


@keyframes pulseCircle {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}


.phone {

    position: relative;

    width: 235px;

    height: 455px;

    border-radius: 35px;

    padding: 10px;

    background: #14213d;

    box-shadow:
        0 35px 80px rgba(21,61,120,0.28);

    z-index: 3;
}


.phone-screen {

    width: 100%;

    height: 100%;

    border-radius: 27px;

    overflow: hidden;

    background: #f7faff;

    padding: 22px 14px;
}


.phone-notch {

    position: absolute;

    width: 90px;

    height: 22px;

    background: #14213d;

    top: 10px;

    left: 50%;

    transform:
        translateX(-50%);

    border-radius:
        0 0 15px 15px;
}


.phone-header {

    margin-top: 20px;

    font-size: 11px;

    color: var(--muted);
}


.balance-card {

    margin-top: 12px;

    padding: 18px;

    border-radius: 17px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #1267ff,
            #00a6ed
        );

    box-shadow:
        0 12px 30px rgba(20,100,255,0.20);
}


.balance-card small {

    font-size: 10px;

    opacity: 0.8;
}


.balance-card h3 {

    font-size: 23px;

    margin-top: 4px;
}


.phone-services {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 9px;

    margin-top: 16px;
}


.phone-service {

    padding: 12px 7px;

    border-radius: 12px;

    background: white;

    border: 1px solid #e8edf6;

    text-align: center;

    font-size: 9px;

    box-shadow:
        0 5px 15px rgba(25,60,110,0.05);
}


.phone-service i {

    display: block;

    color: var(--primary);

    font-size: 16px;

    margin-bottom: 5px;
}


/* ============================================================
   FLOATING CARDS
============================================================ */

.floating-card {

    position: absolute;

    padding: 14px 18px;

    border-radius: 14px;

    background: rgba(255,255,255,0.95);

    border: 1px solid #e5ecf7;

    box-shadow:
        0 15px 40px rgba(25,65,120,0.12);

    display: flex;

    align-items: center;

    gap: 10px;

    z-index: 5;

    animation:
        floating 4s infinite ease-in-out;
}


@keyframes floating {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


.floating-card i {

    width: 35px;
    height: 35px;

    border-radius: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #edf5ff;

    color: var(--primary);
}


.floating-card strong {

    display: block;

    font-size: 11px;
}


.floating-card span {

    font-size: 9px;

    color: var(--muted);
}


.card-one {

    top: 100px;

    right: 0;
}


.card-two {

    bottom: 100px;

    left: 0;
}


/* ============================================================
   PARTNERS
============================================================ */

.partners {

    padding:
        28px 0;

    border-top:
        1px solid #edf1f7;

    border-bottom:
        1px solid #edf1f7;

    background: rgba(247,250,255,0.65);
}


.partner-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


.partner-title {

    color: var(--muted);

    font-size: 11px;

    font-weight: 600;

    white-space: nowrap;
}


.partner-list {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    gap: 25px;
}


.partner {

    font-size: 15px;

    font-weight: 800;

    color: #73819a;

    opacity: 0.75;
}


/* ============================================================
   SECTION
============================================================ */

.section {

    padding:
        100px 0;
}


.section-header {

    text-align: center;

    max-width: 700px;

    margin:
        0 auto
        55px;
}


.section-label {

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 12px;
}


.section-header h2 {

    font-size:
        clamp(30px,4vw,44px);

    letter-spacing: -1.5px;

    line-height: 1.2;

    margin-bottom: 15px;
}


.section-header p {

    color: var(--text);

    font-size: 14px;
}


/* ============================================================
   SERVICES
============================================================ */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(6,1fr);

    gap: 15px;
}


.service-card {

    position: relative;

    padding: 25px 18px;

    border-radius: 17px;

    background: white;

    border: 1px solid var(--border);

    text-align: center;

    transition:
        transform .3s,
        box-shadow .3s,
        border-color .3s;
}


.service-card:hover {

    transform:
        translateY(-8px);

    border-color:
        #c9dcff;

    box-shadow:
        var(--shadow-hover);
}


.service-icon {

    width: 50px;

    height: 50px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin:
        0 auto
        15px;

    background: #edf5ff;

    color: var(--primary);

    font-size: 19px;
}


.service-card:nth-child(2) .service-icon {

    background: #eafaf4;

    color: #08a778;
}


.service-card:nth-child(3) .service-icon {

    background: #fff5e7;

    color: #ed941b;
}


.service-card:nth-child(4) .service-icon {

    background: #fff0f8;

    color: #df5da1;
}


.service-card:nth-child(5) .service-icon {

    background: #eef9ff;

    color: #00a1c9;
}


.service-card:nth-child(6) .service-icon {

    background: #f1edff;

    color: #7655e8;
}


.service-card h3 {

    font-size: 13px;

    margin-bottom: 7px;
}


.service-card p {

    font-size: 10px;

    color: var(--muted);

    line-height: 1.5;
}


/* ============================================================
   ABOUT / TECHNOLOGY
============================================================ */

.tech-section {

    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #ffffff
        );
}


.tech-grid {

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    align-items: center;

    gap: 80px;
}


.tech-content h2 {

    font-size: 43px;

    line-height: 1.15;

    letter-spacing: -1.5px;

    margin-bottom: 18px;
}


.tech-content > p {

    color: var(--text);

    font-size: 14px;

    margin-bottom: 25px;
}


.check-list li {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 13px;

    color: #42516d;

    font-size: 13px;
}


.check-list i {

    color: var(--primary);

    font-size: 14px;
}


/* ============================================================
   DASHBOARD
============================================================ */

.dashboard {

    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.dashboard-card {

    width: 550px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    padding: 22px;

    box-shadow:
        0 30px 80px rgba(35,80,140,0.13);
}


.dashboard-header {

    display: flex;

    justify-content: space-between;

    margin-bottom: 22px;
}


.dashboard-header h3 {

    font-size: 15px;
}


.dashboard-header span {

    font-size: 10px;

    color: #15ad7b;

    background: #e9faf4;

    padding: 5px 9px;

    border-radius: 30px;
}


.dashboard-stats {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 12px;

    margin-bottom: 20px;
}


.stat {

    padding: 15px;

    background: #f8faff;

    border-radius: 12px;
}


.stat small {

    color: var(--muted);

    font-size: 9px;
}


.stat strong {

    display: block;

    font-size: 17px;

    margin-top: 4px;
}


.transaction {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 12px 0;

    border-bottom: 1px solid #edf1f6;
}


.transaction-left {

    display: flex;

    align-items: center;

    gap: 10px;
}


.transaction-icon {

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #edf5ff;

    color: var(--primary);

    border-radius: 9px;

    font-size: 11px;
}


.transaction strong {

    font-size: 11px;

    display: block;
}


.transaction small {

    font-size: 9px;

    color: var(--muted);
}


.transaction-right {

    font-size: 11px;

    font-weight: 700;

    color: #0ca776;
}


/* ============================================================
   API SECTION
============================================================ */

.api-section {

    background: #ffffff;
}


.api-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;
}


.api-content h2 {

    font-size: 42px;

    line-height: 1.2;

    letter-spacing: -1.5px;

    margin-bottom: 18px;
}


.api-content p {

    color: var(--text);

    font-size: 14px;

    margin-bottom: 25px;
}


.api-features {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 15px;

    margin-bottom: 30px;
}


.api-feature {

    padding: 17px;

    border: 1px solid var(--border);

    border-radius: 13px;

    background: #fbfcff;
}


.api-feature i {

    color: var(--primary);

    margin-bottom: 8px;
}


.api-feature strong {

    display: block;

    font-size: 12px;
}


.api-feature span {

    font-size: 10px;

    color: var(--muted);
}


/* ============================================================
   CODE WINDOW
============================================================ */

.code-window {

    border-radius: 20px;

    overflow: hidden;

    background: #102143;

    box-shadow:
        0 30px 70px rgba(16,33,67,0.20);
}


.code-header {

    padding: 14px 18px;

    background: #172b50;

    display: flex;

    align-items: center;

    gap: 7px;
}


.code-dot {

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #a8b6ce;
}


.code-title {

    margin-left: 10px;

    font-size: 10px;

    color: #aebbd0;
}


pre {

    padding: 25px;

    color: #d8e4fa;

    font-size: 12px;

    line-height: 1.8;

    overflow-x: auto;
}


.keyword {
    color: #6ca8ff;
}


.string {
    color: #79d7b1;
}


.number {
    color: #f4c878;
}


/* ============================================================
   RETAILER
============================================================ */

.retailer {

    padding: 85px 0;
}


.retailer-box {

    position: relative;

    overflow: hidden;

    border-radius: 25px;

    padding: 65px;

    color: white;

    background:
        linear-gradient(
            120deg,
            #0756e8,
            #167cff 60%,
            #05a7dd
        );

    box-shadow:
        0 25px 70px rgba(20,100,255,0.22);
}


.retailer-box::after {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.14);

    right: -150px;

    top: -170px;
}


.retailer-content {

    position: relative;

    z-index: 2;

    max-width: 650px;
}


.retailer-content .section-label {

    color: #bcd7ff;
}


.retailer-content h2 {

    font-size: 40px;

    line-height: 1.2;

    margin-bottom: 15px;

    letter-spacing: -1px;
}


.retailer-content p {

    color: #d9e8ff;

    font-size: 14px;

    margin-bottom: 25px;
}


.retailer-buttons {

    display: flex;

    gap: 12px;
}


.retailer-buttons .btn-primary {

    background: white;

    color: var(--primary);

    box-shadow: none;
}


.retailer-buttons .btn-outline {

    background: transparent;

    color: white;

    border-color: rgba(255,255,255,0.5);
}


/* ============================================================
   FAQ
============================================================ */

.faq {

    max-width: 800px;

    margin: auto;
}


.faq-item {

    border: 1px solid var(--border);

    border-radius: 13px;

    margin-bottom: 12px;

    overflow: hidden;

    background: white;
}


.faq-question {

    width: 100%;

    border: none;

    background: white;

    padding: 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    cursor: pointer;

    font-family: inherit;

    font-weight: 600;

    font-size: 13px;

    color: var(--dark);

    text-align: left;
}


.faq-question i {

    color: var(--primary);

    transition: 0.25s;
}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: 0.3s ease;
}


.faq-answer p {

    padding:
        0 20px 20px;

    color: var(--text);

    font-size: 12px;
}


.faq-item.active .faq-answer {

    max-height: 150px;
}


.faq-item.active .faq-question i {

    transform:
        rotate(180deg);
}


/* ============================================================
   FOOTER
============================================================ */

.footer {

    padding:
        70px 0
        25px;

    background: #f6f9ff;

    border-top: 1px solid #e6edf7;
}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        repeat(4,1fr);

    gap: 50px;

    margin-bottom: 50px;
}


.footer-brand p {

    max-width: 270px;

    color: var(--text);

    font-size: 12px;

    margin:
        15px 0
        20px;
}


.social {

    display: flex;

    gap: 8px;
}


.social a {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: white;

    border: 1px solid var(--border);

    color: var(--primary);

    transition: 0.2s;
}


.social a:hover {

    color: white;

    background: var(--primary);

    transform:
        translateY(-3px);
}


.footer-col h4 {

    font-size: 12px;

    margin-bottom: 18px;
}


.footer-col a {

    display: block;

    color: var(--text);

    font-size: 11px;

    margin-bottom: 10px;

    transition: 0.2s;
}


.footer-col a:hover {

    color: var(--primary);

    transform:
        translateX(3px);
}


.footer-bottom {

    padding-top: 20px;

    border-top: 1px solid #e2e8f2;

    display: flex;

    justify-content: space-between;

    color: var(--muted);

    font-size: 10px;
}


/* ============================================================
   BACK TO TOP
============================================================ */

.back-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 45px;

    height: 45px;

    border: none;

    border-radius: 12px;

    background: var(--primary);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(20px);

    transition: 0.3s;

    z-index: 999;
}


.back-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


/* ============================================================
   SCROLL ANIMATION
============================================================ */

.reveal {

    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}


.reveal.active {

    opacity: 1;

    transform:
        translateY(0);
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1100px) {

    .nav-link {
        padding-left: 9px;
        padding-right: 9px;
    }

    .services-grid {
        grid-template-columns:
            repeat(3,1fr);
    }

    .mega-menu {
        width: 650px;
    }
}


@media (max-width: 900px) {

    .menu-toggle {
        display: flex;

        align-items: center;

        justify-content: center;
    }


    .nav-menu {

        position: absolute;

        top: 76px;

        left: 0;

        width: 100%;

        background: white;

        border-bottom:
            1px solid var(--border);

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 15px 20px;

        box-shadow:
            0 20px 30px rgba(20,60,110,0.08);
    }


    .nav-menu.active {
        display: flex;
    }


    .nav-link {
        padding: 15px;

        justify-content:
            space-between;
    }


    .dropdown,
    .mega-menu {

        position: static;

        width: 100%;

        min-width: 0;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        border: none;

        border-radius: 0;

        padding: 5px 15px;

        background: #f8faff;
    }


    .nav-item.mobile-open
    .dropdown,

    .nav-item.mobile-open
    .mega-menu {

        display: block;
    }


    .mega-grid {

        grid-template-columns:
            1fr;
    }


    .nav-actions {
        display: none;
    }


    .hero-grid,
    .tech-grid,
    .api-grid {

        grid-template-columns:
            1fr;
    }


    .hero {

        padding-top: 130px;
    }


    .hero-visual {

        min-height: 480px;
    }


    .tech-content {
        order: 1;
    }


    .dashboard {
        order: 2;
    }


    .footer-grid {

        grid-template-columns:
            repeat(2,1fr);
    }


    .partner-content {

        flex-direction: column;

        align-items: flex-start;
    }
}


@media (max-width: 600px) {

    .container {
        width:
            calc(100% - 28px);
    }


    .hero h1 {

        font-size: 40px;

        letter-spacing: -1.5px;
    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;
    }


    .hero-trust {

        gap: 15px;
    }


    .hero-visual {

        transform:
            scale(.82);

        margin:
            -40px
            -30px;
    }


    .floating-card {
        display: none;
    }


    .services-grid {

        grid-template-columns:
            repeat(2,1fr);
    }


    .service-card {

        padding: 20px 12px;
    }


    .tech-content h2,
    .api-content h2 {

        font-size: 32px;
    }


    .api-features {

        grid-template-columns:
            1fr;
    }


    .dashboard-card {

        width: 100%;
    }


    .retailer-box {

        padding: 40px 25px;
    }


    .retailer-content h2 {

        font-size: 31px;
    }


    .retailer-buttons {

        flex-direction: column;
    }


    .footer-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 30px;
    }


    .footer-brand {

        grid-column:
            1 / -1;
    }


    .footer-bottom {

        flex-direction: column;

        gap: 10px;
    }
}


@media (max-width: 400px) {

    .services-grid {

        grid-template-columns:
            1fr;
    }


    .footer-grid {

        grid-template-columns:
            1fr;
    }
}

/****************************** About Us***************************** */

.about-page {
		--ink: #10213f;
		--muted: #60708d;
		--blue: #2563eb;
		--cyan: #06b6d4;
		--soft: #f4f8ff;
		position: relative;
		overflow: hidden;
		color: var(--ink);
		background: #fff;
		font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
	}

	.about-page * { box-sizing: border-box; }
	.about-hero {
		position: relative;
		min-height: 560px;
		display: grid;
		place-items: center;
		padding: 90px 7%;
		isolation: isolate;
		background: linear-gradient(135deg, #eff6ff 0%, #fff 52%, #ecfeff 100%);
	}
	.about-hero::before, .about-hero::after {
		content: ""; position: absolute; z-index: -1; border-radius: 50%;
		filter: blur(2px); opacity: .45; animation: float 8s ease-in-out infinite;
	}
	.about-hero::before { width: 330px; height: 330px; background: #bfdbfe; right: -80px; top: -90px; }
	.about-hero::after { width: 220px; height: 220px; background: #a5f3fc; left: -60px; bottom: -80px; animation-delay: -3s; }
	.about-hero-inner { width: min(1120px, 100%); display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
	.eyebrow { color: var(--blue); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .78rem; }
	.about-title { max-width: 680px; margin: 16px 0; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -.06em; }
	.about-title span { color: var(--blue); }
	.about-copy { max-width: 590px; color: var(--muted); font-size: 1.1rem; line-height: 1.8; }
	.about-button { display: inline-flex; margin-top: 20px; padding: 14px 22px; border-radius: 999px; color: white; background: var(--ink); text-decoration: none; font-weight: 700; transition: transform .25s, box-shadow .25s; }
	.about-button:hover { transform: translateY(-4px); box-shadow: 0 12px 25px #10213f30; }
	.orbit { position: relative; aspect-ratio: 1; max-width: 390px; margin: auto; display: grid; place-items: center; }
	.orbit::before, .orbit::after { content: ""; position: absolute; inset: 8%; border: 1px solid #2563eb35; border-radius: 50%; animation: spin 18s linear infinite; }
	.orbit::after { inset: 20%; border-color: #06b6d450; animation-direction: reverse; animation-duration: 12s; }
	.orbit-core { width: 46%; aspect-ratio: 1; display: grid; place-items: center; border-radius: 35% 65% 60% 40%; color: white; text-align: center; font-weight: 800; background: linear-gradient(145deg, var(--blue), var(--cyan)); box-shadow: 0 25px 55px #2563eb45; animation: breathe 4s ease-in-out infinite; }
	.orbit-dot { position: absolute; width: 16px; height: 16px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 8px #06b6d425; }
	.dot-one { top: 11%; right: 19%; } .dot-two { bottom: 13%; left: 16%; background: var(--blue); }
	.about-section { width: min(1120px, 86%); margin: auto; padding: 90px 0; }
	.about-section h2 { margin: 0 0 14px; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.04em; }
	.section-intro { max-width: 650px; color: var(--muted); line-height: 1.8; }
	.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; }
	.about-card { padding: 30px; border: 1px solid #e5ecf8; border-radius: 22px; background: white; box-shadow: 0 12px 35px #10213f0b; transition: transform .3s, box-shadow .3s; }
	.about-card:hover { transform: translateY(-9px); box-shadow: 0 22px 40px #2563eb1c; }
	.about-icon { display: grid; width: 48px; height: 48px; margin-bottom: 22px; place-items: center; border-radius: 14px; color: var(--blue); background: #eff6ff; font-size: 1.35rem; }
	.about-card h3 { margin: 0 0 10px; } .about-card p { margin: 0; color: var(--muted); line-height: 1.7; }
	.about-cta { padding: 60px 8%; border-radius: 28px; color: white; text-align: center; background: linear-gradient(120deg, #10213f, #1d4ed8); }
	.about-cta h2 { margin-bottom: 10px; } .about-cta p { color: #dbeafe; }
	.about-cta .about-button { color: var(--ink); background: white; }
	@keyframes float { 50% { transform: translate(18px, 20px) scale(1.08); } }
	@keyframes spin { to { transform: rotate(360deg); } }
	@keyframes breathe { 50% { transform: scale(1.06) rotate(4deg); } }
	@media (max-width: 760px) { .about-hero-inner, .about-grid { grid-template-columns: 1fr; } .about-hero { padding: 70px 7%; } .orbit { max-width: 280px; } }
	@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

    /***************************** Frequently Ask Question************************* */
    .faq-page {
		--faq-ink: #172033;
		--faq-muted: #697386;
		--faq-primary: #635bff;
		--faq-surface: #ffffff;
		--faq-line: #e8eaf2;
		min-height: 100vh;
		padding: clamp(3rem, 8vw, 7rem) 1.25rem;
		color: var(--faq-ink);
		background:
			radial-gradient(circle at 8% 8%, rgba(99, 91, 255, .14), transparent 30%),
			radial-gradient(circle at 92% 22%, rgba(39, 196, 181, .12), transparent 28%),
			#f7f8fc;
		font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	}

	.faq-shell { max-width: 1080px; margin: auto; }
	.faq-heading { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
	.faq-eyebrow {
		display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1rem;
		color: var(--faq-primary); font-size: .76rem; font-weight: 800;
		letter-spacing: .14em; text-transform: uppercase;
	}
	.faq-eyebrow::before { content: ""; width: 2rem; height: 2px; background: currentColor; }
	.faq-heading h1 { margin: 0; font-size: clamp(2.25rem, 5vw, 4.5rem); line-height: .98; letter-spacing: -.06em; }
	.faq-heading p { margin: 1.35rem auto 0; max-width: 560px; color: var(--faq-muted); font-size: 1.05rem; line-height: 1.7; }

	.faq-grid { display: grid; grid-template-columns: .8fr 1.4fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
	.faq-card { padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid rgba(255,255,255,.8); border-radius: 1.5rem; background: rgba(255,255,255,.7); box-shadow: 0 1.5rem 4rem rgba(32, 41, 74, .08); backdrop-filter: blur(18px); }
	.faq-card h2 { margin: 0 0 .65rem; font-size: 1.35rem; }
	.faq-card p { margin: 0; color: var(--faq-muted); line-height: 1.65; }
	.faq-contact { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--faq-line); }
	.faq-contact a { display: inline-block; margin-top: .8rem; color: var(--faq-primary); font-weight: 700; text-decoration: none; }
	.faq-contact a:hover { text-decoration: underline; }

	/* .faq-list { display: grid; gap: .8rem; }
	.faq-item { border: 1px solid var(--faq-line); border-radius: 1rem; background: var(--faq-surface); transition: border-color .2s, box-shadow .2s; }
	.faq-item[open] { border-color: rgba(99,91,255,.35); box-shadow: 0 .8rem 2rem rgba(32,41,74,.07); }
	.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.4rem; cursor: pointer; list-style: none; font-weight: 700; }
	.faq-item summary::-webkit-details-marker { display: none; }
	.faq-item summary::after { content: "+"; flex: 0 0 auto; color: var(--faq-primary); font-size: 1.5rem; font-weight: 400; transition: transform .2s; }
	.faq-item[open] summary::after { content: "−"; }
	.faq-answer { padding: 0 1.4rem 1.35rem; color: var(--faq-muted); line-height: 1.7; } */
	@media (max-width: 700px) { .faq-grid { grid-template-columns: 1fr; } .faq-card { order: 2; } }

    /* ****************Privacy Policy******************** */
    .privacy-policy {
		--ink: #172033;
		--muted: #647089;
		--brand: #2563eb;
		--brand-dark: #1742a0;
		--line: #e6eaf2;
		max-width: 1080px;
		margin: 40px auto;
		padding: 0 24px 72px;
		color: var(--ink);
		font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
		line-height: 1.75;
	}

	.privacy-policy .policy-hero {
		position: relative;
		overflow: hidden;
		margin-bottom: 34px;
		padding: 54px clamp(28px, 6vw, 72px);
		border-radius: 24px;
		background: linear-gradient(120deg, #102a67 0%, #2563eb 60%, #4f8df7 100%);
		box-shadow: 0 18px 45px rgba(37, 99, 235, .2);
		color: #fff;
	}

	.privacy-policy .policy-hero::after {
		content: "";
		position: absolute;
		right: -70px;
		bottom: -110px;
		width: 280px;
		height: 280px;
		border: 32px solid rgba(255,255,255,.12);
		border-radius: 50%;
	}

	.privacy-policy .eyebrow {
		position: relative;
		z-index: 1;
		margin: 0 0 8px;
		font-size: .78rem;
		font-weight: 700;
		letter-spacing: .14em;
		text-transform: uppercase;
		opacity: .8;
	}

	.privacy-policy h1 {
		position: relative;
		z-index: 1;
		margin: 0 0 10px;
		font-size: clamp(2rem, 5vw, 3.5rem);
		line-height: 1.1;
		letter-spacing: -.04em;
	}

	.privacy-policy .hero-copy {
		position: relative;
		z-index: 1;
		max-width: 650px;
		margin: 0;
		font-size: 1.05rem;
		opacity: .9;
	}

	.privacy-policy .policy-body {
		display: grid;
		grid-template-columns: minmax(180px, 240px) 1fr;
		gap: 48px;
		align-items: start;
	}

	.privacy-policy .policy-nav {
		position: sticky;
		top: 24px;
		padding: 22px;
		border: 1px solid var(--line);
		border-radius: 16px;
		background: #f8faff;
	}

	.privacy-policy .policy-nav strong { display: block; margin-bottom: 10px; }
	.privacy-policy .policy-nav a {
		display: block;
		padding: 6px 0;
		color: var(--muted);
		font-size: .9rem;
		text-decoration: none;
	}
	.privacy-policy .policy-nav a:hover { color: var(--brand); }
	.privacy-policy .policy-content { min-width: 0; }
	.privacy-policy section { scroll-margin-top: 24px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
	.privacy-policy section + section { padding-top: 26px; }
	.privacy-policy h2 { margin: 0 0 10px; color: var(--brand-dark); font-size: 1.35rem; line-height: 1.3; }
	.privacy-policy p { margin: 0 0 18px; color: var(--muted); }
	.privacy-policy p:last-child { margin-bottom: 0; }
	.privacy-policy .notice { margin-bottom: 28px; padding: 18px 20px; border-left: 4px solid #f59e0b; border-radius: 10px; background: #fff8e8; color: #75500b; }
	.privacy-policy .notice p { color: inherit; margin: 0; }
	.privacy-policy a { color: var(--brand); font-weight: 600; }

	@media (max-width: 720px) {
		.privacy-policy { margin-top: 20px; padding: 0 16px 44px; }
		.privacy-policy .policy-hero { padding: 38px 24px; border-radius: 18px; }
		.privacy-policy .policy-body { display: block; }
		.privacy-policy .policy-nav { position: static; margin-bottom: 28px; }
	}